function __cfHardenFn(fn: Function) { Object.freeze(fn); const prototype = fn.prototype; if (prototype && typeof prototype === "object") { Object.freeze(prototype); } return fn; } import { __cfHelpers } from "commonfabric"; import { computed, pattern } from "commonfabric"; const define = undefined; const runtimeDeps = undefined; const __cfAmdHooks = undefined; const identity = __cfHardenFn((value: string) => value); interface Item { done: boolean; } interface State { items: Item[]; } const __cfLift_1 = __cfHelpers.lift<{ state: { items: Item[]; }; }, Item[]>(({ state }) => state.items, { type: "object", properties: { state: { type: "object", properties: { items: { type: "array", items: { $ref: "#/$defs/Item" } } }, required: ["items"] } }, required: ["state"], $defs: { Item: { type: "object", properties: { done: { type: "boolean" } }, required: ["done"] } } } as const satisfies __cfHelpers.JSONSchema, { type: "array", items: { $ref: "#/$defs/Item" }, $defs: { Item: { type: "object", properties: { done: { type: "boolean" } }, required: ["done"] } } } as const satisfies __cfHelpers.JSONSchema); const __cfLift_2 = __cfHelpers.lift<{ row: { done: boolean; }; }, string>(({ row }) => identity(row.done ? "Done" : "Pending"), { type: "object", properties: { row: { type: "object", properties: { done: { type: "boolean" } }, required: ["done"] } }, required: ["row"] } as const satisfies __cfHelpers.JSONSchema, { type: "string" } as const satisfies __cfHelpers.JSONSchema); const __cfPattern_1 = __cfHelpers.pattern(__cf_pattern_input => { const row = __cf_pattern_input.key("element"); const label = __cfLift_2({ row: { done: row.key("done") } }).for("label", true); return label; }, { type: "object", properties: { element: { $ref: "#/$defs/Item" } }, required: ["element"], $defs: { Item: { type: "object", properties: { done: { type: "boolean" } }, required: ["done"] } } } as const satisfies __cfHelpers.JSONSchema, { type: "string" } as const satisfies __cfHelpers.JSONSchema); // FIXTURE: computed-map-local-call-root // Verifies: callback-local ordinary call roots in a computed-array .map() // callback whole-wrap as callback-local lift-applied computations even when // introduced through a local variable initializer in non-JSX output code. // const label = identity(row.done ? "Done" : "Pending") // → const label = lift(({ row }) => identity(row.done ? "Done" : "Pending"))(...) export default pattern((state) => { const rows = __cfLift_1({ state: { items: state.key("items") } }).for("rows", true); const labels = rows.mapWithPattern(__cfPattern_1, {}).for("labels", true); return { labels }; }, { type: "object", properties: { items: { type: "array", items: { $ref: "#/$defs/Item" } } }, required: ["items"], $defs: { Item: { type: "object", properties: { done: { type: "boolean" } }, required: ["done"] } } } as const satisfies __cfHelpers.JSONSchema, { type: "object", properties: { labels: { type: "array", items: { type: "string" } } }, required: ["labels"] } as const satisfies __cfHelpers.JSONSchema); // @ts-ignore: Internals function h(...args: any[]) { return __cfHelpers.h.apply(null, args); } __cfHardenFn(h); __cfReg({ __cfLift_1, __cfLift_2, __cfPattern_1 });