Skip to content

Commit 91976ac

Browse files
committed
add component: amis
1 parent 6b80b18 commit 91976ac

File tree

4 files changed

+29
-0
lines changed

4 files changed

+29
-0
lines changed

comp.go

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ func (a *App) AnchorNav() comp.AnchorNav { return icomp.NewA
1111
func (a *App) App() comp.App { return icomp.NewApp() }
1212
func (a *App) Audio() comp.Audio { return icomp.NewAudio() }
1313
func (a *App) Avatar() comp.Avatar { return icomp.NewAvatar() }
14+
func (a *App) Amis() comp.Amis { return icomp.NewAmis() }
1415
func (a *App) Barcode() comp.Barcode { return icomp.NewBarcode() }
1516
func (a *App) Breadcrumb() comp.Breadcrumb { return icomp.NewBreadcrumb() }
1617
func (a *App) Button() comp.Action { return icomp.NewButton(a.mux) }

comp/comp.go

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ type (
1111
App = comp.App
1212
Audio = comp.Audio
1313
Avatar = comp.Avatar
14+
Amis = comp.Amis
1415
Barcode = comp.Barcode
1516
Breadcrumb = comp.Breadcrumb
1617
Button = comp.Action

internal/comp/amis.go

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
package comp
2+
3+
import "github.com/zrcoder/amisgo/schema"
4+
5+
type Amis schema.Schema
6+
7+
func NewAmis() Amis {
8+
return Amis{"type": "amis"}
9+
}
10+
11+
func (a Amis) set(key string, value any) Amis {
12+
a[key] = value
13+
return a
14+
}
15+
16+
func (a Amis) Name(value string) Amis {
17+
return a.set("name", value)
18+
}
19+
20+
func (a Amis) Props(value any) Amis {
21+
return a.set("props", value)
22+
}

internal/comp/column.go

+5
Original file line numberDiff line numberDiff line change
@@ -163,3 +163,8 @@ func (c Column) Valign(value string) Column {
163163
func (c Column) Buttons(value ...any) Column {
164164
return c.Set("buttons", value)
165165
}
166+
167+
// PopOver sets the pop-over
168+
func (c Column) PopOver(value any) Column {
169+
return c.Set("popOver", value)
170+
}

0 commit comments

Comments
 (0)