import * as __ctHelpers from "commontools";
import { pattern, UI } from "commontools";
interface State {
items: number[];
highlight: string;
}
export default pattern((state) => {
const element = state.highlight;
return {
[UI]: (
{state.items.mapWithPattern(__ctHelpers.pattern(({ element: _, index, params: { element } }) => ({element}), {
type: "object",
properties: {
element: {
type: "number"
},
index: {
type: "number"
},
params: {
type: "object",
properties: {
element: {
type: "string",
asOpaque: true
}
},
required: ["element"]
}
},
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), {
element: element
})}
),
};
}, {
type: "object",
properties: {
items: {
type: "array",
items: {
type: "number"
}
},
highlight: {
type: "string"
}
},
required: ["items", "highlight"]
} 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;