import * as __ctHelpers from "commontools"; import { pattern, UI, OpaqueRef } from "commontools"; interface Item { id: number; name: string; } interface State { items: any; // Type will be asserted prefix: string; } export default pattern((state) => { // Type assertion to OpaqueRef const typedItems = state.items as OpaqueRef; return { [UI]: (
{/* Map on type-asserted reactive array */} {typedItems.mapWithPattern(__ctHelpers.pattern(({ element: item, params: { state } }) => (
{state.prefix}: {item.name}
), { type: "object", properties: { element: { $ref: "#/$defs/Item" }, params: { type: "object", properties: { state: { type: "object", properties: { prefix: { type: "string", asOpaque: true } }, required: ["prefix"] } }, 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: { prefix: state.prefix } })}
), }; }, { type: "object", properties: { items: true, prefix: { type: "string" } }, required: ["items", "prefix"] } 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;