package block import ( "encoding/json" "errors" "fmt" "github.com/fthvgb1/wp-go/helper/maps" "github.com/fthvgb1/wp-go/helper/number" str "github.com/fthvgb1/wp-go/helper/strings" "github.com/fthvgb1/wp-go/internal/cmd/reload" "github.com/fthvgb1/wp-go/internal/pkg/cache" constraints2 "github.com/fthvgb1/wp-go/internal/pkg/constraints" "github.com/fthvgb1/wp-go/internal/pkg/constraints/widgets" "github.com/fthvgb1/wp-go/internal/pkg/logs" "github.com/fthvgb1/wp-go/internal/pkg/models" "github.com/fthvgb1/wp-go/internal/theme/wp" "github.com/fthvgb1/wp-go/internal/theme/wp/components/widget" "strings" ) func categoryConf() map[any]any { return map[any]any{ "count": int64(0), "dropdown": int64(0), "hierarchical": int64(0), "title": "分类", } } func categoryDefaultArgs() map[string]string { return map[string]string{ "{$before_widget}": ``, "{$name}": "cat", "{$class}": "postform", "{$selectId}": "cat", "{$required}": "", "{$show_option_none}": "选择分类", "{$title}": "", } } func parseAttr(attr map[any]any) string { var attrs []string class := maps.GetAnyAnyValWithDefaults(attr, "", "className") classes := strings.Split(class, " ") fontsize := maps.GetAnyAnyValWithDefaults(attr, "", "fontSize") if fontsize != "" { classes = append(classes, fmt.Sprintf("has-%s-font-size", fontsize)) } style := maps.GetAnyAnyValWithDefaults[map[any]any](attr, nil, "style", "typography") if len(style) > 0 { styless := maps.AnyAnyMap(style, func(k, v any) (string, string, bool) { kk, ok := k.(string) if !ok { return "", "", false } vv, ok := v.(string) if !ok { return "", "", false } return kk, vv, true }) styles := maps.FilterToSlice(styless, func(k string, v string) (string, bool) { k = str.CamelCaseTo(k, '-') return str.Join(k, ":", v), true }) attrs = append(attrs, fmt.Sprintf(`style="%s;"`, strings.Join(styles, ";"))) } attrs = append(attrs, fmt.Sprintf(`class="%s"`, strings.Join(classes, " "))) return strings.Join(attrs, " ") } func Category(h *wp.Handle, id string, blockParser ParserBlock) (func() string, error) { counter := number.Counters[int]() var err error conf := reload.GetAnyValBys("block-category-conf", h, func(h *wp.Handle) map[any]any { var con any err = json.Unmarshal([]byte(blockParser.Attrs), &con) if err != nil { logs.Error(err, "解析category attr错误", blockParser.Attrs) return nil } var conf map[any]any switch con.(type) { case map[any]any: conf = con.(map[any]any) case map[string]any: conf = maps.StrAnyToAnyAny(con.(map[string]any)) } conf = maps.FilterZeroMerge(categoryConf(), conf) if maps.GetAnyAnyValWithDefaults(conf, false, "showPostCounts") { conf["count"] = int64(1) } if maps.GetAnyAnyValWithDefaults(conf, false, "displayAsDropdown") { conf["dropdown"] = int64(1) } if maps.GetAnyAnyValWithDefaults(conf, false, "showHierarchy") { conf["hierarchical"] = int64(1) } class := maps.GetAnyAnyValWithDefaults(conf, "", "className") classes := strings.Split(class, " ") classes = append(classes, "wp-block-categories") if conf["dropdown"].(int64) == 1 { classes = append(classes, "wp-block-categories-dropdown") conf["className"] = strings.Join(classes, " ") } else { classes = append(classes, "wp-block-categories-list") conf["className"] = strings.Join(classes, " ") } return conf }) if err != nil { return nil, err } if conf == nil { return nil, errors.New("解析block-category配置错误") } if maps.GetAnyAnyValWithDefaults(conf, false, "showEmpty") { h.C.Set("showEmpty", true) } if maps.GetAnyAnyValWithDefaults(conf, false, "showOnlyTopLevel") { h.C.Set("showOnlyTopLevel", true) } args := reload.GetAnyValBys("block-category-args", h, func(h *wp.Handle) map[string]string { args := wp.GetComponentsArgs(h, widgets.Widget, map[string]string{}) return maps.FilterZeroMerge(categoryDefaultArgs(), args) }) return func() string { return category(h, id, counter, args, conf) }, nil } func category(h *wp.Handle, id string, counter number.Counter[int], args map[string]string, conf map[any]any) string { var out = "" categories := cache.CategoriesTags(h.C, constraints2.Category) class := []string{"widget", "widget_block", "widget_categories"} if conf["dropdown"].(int64) == 1 { out = dropdown(h, categories, counter(), args, conf) } else { out = categoryUl(h, categories, conf) } before := fmt.Sprintf(args["{$before_widget}"], str.Join("block-", id), strings.Join(class, " ")) return str.Join(before, out, args["{$after_widget}"]) } func categoryUl(h *wp.Handle, categories []models.TermsMy, conf map[any]any) string { s := str.NewBuilder() li := widget.CategoryLi(h, conf, categories) attrs := reload.GetAnyValBys("block-category-attr", conf, parseAttr) s.Sprintf(`