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"; /** * TRANSFORM REPRO: patternized map callback should lower callback-local const initializers * * These callback-local aliases read reactive fields from the map element. Once the callback * becomes `mapWithPattern(pattern(...))`, both initializers should lower at their own seams. */ import { Default, pattern, UI, VNode, Writable, } from "commonfabric"; const define = undefined; const runtimeDeps = undefined; const __cfAmdHooks = undefined; interface FileEntry { name: string; type: "file" | "folder"; contentType: "text" | "binary"; } interface Input { files: Writable>; } interface Output { [UI]: VNode; } const __cfLift_1 = __cfHelpers.lift<{ file: { type: string; }; }, boolean>(({ file }) => file.type === "folder", { type: "object", properties: { file: { type: "object", properties: { type: { type: "string" } }, required: ["type"] } }, required: ["file"] } as const satisfies __cfHelpers.JSONSchema, { type: "boolean" } as const satisfies __cfHelpers.JSONSchema); const __cfLift_2 = __cfHelpers.lift<{ file: { contentType: string; }; }, boolean>(({ file }) => file.contentType !== "binary", { type: "object", properties: { file: { type: "object", properties: { contentType: { type: "string" } }, required: ["contentType"] } }, required: ["file"] } as const satisfies __cfHelpers.JSONSchema, { type: "boolean" } as const satisfies __cfHelpers.JSONSchema); const __cfPattern_1 = __cfHelpers.pattern(__cf_pattern_input => { const file = __cf_pattern_input.key("element"); const isFolder = __cfLift_1({ file: { type: file.key("type") } }).for("isFolder", true); const isOpenable = __cfHelpers.unless({ type: "boolean" } as const satisfies __cfHelpers.JSONSchema, { type: "boolean" } as const satisfies __cfHelpers.JSONSchema, { type: "boolean" } as const satisfies __cfHelpers.JSONSchema, isFolder, __cfLift_2({ file: { contentType: file.key("contentType") } }).for(["isOpenable", 4], true)).for("isOpenable", true); return {__cfHelpers.ifElse({ type: "boolean" } as const satisfies __cfHelpers.JSONSchema, { type: "string" } as const satisfies __cfHelpers.JSONSchema, { type: "string" } as const satisfies __cfHelpers.JSONSchema, { type: "string" } as const satisfies __cfHelpers.JSONSchema, isOpenable, file.key("name"), "locked")}; }, { type: "object", properties: { element: { $ref: "#/$defs/FileEntry" } }, required: ["element"], $defs: { FileEntry: { type: "object", properties: { name: { type: "string" }, type: { "enum": ["file", "folder"] }, contentType: { "enum": ["text", "binary"] } }, required: ["name", "type", "contentType"] } } } as const satisfies __cfHelpers.JSONSchema, { anyOf: [{ $ref: "https://commonfabric.org/schemas/vnode.json" }, { $ref: "#/$defs/UIRenderable" }, { type: "object", properties: {} }], $defs: { UIRenderable: { type: "object", properties: { $UI: { $ref: "https://commonfabric.org/schemas/vnode.json" } }, required: ["$UI"] } } } as const satisfies __cfHelpers.JSONSchema); export default pattern((__cf_pattern_input) => { const files = __cf_pattern_input.key("files"); return { [UI]: (
{files.mapWithPattern(__cfPattern_1, {})}
), }; }, { type: "object", properties: { files: { type: "array", items: { $ref: "#/$defs/FileEntry" }, "default": [], asCell: ["cell"] } }, required: ["files"], $defs: { FileEntry: { type: "object", properties: { name: { type: "string" }, type: { "enum": ["file", "folder"] }, contentType: { "enum": ["text", "binary"] } }, required: ["name", "type", "contentType"] } } } as const satisfies __cfHelpers.JSONSchema, { type: "object", properties: { $UI: { $ref: "https://commonfabric.org/schemas/vnode.json" } }, required: ["$UI"] } 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 });