import * as __ctHelpers from "commontools"; import { cell, pattern, UI } from "commontools"; export default pattern((_state) => { const showPanel = cell(true, { type: "boolean" } as const satisfies __ctHelpers.JSONSchema); const userName = cell("Alice", { type: "string" } as const satisfies __ctHelpers.JSONSchema); return { [UI]: (
{/* Simple opaque ref with JSX on right - SHOULD use when for short-circuit optimization */} {__ctHelpers.when({ type: "boolean", asCell: true } as const satisfies __ctHelpers.JSONSchema, { anyOf: [{}, { type: "object", properties: {} }] } as const satisfies __ctHelpers.JSONSchema, { anyOf: [{}, { type: "object", properties: {} }] } as const satisfies __ctHelpers.JSONSchema, showPanel,
Panel content
)} {/* Another simple ref */} {__ctHelpers.when({ type: "string", asCell: true } as const satisfies __ctHelpers.JSONSchema, { anyOf: [{}, { type: "object", properties: {} }] } as const satisfies __ctHelpers.JSONSchema, { anyOf: [{}, { type: "object", properties: {} }] } as const satisfies __ctHelpers.JSONSchema, userName, Hello {userName})}
), }; }, false 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;