import * as __ctHelpers from "commontools"; import { pattern, UI } from "commontools"; interface State { items: string[]; index: number; matrix: number[][]; row: number; col: number; } export default pattern((state) => { return { [UI]: (

Dynamic Element Access

{/* Basic dynamic index */}

Item: {__ctHelpers.derive({ type: "object", properties: { state: { type: "object", properties: { items: { type: "array", items: { type: "string" }, asOpaque: true }, index: { type: "number", asOpaque: true } }, required: ["items", "index"] } }, required: ["state"] } as const satisfies __ctHelpers.JSONSchema, { anyOf: [{ type: "undefined" }, { type: "string", asOpaque: true }] } as const satisfies __ctHelpers.JSONSchema, { state: { items: state.items, index: state.index } }, ({ state }) => state.items[state.index])}

{/* Computed index */}

Last: {__ctHelpers.derive({ type: "object", properties: { state: { type: "object", properties: { items: { type: "array", items: { type: "string" }, asOpaque: true } }, required: ["items"] } }, required: ["state"] } as const satisfies __ctHelpers.JSONSchema, { anyOf: [{ type: "undefined" }, { type: "string", asOpaque: true }] } as const satisfies __ctHelpers.JSONSchema, { state: { items: state.items } }, ({ state }) => state.items[state.items.length - 1])}

{/* Double indexing */}

Matrix: {__ctHelpers.derive({ type: "object", properties: { state: { type: "object", properties: { matrix: { type: "array", items: { type: "array", items: { type: "number" } }, asOpaque: true }, row: { type: "number", asOpaque: true }, col: { type: "number", asOpaque: true } }, required: ["matrix", "row", "col"] } }, required: ["state"] } as const satisfies __ctHelpers.JSONSchema, { anyOf: [{ type: "undefined" }, { type: "number", asOpaque: true }] } as const satisfies __ctHelpers.JSONSchema, { state: { matrix: state.matrix, row: state.row, col: state.col } }, ({ state }) => state.matrix[state.row]![state.col])}

), }; }, { type: "object", properties: { items: { type: "array", items: { type: "string" } }, index: { type: "number" }, matrix: { type: "array", items: { type: "array", items: { type: "number" } } }, row: { type: "number" }, col: { type: "number" } }, required: ["items", "index", "matrix", "row", "col"] } 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;