forked from x/icebergs
44 lines
1.5 KiB
Go
44 lines
1.5 KiB
Go
package mdb
|
|
|
|
import (
|
|
ice "shylinux.com/x/icebergs"
|
|
kit "shylinux.com/x/toolkits"
|
|
)
|
|
|
|
const RENDER = "render"
|
|
|
|
func init() { Index.MergeCommands(ice.Commands{RENDER: {Help: "渲染", Actions: RenderAction()}}) }
|
|
|
|
func RenderAction(args ...ice.Any) ice.Actions {
|
|
return ice.MergeActions(ice.Actions{
|
|
ice.CTX_INIT: {Hand: func(m *ice.Message, arg ...string) {
|
|
if len(args) == 0 {
|
|
args = append(args, SHORT, TYPE, FIELD, "time,type,name,text")
|
|
}
|
|
if cs := m.Target().Configs; cs[m.CommandKey()] == nil {
|
|
cs[m.CommandKey()] = &ice.Config{Value: kit.Data(args...)}
|
|
} else {
|
|
kit.Fetch(kit.Simple(args), func(key, value string) { m.Config(key, value) })
|
|
}
|
|
}},
|
|
CREATE: {Name: "create type name text", Hand: func(m *ice.Message, arg ...string) {
|
|
m.Option(TYPE, kit.Ext(m.Option(TYPE)))
|
|
m.OptionDefault(NAME, m.Option(TYPE))
|
|
m.Cmdy(INSERT, m.PrefixKey(), "", HASH, m.OptionSimple(TYPE, NAME, TEXT))
|
|
}},
|
|
SELECT: {Name: "select type name text auto create", Hand: func(m *ice.Message, arg ...string) {
|
|
if len(arg) < 2 || arg[0] == "" {
|
|
HashSelect(m, arg...)
|
|
return
|
|
}
|
|
for _, k := range kit.Split(arg[0]) {
|
|
HashSelect(m.Spawn(ice.OptionFields("")), k).Tables(func(value ice.Maps) {
|
|
m.Debug("what %v", m.OptionFields())
|
|
m.Cmdy(kit.Keys(value[TEXT], value[NAME]), m.CommandKey(), k, arg[1], kit.Select("", arg, 2), kit.Slice(arg, 3))
|
|
})
|
|
}
|
|
}},
|
|
ice.CTX_EXIT: {Hand: func(m *ice.Message, arg ...string) { m.Conf("", HASH, "") }},
|
|
})
|
|
}
|