import * as __ctHelpers from "commontools";
import { pattern, UI } from "commontools";
const dynamicKey = "value" as const;
interface Item {
value: number;
other: number;
}
interface State {
items: Item[];
}
export default pattern((state) => {
return {
[UI]: (
{state.items.mapWithPattern(__ctHelpers.pattern(({ element, params: {} }) => {
const __ct_val_key = dynamicKey;
const val = __ctHelpers.derive({
type: "object",
properties: {
element: true,
__ct_val_key: true
},
required: ["element", "__ct_val_key"]
} as const satisfies __ctHelpers.JSONSchema, {
type: "number",
asOpaque: true
} as const satisfies __ctHelpers.JSONSchema, {
element: element,
__ct_val_key: __ct_val_key
}, ({ element, __ct_val_key }) => element[__ct_val_key]);
return ({val});
}, {
type: "object",
properties: {
element: {
$ref: "#/$defs/Item"
},
params: {
type: "object",
properties: {}
}
},
required: ["element", "params"],
$defs: {
Item: {
type: "object",
properties: {
value: {
type: "number"
},
other: {
type: "number"
}
},
required: ["value", "other"]
}
}
} 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), {})}
),
};
}, {
type: "object",
properties: {
items: {
type: "array",
items: {
$ref: "#/$defs/Item"
}
}
},
required: ["items"],
$defs: {
Item: {
type: "object",
properties: {
value: {
type: "number"
},
other: {
type: "number"
}
},
required: ["value", "other"]
}
}
} 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;