import * as __ctHelpers from "commontools"; import { pattern, UI } from "commontools"; interface Item { maybe?: { value: number; }; } interface State { maybe?: { value: number; }; items: Item[]; } export default pattern((state) => { return { [UI]: (
{state.maybe?.value} {state.items.mapWithPattern(__ctHelpers.pattern(({ element: item, params: {} }) => ({__ctHelpers.derive({ type: "object", properties: { item: { type: "object", properties: { maybe: { anyOf: [{ type: "undefined" }, { anyOf: [{ type: "undefined" }, { type: "object", properties: { value: { type: "number" } }, required: ["value"] }], asOpaque: true }] } } } }, required: ["item"] } as const satisfies __ctHelpers.JSONSchema, { type: "number" } as const satisfies __ctHelpers.JSONSchema, { item: { maybe: item.maybe } }, ({ item }) => item.maybe?.value ?? 0)}), { type: "object", properties: { element: { $ref: "#/$defs/Item" }, params: { type: "object", properties: {} } }, required: ["element", "params"], $defs: { Item: { type: "object", properties: { maybe: { type: "object", properties: { value: { type: "number" } }, required: ["value"] } } } } } 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: { maybe: { type: "object", properties: { value: { type: "number" } }, required: ["value"] }, items: { type: "array", items: { $ref: "#/$defs/Item" } } }, required: ["items"], $defs: { Item: { type: "object", properties: { maybe: { type: "object", properties: { value: { type: "number" } }, required: ["value"] } } } } } 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;