-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathlayout.ts
More file actions
668 lines (640 loc) · 14.5 KB
/
Copy pathlayout.ts
File metadata and controls
668 lines (640 loc) · 14.5 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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
/**
* ObjectUI
* Copyright (c) 2024-present ObjectStack Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @object-ui/types - Layout Component Schemas
*
* Type definitions for layout and container components.
* These components organize and structure other components.
*
* @module layout
* @packageDocumentation
*/
import type { PageType as SpecPageType } from '@objectstack/spec/ui';
import type { BaseSchema, SchemaNode } from './base';
/**
* Basic HTML div container
*/
export interface DivSchema extends BaseSchema {
type: 'div';
/**
* Child components
*/
children?: SchemaNode | SchemaNode[];
}
/**
* Text span component for inline text
*/
export interface SpanSchema extends BaseSchema {
type: 'span';
/**
* Text content
*/
value?: string;
/**
* Child components
*/
children?: SchemaNode | SchemaNode[];
}
/**
* Text display component
*/
export interface TextSchema extends BaseSchema {
type: 'text';
/**
* Text content to display
*/
value?: string;
/**
* Text variant/style
* @default 'body'
*/
variant?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'body' | 'caption' | 'overline';
/**
* Text alignment
*/
align?: 'left' | 'center' | 'right' | 'justify';
}
/**
* Image component
*/
export interface ImageSchema extends BaseSchema {
type: 'image';
/**
* Image source URL
*/
src: string;
/**
* Alt text for accessibility
*/
alt?: string;
/**
* Image width
*/
width?: string | number;
/**
* Image height
*/
height?: string | number;
/**
* Object fit property
*/
objectFit?: 'contain' | 'cover' | 'fill' | 'none' | 'scale-down';
}
/**
* Icon component
*/
export interface IconSchema extends BaseSchema {
type: 'icon';
/**
* Icon name (lucide-react icon name)
*/
name: string;
/**
* Icon size in pixels
* @default 24
*/
size?: number;
/**
* Icon color
*/
color?: string;
}
/**
* Separator/Divider component
*/
export interface SeparatorSchema extends BaseSchema {
type: 'separator';
/**
* Orientation of the separator
* @default 'horizontal'
*/
orientation?: 'horizontal' | 'vertical';
/**
* Whether to add decorative content
*/
decorative?: boolean;
}
/**
* Generic container component
*/
export interface ContainerSchema extends BaseSchema {
type: 'container';
/**
* Max width constraint
* @default 'lg'
*/
maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | '7xl' | 'full' | 'screen' | false;
/**
* Center the container
* @default true
*/
centered?: boolean;
/**
* Padding
*/
padding?: number;
/**
* Child components
*/
children?: SchemaNode | SchemaNode[];
}
/**
* Flexbox layout component
*/
export interface FlexSchema extends BaseSchema {
type: 'flex';
/**
* Flex direction
* @default 'row'
*/
direction?: 'row' | 'col' | 'row-reverse' | 'col-reverse';
/**
* Justify content alignment
* @default 'start'
*/
justify?: 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly';
/**
* Align items
* @default 'center'
*/
align?: 'start' | 'end' | 'center' | 'baseline' | 'stretch';
/**
* Gap between items (Tailwind scale 0-8)
* @default 2
*/
gap?: number;
/**
* Allow items to wrap
* @default false
*/
wrap?: boolean;
/**
* Child components
*/
children?: SchemaNode | SchemaNode[];
}
/**
* Stack layout component (Vertical Flex shortcut)
*/
export interface StackSchema extends Omit<FlexSchema, 'type'> {
type: 'stack';
}
/**
* CSS Grid layout component
*/
export interface GridSchema extends BaseSchema {
type: 'grid';
/**
* Number of columns (responsive)
* Can be number or object: { xs: 1, sm: 2, md: 3, lg: 4 }
* @default 3
*/
columns?: number | Record<string, number>;
/**
* Gap between items (Tailwind scale 0-8)
* @default 4
*/
gap?: number;
/**
* Child components
*/
children?: SchemaNode | SchemaNode[];
}
/**
* Card component
*/
export interface CardSchema extends BaseSchema {
type: 'card';
/**
* Card title
*/
title?: string;
/**
* Card description
*/
description?: string;
/**
* Card header content
*/
header?: SchemaNode | SchemaNode[];
/**
* Card body/content (Legacy, use children)
*/
body?: SchemaNode | SchemaNode[];
/**
* Child components
*/
children?: SchemaNode | SchemaNode[];
/**
* Card footer content
*/
footer?: SchemaNode | SchemaNode[];
/**
* Variant style
* @default 'default'
*/
variant?: 'default' | 'outline' | 'ghost';
/**
* Whether the card is hoverable
* @default false
*/
hoverable?: boolean;
/**
* Whether the card is clickable
* @default false
*/
clickable?: boolean;
/**
* Click handler
*/
onClick?: () => void;
}
/**
* Tabs component
*/
export interface TabsSchema extends BaseSchema {
type: 'tabs';
/**
* Default active tab value
*/
defaultValue?: string;
/**
* Controlled active tab value
*/
value?: string;
/**
* Tabs orientation
* @default 'horizontal'
*/
orientation?: 'horizontal' | 'vertical';
/**
* Tab items configuration
*/
items: TabItem[];
/**
* Change handler
*/
onValueChange?: (value: string) => void;
}
/**
* Individual tab item
*/
export interface TabItem {
/**
* Unique tab identifier
*/
value: string;
/**
* Tab label
*/
label: string;
/**
* Tab icon
*/
icon?: string;
/**
* Whether tab is disabled
*/
disabled?: boolean;
/**
* Tab content
*/
content: SchemaNode | SchemaNode[];
}
/**
* Scroll area component
*/
export interface ScrollAreaSchema extends BaseSchema {
type: 'scroll-area';
/**
* Height of the scroll container
*/
height?: string | number;
/**
* Width of the scroll container
*/
width?: string | number;
/**
* Scrollbar orientation
* @default 'vertical'
*/
orientation?: 'vertical' | 'horizontal' | 'both';
/**
* Child components
*/
children?: SchemaNode | SchemaNode[];
}
/**
* Resizable panels component
*/
export interface ResizableSchema extends BaseSchema {
type: 'resizable';
/**
* Direction of resizable panels
* @default 'horizontal'
*/
direction?: 'horizontal' | 'vertical';
/**
* Minimum Height
*/
minHeight?: string | number;
/**
* Show resize handle
* @default true
*/
withHandle?: boolean;
/**
* Resizable panels
*/
panels: ResizablePanel[];
}
/**
* Individual resizable panel
*/
export interface ResizablePanel {
/**
* Unique panel identifier
*/
id: string;
/**
* Default size (percentage 0-100)
*/
defaultSize?: number;
/**
* Minimum size (percentage 0-100)
*/
minSize?: number;
/**
* Maximum size (percentage 0-100)
*/
maxSize?: number;
/**
* Panel content
*/
content: SchemaNode | SchemaNode[];
}
/**
* Aspect ratio component
*/
export interface AspectRatioSchema extends BaseSchema {
type: 'aspect-ratio';
/**
* Aspect ratio (width / height)
* @default 16/9
*/
ratio?: number;
/**
* Image URL to display
*/
image?: string;
/**
* Image alt text
*/
alt?: string;
/**
* Child components (alternative to image)
*/
body?: SchemaNode | SchemaNode[];
/**
* Child components (alternative syntax)
*/
children?: SchemaNode | SchemaNode[];
}
/**
* List visualization names that are still accepted in the `pageType` slot.
*
* These are **not** page kinds. `@objectstack/spec` `ui/page.zod.ts` states it
* outright: they are visualizations of a `list` page, selected via
* `interfaceConfig.appearance.allowedVisualizations`. They are retained here as
* a **named, sanctioned local extension** (issue #2231's prescription) pending
* the "visualizations are not page types" cleanup, so that the spec-owned half
* of `PageType` can be derived while the objectui-only half stays visible
* instead of hiding inside a hand-written union.
*
* Narrowing this to `never` is the cleanup; it is a breaking type change for
* anyone assigning `pageType: 'kanban'`, so it is a separate decision.
*/
export type PageVisualizationAlias =
| 'grid'
| 'gallery'
| 'kanban'
| 'calendar'
| 'timeline';
/**
* Page Type
* Determines page behavior and default layout template.
*
* The spec-owned half is `@objectstack/spec`'s `PageType` **by reference**
* (issue #2231/#2901; formerly a hand-written union). That mirror had drifted in
* BOTH directions at once — it carried the five visualization names above, which
* the spec explicitly repudiates, while the sibling zod `PageTypeSchema` in
* `zod/layout.zod.ts` was missing `list`. Three disagreeing definitions of one
* vocabulary lived in this package.
*/
export type PageType = SpecPageType | PageVisualizationAlias;
/**
* Page Variable
* Local page state that can be read/written by components and expressions.
* Aligned with @objectstack/spec PageVariableSchema
*/
export interface PageVariable {
/** Variable name */
name: string;
/** Variable type @default 'string' */
type?: 'string' | 'number' | 'boolean' | 'object' | 'array' | 'record_id';
/** Default value for initialization */
defaultValue?: any;
/** Variable data source (e.g. URL param, context, expression) */
source?: string;
}
/**
* Page Region Size
* Aligned with @objectstack/spec PageRegionSchema.width
*/
export type PageRegionWidth = 'small' | 'medium' | 'large' | 'full';
/**
* Page Region (Header, Sidebar, Main, etc)
* Aligned with @objectstack/spec PageRegionSchema
*/
export interface PageRegion {
/**
* Region name/id (e.g. "sidebar", "main", "header")
*/
name: string;
/**
* Region type — semantic role for layout rendering
*/
type?: 'header' | 'sidebar' | 'main' | 'footer' | 'aside';
/**
* Region width (spec-aligned enum)
*/
width?: PageRegionWidth | string;
/**
* Components in this region
*/
components: SchemaNode[];
/**
* CSS class overrides
*/
className?: string;
}
/**
* Page layout component
* Top-level container for a page route.
* Aligned with @objectstack/spec PageSchema
*/
export interface PageSchema extends BaseSchema {
type: 'page';
/**
* Page title
*/
title?: string;
/**
* Page icon (Lucide icon name)
*/
icon?: string;
/**
* Page description
*/
description?: string;
/**
* Page type — determines default layout and behavior
* @default 'record'
*/
pageType?: PageType;
/**
* Bound object name (for record pages)
* Provides record context to components in regions
*/
object?: string;
/**
* Layout template name (e.g. "default", "header-sidebar-main")
* @default 'default'
*/
template?: string;
/**
* Local page state variables
* Initialized on mount and available to all components via context
*/
variables?: PageVariable[];
/**
* Page layout regions
* (Aligned with @objectstack/spec Page.regions)
*/
regions?: PageRegion[];
// blankLayout removed — the `blank` page type has no renderer and was dropped
// from @objectstack/spec PageTypeSchema (framework#2265, enforce-or-remove).
/**
* Main content array (Legacy/Simple mode)
*/
body?: SchemaNode[];
/**
* Alternative content prop
*/
children?: SchemaNode | SchemaNode[];
/**
* Whether this is the default page for the object/app
* @default false
*/
isDefault?: boolean;
/**
* Profiles that can access this page
*/
assignedProfiles?: string[];
/**
* ARIA accessibility attributes.
* Aligned with @objectstack/spec AriaPropsSchema.
*/
aria?: {
ariaLabel?: string;
ariaDescribedBy?: string;
role?: string;
};
/**
* Override semantics for record pages.
*
* - `"full"` (default): the schema fully describes the page; the
* default-page synthesizer is bypassed entirely.
* - `"slotted"`: the schema only provides overrides for one or more
* named slots (see `slots`). The default-page synthesizer fills in
* every slot the author did NOT override. Use this when you want
* to customize just the header / actions / one tab without
* re-authoring the rest of the page.
*
* Only meaningful when `pageType === 'record'`. Ignored for full
* pages and for non-record page types.
*
* @default 'full'
*/
kind?: 'full' | 'slotted';
/**
* Slotted override map. Each slot accepts a single SchemaNode or an
* array (arrays are flattened into the slot position). Slots not
* provided fall through to the synthesized default.
*
* Slot menu (v1):
* - `header` — replaces the `page:header` node.
* - `actions` — replaces the `record:quick_actions` action bar.
* - `highlights` — replaces the highlight strip (chips + chevron
* path).
* - `details` — replaces the body of the Details tab (a.k.a. the
* `record:details` sections). Use this to customize the Details
* layout while keeping Related / Activity / History tabs as
* synthesized.
* - `tabs` — replaces the entire `page:tabs` node. Use this when
* you need to add custom tabs or reorder them; you own the full
* tab system. Wins over `details` when both are present.
* - `discussion` — replaces the inline `record:discussion` footer.
*
* Each slot is a **full replacement** at the slot boundary — no
* deep merge, no patch operations. To compose default + custom,
* call the corresponding `buildDefault*` sub-builder from
* `@object-ui/plugin-detail` and spread its output.
*
* Only honored when `kind === 'slotted'`.
*/
slots?: PageSlotMap;
}
/**
* Named-slot override map for slotted record pages.
*
* Each slot accepts a single SchemaNode or an array. The synthesizer
* inlines the provided value verbatim at the slot's position in the
* canonical Page schema; slots that are omitted fall through to the
* synthesized default.
*
* See `PageSchema.slots` for the per-slot semantics.
*/
export interface PageSlotMap {
header?: SchemaNode | SchemaNode[];
actions?: SchemaNode | SchemaNode[];
highlights?: SchemaNode | SchemaNode[];
details?: SchemaNode | SchemaNode[];
tabs?: SchemaNode | SchemaNode[];
discussion?: SchemaNode | SchemaNode[];
}
/**
* Union type of all layout schemas
*/
export type LayoutSchema =
| DivSchema
| SpanSchema
| TextSchema
| ImageSchema
| IconSchema
| SeparatorSchema
| ContainerSchema
| FlexSchema
| StackSchema
| GridSchema
| CardSchema
| TabsSchema
| ScrollAreaSchema
| ResizableSchema
| AspectRatioSchema
| PageSchema;