-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollection.go
87 lines (69 loc) · 2.06 KB
/
collection.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
86
87
package templateless
import (
"errors"
"github.com/templateless/templateless-go/components"
)
type Collection struct {
Components []components.Component `json:"components"`
}
func NewHeader() *Collection {
return &Collection{
Components: make([]components.Component, 0),
}
}
func NewFooter() *Collection {
return &Collection{
Components: make([]components.Component, 0),
}
}
func (c *Collection) Button(text, url string) *Collection {
c.Components = append(c.Components, components.NewButton(text, url))
return c
}
func (c *Collection) Image(src string) *Collection {
c.Components = append(c.Components, components.NewImage(src, nil, nil, nil, nil))
return c
}
func (c *Collection) Link(text, url string) *Collection {
c.Components = append(c.Components, components.NewLink(text, url))
return c
}
func (c *Collection) Otp(text string) *Collection {
c.Components = append(c.Components, components.NewOtp(text))
return c
}
func (c *Collection) Socials(data []components.SocialItem) *Collection {
c.Components = append(c.Components, components.NewSocials(data))
return c
}
func (c *Collection) Text(text string) *Collection {
c.Components = append(c.Components, components.NewText(text))
return c
}
func (c *Collection) ViewInBrowser() *Collection {
c.Components = append(c.Components, components.NewViewInBrowser(nil))
return c
}
func (c *Collection) QrCode(url string) *Collection {
c.Components = append(c.Components, components.QrCodeURL(url))
return c
}
func (c *Collection) StoreBadges(data []components.StoreBadgeItem) *Collection {
c.Components = append(c.Components, components.NewStoreBadges(data))
return c
}
func (c *Collection) Signature(text string) *Collection {
c.Components = append(c.Components, components.NewSignature(text, nil))
return c
}
func (c *Collection) Component(component components.Component) *Collection {
c.Components = append(c.Components, component)
return c
}
func (c *Collection) Build() (*Collection, error) {
if c == nil {
return nil, errors.New("Content is nil")
}
newCollection := *c
return &newCollection, nil
}