2019-03-13 04:14:30 -07:00
|
|
|
package main
|
|
|
|
|
|
|
|
type text struct {
|
2021-11-26 01:37:33 -08:00
|
|
|
props properties
|
2021-10-06 12:50:52 -07:00
|
|
|
env environmentInfo
|
|
|
|
content string
|
2019-03-13 04:14:30 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
2020-11-12 00:43:32 -08:00
|
|
|
// TextProperty represents text to write
|
2019-03-13 04:14:30 -07:00
|
|
|
TextProperty Property = "text"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (t *text) enabled() bool {
|
|
|
|
textProperty := t.props.getString(TextProperty, "!!text property not defined!!")
|
2021-08-09 20:48:44 -07:00
|
|
|
template := &textTemplate{
|
|
|
|
Template: textProperty,
|
|
|
|
Context: t,
|
|
|
|
Env: t.env,
|
|
|
|
}
|
2021-10-06 12:50:52 -07:00
|
|
|
t.content = template.renderPlainContextTemplate(nil)
|
|
|
|
return len(t.content) > 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *text) string() string {
|
|
|
|
return t.content
|
2019-03-13 04:14:30 -07:00
|
|
|
}
|
|
|
|
|
2021-11-26 01:37:33 -08:00
|
|
|
func (t *text) init(props properties, env environmentInfo) {
|
2019-03-13 04:14:30 -07:00
|
|
|
t.props = props
|
|
|
|
t.env = env
|
|
|
|
}
|