Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ExecuteTemplate = func() TemplateExecutor { tmpl := template.Must(template.ParseFS(templateFs, "*.html")) return func(data *TemplateData, name string) (bytes.Buffer, error) { data.Version = config.Version var buf bytes.Buffer err := tmpl.ExecuteTemplate(&buf, name, data) return buf, err } }()
View Source
var GetPage = func() PageGetter { return func(data *TemplateData) (bytes.Buffer, error) { return ExecuteTemplate(data, "configure.html") } }()
Functions ¶
Types ¶
type Config ¶
type Config struct { Key string Type ConfigType Default string Title string Description template.HTML Options []ConfigOption Required bool Error string Action ConfigAction }
type ConfigOption ¶
type ConfigType ¶
type ConfigType string
const ( ConfigTypeText ConfigType = "text" ConfigTypeNumber ConfigType = "number" ConfigTypePassword ConfigType = "password" ConfigTypeCheckbox ConfigType = "checkbox" ConfigTypeSelect ConfigType = "select" )
type PageGetter ¶
type PageGetter func(data *TemplateData) (bytes.Buffer, error)
type TemplateData ¶
type TemplateData struct { Title string Description string Version string Configs []Config Error string ManifestURL string Script template.JS }
func (*TemplateData) HasError ¶
func (td *TemplateData) HasError() bool
type TemplateExecutor ¶
type TemplateExecutor func(data *TemplateData, name string) (bytes.Buffer, error)
Click to show internal directories.
Click to hide internal directories.