import * as __ctHelpers from "commontools"; import { pattern, UI, handler, Cell } from "commontools"; declare global { namespace JSX { interface IntrinsicElements { "ct-button": any; } } } // Event handler defined at module scope const handleClick = handler(true as const satisfies __ctHelpers.JSONSchema, { type: "object", properties: { count: { type: "number", asCell: true } }, required: ["count"] } as const satisfies __ctHelpers.JSONSchema, (_, { count }) => { count.set(count.get() + 1); }); interface Item { id: number; name: string; } interface State { items: Item[]; count: Cell; } export default pattern((state) => { return { [UI]: (
{/* Map callback references handler - should NOT capture it */} {state.items.mapWithPattern(__ctHelpers.pattern(({ element: item, params: { state } }) => ( {item.name} ), { type: "object", properties: { element: { $ref: "#/$defs/Item" }, params: { type: "object", properties: { state: { type: "object", properties: { count: { type: "number", asCell: true } }, required: ["count"] } }, required: ["state"] } }, 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), { state: { count: state.count } })}
), }; }, { type: "object", properties: { items: { type: "array", items: { $ref: "#/$defs/Item" } }, count: { type: "number", asCell: true } }, required: ["items", "count"], $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;