-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
option.go
43 lines (36 loc) · 994 Bytes
/
option.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
package styling
import (
"github.com/gotd/td/telegram/message/entity"
)
// StyledTextOption is an option for styling text.
type StyledTextOption struct {
size int
perform func(b *textBuilder) error
}
// Zero returns true if option is zero value.
func (s StyledTextOption) Zero() bool {
return s.perform == nil
}
func styledTextOption(s string, perform func(b *textBuilder) error) StyledTextOption {
return StyledTextOption{
perform: perform,
size: len(s),
}
}
// Plain formats text without any entities.
func Plain(s string) StyledTextOption {
return styledTextOption(s, func(b *textBuilder) error {
b.Plain(s)
return nil
})
}
// Custom formats text using given callback.
func Custom(cb func(eb *entity.Builder) error) StyledTextOption {
return StyledTextOption{
size: 0,
perform: func(b *textBuilder) error {
return cb(b.Builder)
},
}
}
//go:generate go run github.com/gotd/td/telegram/message/internal/mkentity -template styling -output options.gen.go