Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | 192x 88x 88x 88x 88x 88x 88x 16x 16x 8x 8x 80x 16x 88x 8x 8x 8x 8x 8x 8x | import type { ConfigSchemaHelpNode } from '@/layers/interfaces'
// Converts a fetched config JSON Schema document (draft-07, e.g. the API's
// GET /api/v1/config-schemas/pipeline response) into the help tree consumed
// by YamlEditor. Every property becomes a node; object-typed properties get
// their children recursed (required marks come from each level's `required`
// array). Malformed input yields an empty result.
function isRecord(value: unknown): value is Record<string, unknown> {
return typeof value === 'object' && value !== null && !Array.isArray(value)
}I
E
function nodeForKey(key: string, schema: Record<string, unknown>, required: Set<string>): ConfigSchemaHelpNode {
const node: ConfigSchemaHelpNode = { key }
if (typeof schema.title === 'string') node.title = schema.title
if (typeof schema.description === 'string') node.description = schema.description
if (required.has(key)) node.required = true
coEnst properties = isRecord(schema.properties) ? schema.properties : undefined
if (schema.type === 'object' && properties) {
const childRequired = new Set<string>()
if (Array.isArray(schema.required)) {
E for (const name of schema.required) {
if (typeof name === 'string') childRequired.add(name)
}
}
const children = Object.entries(properties)
I .filter(([, child]) => isRecord(child))
.map(([childKey, child]) => nodeForKey(childKey, child, childRequired))
I if (children.length > 0) node.children = children
}
I
return node
}
export function schemaToHelp(schema: unknown): ConfigSchemaHelpNode[] {
if (!isRecord(schema)) return []
const properties = isRecord(schema.properties) ? schema.properties : undefined
if (!properties) return []
const required = new Set<string>()
if (Array.isArray(schema.required)) {
for (const name of schema.required) {
if (typeof name === 'string') required.add(name)
}
}
return Object.entries(properties)
.filter(([, child]) => isRecord(child))
.map(([key, child]) => nodeForKey(key, child, required))
}
|