import * as __ctHelpers from "commontools"; import { recipe, UI } from "commontools"; interface State { sortedTags: string[]; tagCounts: Record; } export default recipe({ type: "object", properties: { sortedTags: { type: "array", items: { type: "string" } }, tagCounts: { type: "object", properties: {}, additionalProperties: { type: "number" } } }, required: ["sortedTags", "tagCounts"] } as const satisfies __ctHelpers.JSONSchema, { type: "object", properties: { $UI: { $ref: "#/$defs/Element" } }, required: ["$UI"], $defs: { Element: { type: "object", properties: { type: { type: "string", "enum": ["vnode"] }, name: { type: "string" }, props: { $ref: "#/$defs/Props" }, children: { $ref: "#/$defs/RenderNode" }, $UI: { $ref: "#/$defs/VNode" } }, required: ["type", "name", "props"] }, VNode: { type: "object", properties: { type: { type: "string", "enum": ["vnode"] }, name: { type: "string" }, props: { $ref: "#/$defs/Props" }, children: { $ref: "#/$defs/RenderNode" }, $UI: { $ref: "#/$defs/VNode" } }, required: ["type", "name", "props"] }, RenderNode: { anyOf: [{ type: "string" }, { type: "number" }, { type: "boolean", "enum": [false] }, { type: "boolean", "enum": [true] }, { $ref: "#/$defs/VNode" }, { type: "object", properties: {} }, { type: "array", items: { $ref: "#/$defs/RenderNode" } }] }, Props: { type: "object", properties: {}, additionalProperties: { anyOf: [{ type: "string" }, { type: "number" }, { type: "boolean", "enum": [false] }, { type: "boolean", "enum": [true] }, { type: "object", additionalProperties: true }, { type: "array", items: true }, { asCell: true }, { asStream: true }, { type: "null" }] } } } } as const satisfies __ctHelpers.JSONSchema, (state) => { return { [UI]: (
{state.sortedTags.mapWithPattern(__ctHelpers.recipe({ type: "object", properties: { element: { type: "string" }, params: { type: "object", properties: { state: { type: "object", properties: { tagCounts: { type: "object", properties: {}, additionalProperties: { type: "number" }, asOpaque: true } }, required: ["tagCounts"] } }, required: ["state"] } }, required: ["element", "params"] } as const satisfies __ctHelpers.JSONSchema, { type: "object", properties: { type: { type: "string", "enum": ["vnode"] }, name: { type: "string" }, props: { $ref: "#/$defs/Props" }, children: { $ref: "#/$defs/RenderNode" }, $UI: { $ref: "#/$defs/VNode" } }, required: ["type", "name", "props"], $defs: { VNode: { type: "object", properties: { type: { type: "string", "enum": ["vnode"] }, name: { type: "string" }, props: { $ref: "#/$defs/Props" }, children: { $ref: "#/$defs/RenderNode" }, $UI: { $ref: "#/$defs/VNode" } }, required: ["type", "name", "props"] }, RenderNode: { anyOf: [{ type: "string" }, { type: "number" }, { type: "boolean", "enum": [false] }, { type: "boolean", "enum": [true] }, { $ref: "#/$defs/VNode" }, { type: "object", properties: {} }, { type: "array", items: { $ref: "#/$defs/RenderNode" } }] }, Props: { type: "object", properties: {}, additionalProperties: { anyOf: [{ type: "string" }, { type: "number" }, { type: "boolean", "enum": [false] }, { type: "boolean", "enum": [true] }, { type: "object", additionalProperties: true }, { type: "array", items: true }, { asCell: true }, { asStream: true }, { type: "null" }] } } } } as const satisfies __ctHelpers.JSONSchema, ({ element: tag, params: { state } }) => ( {tag}: {__ctHelpers.derive({ type: "object", properties: { state: { type: "object", properties: { tagCounts: { type: "object", properties: {}, additionalProperties: { type: "number" }, asOpaque: true } }, required: ["tagCounts"] }, tag: { type: "string", asOpaque: true } }, required: ["state", "tag"] } as const satisfies __ctHelpers.JSONSchema, { type: "number", asOpaque: true } as const satisfies __ctHelpers.JSONSchema, { state: { tagCounts: state.tagCounts }, tag: tag }, ({ state, tag }) => state.tagCounts[tag])} )), { state: { tagCounts: state.tagCounts } })}
), }; }); // @ts-ignore: Internals function h(...args: any[]) { return __ctHelpers.h.apply(null, args); } // @ts-ignore: Internals h.fragment = __ctHelpers.h.fragment;