import * as __ctHelpers from "commontools"; import { pattern, UI } from "commontools"; interface Item { id: number; name: string; } interface State { items: Item[]; prefix: string; } export default pattern((state) => { return { [UI]: (
{/* Performs computation on element property - should wrap in computed() */} {state.items.mapWithPattern(__ctHelpers.pattern(({ element: item, index, params: {} }) => (
Item #{index}: {__ctHelpers.derive({ type: "object", properties: { item: { type: "object", properties: { name: { type: "string", asOpaque: true } }, required: ["name"] } }, required: ["item"] } as const satisfies __ctHelpers.JSONSchema, { type: "string" } as const satisfies __ctHelpers.JSONSchema, { item: { name: item.name } }, ({ item }) => item.name.toUpperCase())}
), { type: "object", properties: { element: { $ref: "#/$defs/Item" }, index: { type: "number" }, params: { type: "object", properties: {} } }, required: ["element", "params"], $defs: { Item: { type: "object", properties: { id: { type: "number" }, name: { type: "string" } }, required: ["id", "name"] } } } as const satisfies __ctHelpers.JSONSchema, { anyOf: [{ $ref: "https://commonfabric.org/schemas/vnode.json" }, { type: "object", properties: {} }, { $ref: "#/$defs/UIRenderable", asOpaque: true }], $defs: { UIRenderable: { type: "object", properties: { $UI: { $ref: "https://commonfabric.org/schemas/vnode.json" } }, required: ["$UI"] } } } as const satisfies __ctHelpers.JSONSchema), {})}
), }; }, { type: "object", properties: { items: { type: "array", items: { $ref: "#/$defs/Item" } }, prefix: { type: "string" } }, required: ["items", "prefix"], $defs: { Item: { type: "object", properties: { id: { type: "number" }, name: { type: "string" } }, required: ["id", "name"] } } } as const satisfies __ctHelpers.JSONSchema, { type: "object", properties: { $UI: { $ref: "#/$defs/JSXElement" } }, required: ["$UI"], $defs: { JSXElement: { anyOf: [{ $ref: "https://commonfabric.org/schemas/vnode.json" }, { type: "object", properties: {} }, { $ref: "#/$defs/UIRenderable", asOpaque: true }] }, UIRenderable: { type: "object", properties: { $UI: { $ref: "https://commonfabric.org/schemas/vnode.json" } }, required: ["$UI"] } } } as const satisfies __ctHelpers.JSONSchema); // @ts-ignore: Internals function h(...args: any[]) { return __ctHelpers.h.apply(null, args); } // @ts-ignore: Internals h.fragment = __ctHelpers.h.fragment;