pepl-ui 0.1.2

UI component model for the PEPL language
Documentation
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
use std::collections::BTreeMap;

/// Whether a prop is required or optional.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum PropRequirement {
    Required,
    Optional,
}

/// Expected prop type for validation.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum PropType {
    String,
    Number,
    Bool,
    Color,
    Action,
    Lambda,
    List,
    Record,
    /// One of a fixed set of string values (e.g., `"filled"|"outlined"|"text"`).
    StringEnum(&'static [&'static str]),
    /// Dimension type (Px, Auto, Fill, Percent).
    Dimension,
    /// Edges type (Uniform or Sides).
    Edges,
    /// Alignment enum.
    Alignment,
}

/// Definition of a single prop on a component.
#[derive(Debug, Clone)]
pub struct PropDef {
    pub name: &'static str,
    pub requirement: PropRequirement,
    pub prop_type: PropType,
}

impl PropDef {
    pub const fn required(name: &'static str, prop_type: PropType) -> Self {
        Self {
            name,
            requirement: PropRequirement::Required,
            prop_type,
        }
    }

    pub const fn optional(name: &'static str, prop_type: PropType) -> Self {
        Self {
            name,
            requirement: PropRequirement::Optional,
            prop_type,
        }
    }
}

/// Definition of a PEPL UI component.
///
/// Each of the 10 Phase 0 components has a static definition specifying
/// its name, props, and whether it accepts children.
pub trait ComponentDef {
    /// Component type name (e.g., "Column", "Text", "Button").
    fn name(&self) -> &'static str;

    /// Whether this component accepts children.
    fn accepts_children(&self) -> bool;

    /// Prop definitions (required and optional).
    fn props(&self) -> &[PropDef];
}

/// Registry of all Phase 0 components.
///
/// Provides lookup by name and validation of component usage.
pub struct ComponentRegistry {
    components: BTreeMap<&'static str, Box<dyn ComponentDef>>,
}

impl ComponentRegistry {
    /// Create a registry with all 10 Phase 0 components registered.
    pub fn new() -> Self {
        let mut components: BTreeMap<&'static str, Box<dyn ComponentDef>> = BTreeMap::new();

        // Layout
        components.insert("Column", Box::new(ColumnDef));
        components.insert("Row", Box::new(RowDef));
        components.insert("Scroll", Box::new(ScrollDef));

        // Content
        components.insert("Text", Box::new(TextDef));
        components.insert("ProgressBar", Box::new(ProgressBarDef));

        // Interactive
        components.insert("Button", Box::new(ButtonDef));
        components.insert("TextInput", Box::new(TextInputDef));

        // List & Data
        components.insert("ScrollList", Box::new(ScrollListDef));

        // Feedback & Overlay
        components.insert("Modal", Box::new(ModalDef));
        components.insert("Toast", Box::new(ToastDef));

        Self { components }
    }

    /// Look up a component by name. Returns `None` for unknown components (E402).
    pub fn get(&self, name: &str) -> Option<&dyn ComponentDef> {
        self.components.get(name).map(|b| b.as_ref())
    }

    /// Check if a component name is valid.
    pub fn is_valid(&self, name: &str) -> bool {
        self.components.contains_key(name)
    }

    /// Get all registered component names (sorted, deterministic).
    pub fn component_names(&self) -> Vec<&'static str> {
        self.components.keys().copied().collect()
    }

    /// Total number of registered components.
    pub fn len(&self) -> usize {
        self.components.len()
    }

    /// Whether the registry is empty.
    pub fn is_empty(&self) -> bool {
        self.components.is_empty()
    }
}

impl Default for ComponentRegistry {
    fn default() -> Self {
        Self::new()
    }
}

// ══════════════════════════════════════════════════════════════════════════════
// Layout components
// ══════════════════════════════════════════════════════════════════════════════

struct ColumnDef;
impl ComponentDef for ColumnDef {
    fn name(&self) -> &'static str {
        "Column"
    }
    fn accepts_children(&self) -> bool {
        true
    }
    fn props(&self) -> &[PropDef] {
        static PROPS: &[PropDef] = &[
            PropDef {
                name: "spacing",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Number,
            },
            PropDef {
                name: "align",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Alignment,
            },
            PropDef {
                name: "padding",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Edges,
            },
            PropDef {
                name: "accessible",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Record,
            },
        ];
        PROPS
    }
}

struct RowDef;
impl ComponentDef for RowDef {
    fn name(&self) -> &'static str {
        "Row"
    }
    fn accepts_children(&self) -> bool {
        true
    }
    fn props(&self) -> &[PropDef] {
        static PROPS: &[PropDef] = &[
            PropDef {
                name: "spacing",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Number,
            },
            PropDef {
                name: "align",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Alignment,
            },
            PropDef {
                name: "padding",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Edges,
            },
            PropDef {
                name: "accessible",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Record,
            },
        ];
        PROPS
    }
}

struct ScrollDef;
impl ComponentDef for ScrollDef {
    fn name(&self) -> &'static str {
        "Scroll"
    }
    fn accepts_children(&self) -> bool {
        true
    }
    fn props(&self) -> &[PropDef] {
        static PROPS: &[PropDef] = &[
            PropDef {
                name: "direction",
                requirement: PropRequirement::Optional,
                prop_type: PropType::StringEnum(&["vertical", "horizontal", "both"]),
            },
            PropDef {
                name: "accessible",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Record,
            },
        ];
        PROPS
    }
}

// ══════════════════════════════════════════════════════════════════════════════
// Content components
// ══════════════════════════════════════════════════════════════════════════════

struct TextDef;
impl ComponentDef for TextDef {
    fn name(&self) -> &'static str {
        "Text"
    }
    fn accepts_children(&self) -> bool {
        false
    }
    fn props(&self) -> &[PropDef] {
        static PROPS: &[PropDef] = &[
            PropDef {
                name: "value",
                requirement: PropRequirement::Required,
                prop_type: PropType::String,
            },
            PropDef {
                name: "size",
                requirement: PropRequirement::Optional,
                prop_type: PropType::StringEnum(&["small", "body", "title", "heading", "display"]),
            },
            PropDef {
                name: "weight",
                requirement: PropRequirement::Optional,
                prop_type: PropType::StringEnum(&["normal", "medium", "bold"]),
            },
            PropDef {
                name: "color",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Color,
            },
            PropDef {
                name: "align",
                requirement: PropRequirement::Optional,
                prop_type: PropType::StringEnum(&["start", "center", "end"]),
            },
            PropDef {
                name: "max_lines",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Number,
            },
            PropDef {
                name: "overflow",
                requirement: PropRequirement::Optional,
                prop_type: PropType::StringEnum(&["clip", "ellipsis", "wrap"]),
            },
            PropDef {
                name: "accessible",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Record,
            },
        ];
        PROPS
    }
}

struct ProgressBarDef;
impl ComponentDef for ProgressBarDef {
    fn name(&self) -> &'static str {
        "ProgressBar"
    }
    fn accepts_children(&self) -> bool {
        false
    }
    fn props(&self) -> &[PropDef] {
        static PROPS: &[PropDef] = &[
            PropDef {
                name: "value",
                requirement: PropRequirement::Required,
                prop_type: PropType::Number,
            },
            PropDef {
                name: "color",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Color,
            },
            PropDef {
                name: "background",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Color,
            },
            PropDef {
                name: "height",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Number,
            },
            PropDef {
                name: "accessible",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Record,
            },
        ];
        PROPS
    }
}

// ══════════════════════════════════════════════════════════════════════════════
// Interactive components
// ══════════════════════════════════════════════════════════════════════════════

struct ButtonDef;
impl ComponentDef for ButtonDef {
    fn name(&self) -> &'static str {
        "Button"
    }
    fn accepts_children(&self) -> bool {
        false
    }
    fn props(&self) -> &[PropDef] {
        static PROPS: &[PropDef] = &[
            PropDef {
                name: "label",
                requirement: PropRequirement::Required,
                prop_type: PropType::String,
            },
            PropDef {
                name: "on_tap",
                requirement: PropRequirement::Required,
                prop_type: PropType::Action,
            },
            PropDef {
                name: "variant",
                requirement: PropRequirement::Optional,
                prop_type: PropType::StringEnum(&["filled", "outlined", "text"]),
            },
            PropDef {
                name: "icon",
                requirement: PropRequirement::Optional,
                prop_type: PropType::String,
            },
            PropDef {
                name: "disabled",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Bool,
            },
            PropDef {
                name: "loading",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Bool,
            },
            PropDef {
                name: "accessible",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Record,
            },
        ];
        PROPS
    }
}

struct TextInputDef;
impl ComponentDef for TextInputDef {
    fn name(&self) -> &'static str {
        "TextInput"
    }
    fn accepts_children(&self) -> bool {
        false
    }
    fn props(&self) -> &[PropDef] {
        static PROPS: &[PropDef] = &[
            PropDef {
                name: "value",
                requirement: PropRequirement::Required,
                prop_type: PropType::String,
            },
            PropDef {
                name: "on_change",
                requirement: PropRequirement::Required,
                prop_type: PropType::Lambda,
            },
            PropDef {
                name: "placeholder",
                requirement: PropRequirement::Optional,
                prop_type: PropType::String,
            },
            PropDef {
                name: "label",
                requirement: PropRequirement::Optional,
                prop_type: PropType::String,
            },
            PropDef {
                name: "keyboard",
                requirement: PropRequirement::Optional,
                prop_type: PropType::StringEnum(&["text", "number", "email", "phone", "url"]),
            },
            PropDef {
                name: "max_length",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Number,
            },
            PropDef {
                name: "multiline",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Bool,
            },
            PropDef {
                name: "accessible",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Record,
            },
        ];
        PROPS
    }
}

// ══════════════════════════════════════════════════════════════════════════════
// List & Data components
// ══════════════════════════════════════════════════════════════════════════════

struct ScrollListDef;
impl ComponentDef for ScrollListDef {
    fn name(&self) -> &'static str {
        "ScrollList"
    }
    fn accepts_children(&self) -> bool {
        false
    }
    fn props(&self) -> &[PropDef] {
        static PROPS: &[PropDef] = &[
            PropDef {
                name: "items",
                requirement: PropRequirement::Required,
                prop_type: PropType::List,
            },
            PropDef {
                name: "render",
                requirement: PropRequirement::Required,
                prop_type: PropType::Lambda,
            },
            PropDef {
                name: "key",
                requirement: PropRequirement::Required,
                prop_type: PropType::Lambda,
            },
            PropDef {
                name: "on_reorder",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Lambda,
            },
            PropDef {
                name: "dividers",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Bool,
            },
            PropDef {
                name: "accessible",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Record,
            },
        ];
        PROPS
    }
}

// ══════════════════════════════════════════════════════════════════════════════
// Feedback & Overlay components
// ══════════════════════════════════════════════════════════════════════════════

struct ModalDef;
impl ComponentDef for ModalDef {
    fn name(&self) -> &'static str {
        "Modal"
    }
    fn accepts_children(&self) -> bool {
        true
    }
    fn props(&self) -> &[PropDef] {
        static PROPS: &[PropDef] = &[
            PropDef {
                name: "visible",
                requirement: PropRequirement::Required,
                prop_type: PropType::Bool,
            },
            PropDef {
                name: "on_dismiss",
                requirement: PropRequirement::Required,
                prop_type: PropType::Action,
            },
            PropDef {
                name: "title",
                requirement: PropRequirement::Optional,
                prop_type: PropType::String,
            },
            PropDef {
                name: "accessible",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Record,
            },
        ];
        PROPS
    }
}

struct ToastDef;
impl ComponentDef for ToastDef {
    fn name(&self) -> &'static str {
        "Toast"
    }
    fn accepts_children(&self) -> bool {
        false
    }
    fn props(&self) -> &[PropDef] {
        static PROPS: &[PropDef] = &[
            PropDef {
                name: "message",
                requirement: PropRequirement::Required,
                prop_type: PropType::String,
            },
            PropDef {
                name: "duration",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Number,
            },
            PropDef {
                name: "type",
                requirement: PropRequirement::Optional,
                prop_type: PropType::StringEnum(&["info", "success", "warning", "error"]),
            },
            PropDef {
                name: "accessible",
                requirement: PropRequirement::Optional,
                prop_type: PropType::Record,
            },
        ];
        PROPS
    }
}