-
Notifications
You must be signed in to change notification settings - Fork 2
/
alert.go
85 lines (78 loc) · 1.81 KB
/
alert.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package bootstrap4
import (
"github.com/gopherjs/vecty"
"github.com/gopherjs/vecty/elem"
"github.com/gopherjs/vecty/prop"
)
// Alert ...
type Alert struct {
vecty.Core
ID string `vecty:"prop"`
Kind Kind `vecty:"prop"`
Dismiss bool `vecty:"prop"`
Markup vecty.MarkupList `vecty:"prop"`
Children vecty.ComponentOrHTML `vecty:"prop"`
}
// Render ...
func (c *Alert) Render() vecty.ComponentOrHTML {
return elem.Div(
vecty.Markup(
vecty.MarkupIf(len(c.ID) > 0, prop.ID(c.ID)),
vecty.ClassMap{
"alert": true,
"alert-" + c.Kind.String(): true,
},
vecty.Attribute("role", "alert"),
),
c.Markup,
c.Children,
vecty.If(c.Dismiss,
elem.Button(
vecty.Markup(
prop.Type(prop.TypeButton),
vecty.Class("close"),
vecty.Attribute("data-dismiss", "alert"),
vecty.Attribute("aria-label", "Close"),
),
elem.Span(
vecty.Markup(vecty.Attribute("aria-hidden", "true")),
vecty.Text(`×`),
),
),
),
)
}
// AlertLink ...
type AlertLink struct {
vecty.Core
ID string `vecty:"prop"`
Href string `vecty:"prop"`
Children vecty.MarkupOrChild `vecty:"prop"`
}
// Render ...
func (c *AlertLink) Render() vecty.ComponentOrHTML {
return elem.Anchor(
vecty.Markup(
vecty.MarkupIf(len(c.ID) > 0, prop.ID(c.ID)),
prop.Href(c.Href),
vecty.Class("alert-link"),
),
c.Children,
)
}
// AlertHeading ...
type AlertHeading struct {
vecty.Core
ID string `vecty:"prop"`
Children vecty.MarkupOrChild `vecty:"prop"`
}
// Render ...
func (c *AlertHeading) Render() vecty.ComponentOrHTML {
return elem.Heading4(
vecty.Markup(
vecty.MarkupIf(len(c.ID) > 0, prop.ID(c.ID)),
vecty.Class("alert-heading"),
),
c.Children,
)
}