2023-01-10 16:43:42 +08:00
|
|
|
package plugin
|
|
|
|
|
2023-01-29 16:06:17 +08:00
|
|
|
type ConfigType string
|
|
|
|
type InputType string
|
2023-01-10 16:43:42 +08:00
|
|
|
|
|
|
|
const (
|
2023-01-29 16:06:17 +08:00
|
|
|
ConfigTypeInput ConfigType = "input"
|
|
|
|
ConfigTypeTextarea ConfigType = "textarea"
|
|
|
|
ConfigTypeCheckbox ConfigType = "checkbox"
|
|
|
|
ConfigTypeRadio ConfigType = "radio"
|
|
|
|
ConfigTypeSelect ConfigType = "select"
|
|
|
|
ConfigTypeUpload ConfigType = "upload"
|
|
|
|
ConfigTypeTimezone ConfigType = "timezone"
|
|
|
|
ConfigTypeSwitch ConfigType = "switch"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
InputTypeText InputType = "text"
|
|
|
|
InputTypeColor InputType = "color"
|
|
|
|
InputTypeDate InputType = "date"
|
|
|
|
InputTypeDatetime InputType = "datetime-local"
|
|
|
|
InputTypeEmail InputType = "email"
|
|
|
|
InputTypeMonth InputType = "month"
|
|
|
|
InputTypeNumber InputType = "number"
|
|
|
|
InputTypePassword InputType = "password"
|
|
|
|
InputTypeRange InputType = "range"
|
|
|
|
InputTypeSearch InputType = "search"
|
|
|
|
InputTypeTel InputType = "tel"
|
|
|
|
InputTypeTime InputType = "time"
|
|
|
|
InputTypeUrl InputType = "url"
|
|
|
|
InputTypeWeek InputType = "week"
|
2023-01-10 16:43:42 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type ConfigField struct {
|
2023-01-29 16:06:17 +08:00
|
|
|
Name string `json:"name"`
|
|
|
|
Type ConfigType `json:"type"`
|
2023-02-21 17:27:14 +08:00
|
|
|
Title Translator `json:"title"`
|
|
|
|
Description Translator `json:"description"`
|
2023-01-29 16:06:17 +08:00
|
|
|
Required bool `json:"required"`
|
2023-03-17 17:43:35 +08:00
|
|
|
Value any `json:"value"`
|
2023-01-29 16:06:17 +08:00
|
|
|
UIOptions ConfigFieldUIOptions `json:"ui_options"`
|
|
|
|
Options []ConfigFieldOption `json:"options,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ConfigFieldUIOptions struct {
|
2023-02-21 17:27:14 +08:00
|
|
|
Placeholder Translator `json:"placeholder,omitempty"`
|
|
|
|
Rows string `json:"rows,omitempty"`
|
|
|
|
InputType InputType `json:"input_type,omitempty"`
|
2023-03-17 17:43:35 +08:00
|
|
|
Label Translator `json:"label,omitempty"`
|
2023-01-10 16:43:42 +08:00
|
|
|
}
|
|
|
|
|
2023-01-29 16:06:17 +08:00
|
|
|
type ConfigFieldOption struct {
|
2023-02-21 17:27:14 +08:00
|
|
|
Label Translator `json:"label"`
|
|
|
|
Value string `json:"value"`
|
2023-01-10 16:43:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type Config interface {
|
|
|
|
Base
|
|
|
|
|
|
|
|
// ConfigFields returns the list of config fields
|
|
|
|
ConfigFields() []ConfigField
|
|
|
|
|
|
|
|
// ConfigReceiver receives the config data, it calls when the config is saved or initialized.
|
|
|
|
// We recommend to unmarshal the data to a struct, and then use the struct to do something.
|
|
|
|
// The config is encoded in JSON format.
|
|
|
|
// It depends on the definition of ConfigFields.
|
|
|
|
ConfigReceiver(config []byte) error
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
// CallConfig is a function that calls all registered config plugins
|
|
|
|
CallConfig,
|
|
|
|
registerConfig = MakePlugin[Config](true)
|
|
|
|
)
|