-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild-react-blocks-contract.ts
More file actions
172 lines (156 loc) · 8.39 KB
/
Copy pathbuild-react-blocks-contract.ts
File metadata and controls
172 lines (156 loc) · 8.39 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
// Copyright (c) 2026 ObjectStack. Licensed under the Apache-2.0 license.
//
// Generates the react-tier component contract from packages/spec/src/ui/
// react-blocks.ts: the `data` (config) props are read from each block's SPEC
// zod schema via z.toJSONSchema (single source — no re-authoring); the
// binding/controlled/callback props come from the hand-authored interaction
// overlay. Emits:
// - skills/objectstack-ui/contracts/react-blocks.contract.json (machine)
// - skills/objectstack-ui/references/react-blocks.md (AI-facing)
//
// `skills/` is published to third parties (`npx skills add … --all`), so stale
// output here ships to users — `--check` gates it in CI.
//
// Run:
// pnpm --filter @objectstack/spec gen:react-blocks # write
// pnpm --filter @objectstack/spec check:react-blocks # verify in sync (CI); exit 1 on drift
process.env.OS_EAGER_SCHEMAS = '1';
import path from 'path';
import { z } from 'zod';
import { REACT_BLOCKS, type ReactInteractionProp } from '../src/ui/react-blocks';
import { createGeneratedOutput } from './lib/generated-output';
const REPO = path.resolve(__dirname, '../../..');
const CONTRACTS_DIR = path.join(REPO, 'skills/objectstack-ui/contracts');
const OUT_JSON = path.join(CONTRACTS_DIR, 'react-blocks.contract.json');
const OUT_MD = path.join(REPO, 'skills/objectstack-ui/references/react-blocks.md');
const CHECK = process.argv.includes('--check');
const out = createGeneratedOutput({ repoRoot: REPO, check: CHECK });
// ---- JSON-schema prop extraction -----------------------------------------
function resolveRoot(js: any): any {
// zod v4 may wrap the root in { $ref: '#/$defs/X', $defs: { X: {...} } }.
if (js && js.$ref && js.$defs) {
const key = String(js.$ref).split('/').pop()!;
return js.$defs[key] ?? js;
}
return js;
}
function renderType(node: any): string {
if (!node || typeof node !== 'object') return 'any';
if (Array.isArray(node.enum)) return node.enum.map((v: any) => (typeof v === 'string' ? `'${v}'` : String(v))).join(' | ');
if (Array.isArray(node.anyOf) || Array.isArray(node.oneOf)) {
const alts = (node.anyOf ?? node.oneOf).map(renderType).filter((t: string) => t && t !== 'any');
return [...new Set(alts)].join(' | ') || 'any';
}
if (node.type === 'array') return `${renderType(node.items)}[]`;
if (node.$ref) return String(node.$ref).split('/').pop() ?? 'object';
if (node.type) return Array.isArray(node.type) ? node.type.join(' | ') : String(node.type);
if (node.properties) return 'object';
return 'any';
}
const clip = (s: unknown, n = 160): string => {
const t = String(s ?? '').replace(/\s+/g, ' ').trim();
return t.length > n ? t.slice(0, n - 1) + '…' : t;
};
interface Prop { name: string; type: string; kind: string; required: boolean; description: string }
function dataProps(schema: any, allow?: string[]): Prop[] {
let js: any;
try {
js = resolveRoot(z.toJSONSchema(schema, { unrepresentable: 'any' } as any));
} catch {
return [];
}
const props = js?.properties ?? {};
const required: string[] = Array.isArray(js?.required) ? js.required : [];
const SKIP = new Set(['aria', 'type', 'id', 'className', 'style']);
let entries = Object.entries(props).filter(([name]) => !SKIP.has(name));
if (allow && allow.length) {
const order = new Map(allow.map((n, i) => [n, i]));
entries = entries.filter(([n]) => order.has(n)).sort((a, b) => order.get(a[0])! - order.get(b[0])!);
}
return entries
.map(([name, node]: [string, any]) => ({
name,
type: renderType(node),
kind: 'data',
required: required.includes(name),
description: clip(node?.description),
}));
}
function mergeProps(dataPs: Prop[], overlay: ReactInteractionProp[]): Prop[] {
const out: Prop[] = overlay.map((o) => ({ name: o.name, type: o.type, kind: o.kind, required: !!o.required, description: o.description }));
const seen = new Set(out.map((p) => p.name));
for (const d of dataPs) if (!seen.has(d.name)) out.push(d);
return out;
}
// ---- build ----------------------------------------------------------------
const KIND_ORDER: Record<string, number> = { binding: 0, controlled: 1, callback: 2, data: 3 };
const blocks = REACT_BLOCKS.map((b) => {
const props = mergeProps(b.schema ? dataProps(b.schema, b.dataProps) : [], b.interactions).sort(
(a, z2) => (KIND_ORDER[a.kind] - KIND_ORDER[z2.kind]) || (Number(z2.required) - Number(a.required)),
);
return { tag: b.tag, schemaType: b.schemaType, summary: b.summary, specSchema: b.schema ? true : false, props };
});
// No blocks means the overlay failed to load, not that the contract is empty.
// Writing that would wipe the published contract; checking it would compare
// nothing and pass. Fail loudly in both modes instead.
if (blocks.length === 0) {
console.error(
`\n✗ No React blocks found in packages/spec/src/ui/react-blocks.ts — nothing to ${CHECK ? 'check' : 'write'}.\n` +
` REACT_BLOCKS is empty; the contract would be generated with zero blocks.\n`,
);
process.exit(1);
}
const contract = {
version: 2,
adr: 'ADR-0081',
source: 'GENERATED from packages/spec/src/ui/react-blocks.ts — data props from the spec zod schemas, binding/controlled/callback from the React overlay.',
note: "Props each component accepts in kind:'react' page source. Reference blocks by their PascalCase tag. kind: data=declarative config (from the spec schema) · binding=connects to data · controlled=React state · callback=React function. These blocks are for DATA. Live data: const adapter = useAdapter(); adapter.find/findOne/create/update. STYLING (ADR-0065) — a page's source is runtime metadata, so the console's build-time Tailwind NEVER scans it: utility classNAMES silently produce no CSS. Do NOT use Tailwind className in page source. (a) Layout/chrome: inline style={} with hsl(var(--token)) theme colors — e.g. color:'hsl(var(--foreground))', background:'hsl(var(--card))', border:'1px solid hsl(var(--border))', and px/flex for layout. (b) Overlays: render <ObjectForm formType='drawer'|'modal' open onOpenChange> (a pre-styled Sheet/Dialog) — never hand-roll a fixed inset-0 backdrop.",
blocks,
};
// contracts/ is wholly owned by this generator, so a file in there we didn't
// emit is one a real run deletes — e.g. a contract left behind by a rename.
out.manageDir(CONTRACTS_DIR);
out.emit(OUT_JSON, JSON.stringify(contract, null, 2) + '\n');
// markdown
const esc = (s: string) => String(s).replace(/\|/g, '\\|');
const L: string[] = [];
L.push('---');
L.push('title: React-tier component contract');
L.push("description: Props each injected component accepts in kind:'react' page source (ADR-0081). GENERATED from packages/spec/src/ui/react-blocks.ts — do not edit by hand.");
L.push('---');
L.push('');
L.push('{/* GENERATED by packages/spec/scripts/build-react-blocks-contract.ts — do not edit. */}');
L.push('');
L.push(`# React-tier component contract (${contract.adr})`);
L.push('');
L.push(contract.note);
L.push('');
L.push('**kind**: `data` = declarative config (from the spec schema — the authoritative source) · `binding` = connects the block to data · `controlled` = drive from React state · `callback` = a React function the block calls.');
L.push('');
for (const b of blocks) {
L.push(`## \`<${b.tag}>\` — \`${b.schemaType}\`${b.specSchema ? '' : ' *(no spec schema — overlay only)*'}`);
L.push('');
L.push(b.summary);
L.push('');
L.push('| prop | type | kind | required | description |');
L.push('|------|------|------|:--------:|-------------|');
for (const p of b.props) {
L.push(`| \`${p.name}\` | \`${esc(p.type)}\` | ${p.kind} | ${p.required ? '✓' : ''} | ${esc(p.description)} |`);
}
L.push('');
}
L.push('## Injected scope (closure variables, reference directly — not props)');
L.push('');
L.push('`React` · `useAdapter` · `data` · `variables` · `page`. Kanban/calendar/gantt/timeline/map of an object = `<ListView navigation={…} />` with the matching visualization, or `<Block type="object-kanban" …/>`.');
L.push('');
out.emit(OUT_MD, L.join('\n'));
// Disposition: write the emitted tree, or report drift against it.
out.flush({
what: 'skills/objectstack-ui react-blocks contract',
noun: 'react-blocks contract files',
fix: ['pnpm --filter @objectstack/spec gen:react-blocks', 'git add skills'],
});
if (!CHECK) {
console.log(`\n✅ react-blocks contract: ${blocks.length} blocks`);
for (const b of blocks) console.log(` <${b.tag}> ${b.props.length} props`);
}