import * as __ctHelpers from "commontools";
import { cell, pattern, UI } from "commontools";
export default pattern((_state) => {
const people = cell([
{ id: "1", name: "Alice" },
{ id: "2", name: "Bob" },
], {
type: "array",
items: {
type: "object",
properties: {
id: {
type: "string"
},
name: {
type: "string"
}
},
required: ["id", "name"]
}
} as const satisfies __ctHelpers.JSONSchema);
return {
[UI]: (
{__ctHelpers.when({
type: "boolean"
} as const satisfies __ctHelpers.JSONSchema, {
anyOf: [{}, {
type: "object",
properties: {}
}]
} as const satisfies __ctHelpers.JSONSchema, {
anyOf: [{
type: "boolean"
}, {}, {
type: "object",
properties: {}
}]
} as const satisfies __ctHelpers.JSONSchema, __ctHelpers.derive({
type: "object",
properties: {
people: {
type: "array",
items: {
type: "object",
properties: {
id: {
type: "string"
},
name: {
type: "string"
}
},
required: ["id", "name"]
},
asCell: true
}
},
required: ["people"]
} as const satisfies __ctHelpers.JSONSchema, {
type: "boolean"
} as const satisfies __ctHelpers.JSONSchema, { people: people }, ({ people }) => people.get().length > 0),
{people.mapWithPattern(__ctHelpers.pattern(({ element: person, index, params: {} }) => (- {person.name}
), {
type: "object",
properties: {
element: {
type: "object",
properties: {
id: {
type: "string"
},
name: {
type: "string"
}
},
required: ["id", "name"]
},
index: {
type: "number"
},
params: {
type: "object",
properties: {}
}
},
required: ["element", "params"]
} 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), {})}
)}
),
};
}, 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;