import * as __ctHelpers from "commontools"; import { pattern, UI } from "commontools"; interface Item { id: number; name: string; } interface State { items: Item[]; offset: number; } export default pattern((state) => { return { [UI]: (
{/* Uses both index parameter and captures state.offset */} {state.items.mapWithPattern(__ctHelpers.pattern(({ element: item, index, params: { state } }) => (
Item #{__ctHelpers.derive({ type: "object", properties: { index: { type: "number", asOpaque: true }, state: { type: "object", properties: { offset: { type: "number", asOpaque: true } }, required: ["offset"] } }, required: ["index", "state"] } as const satisfies __ctHelpers.JSONSchema, { type: "number" } as const satisfies __ctHelpers.JSONSchema, { index: index, state: { offset: state.offset } }, ({ index, state }) => index + state.offset)}: {item.name}
), { type: "object", properties: { element: { $ref: "#/$defs/Item" }, index: { type: "number" }, params: { type: "object", properties: { state: { type: "object", properties: { offset: { type: "number", asOpaque: true } }, required: ["offset"] } }, 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: { offset: state.offset } })}
), }; }, { type: "object", properties: { items: { type: "array", items: { $ref: "#/$defs/Item" } }, offset: { type: "number" } }, required: ["items", "offset"], $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;