datagrout-panels 0.1.0

The DataGrout Smart Panel model: declarative UI stored as logic-cell facts, parsed into a renderer-agnostic tree.
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
//! The panel model — a typed view of the `_panels` fact schema.
//!
//! Kind lists mirror DataGrout's `smart_panel.publish` (`@display_kinds` /
//! `@form_kinds`). Keeping them in sync is what lets [`PanelKind::parse`] be
//! total rather than lossy; a kind this crate predates still parses, as
//! [`PanelKind::Unknown`].
//!
//! # Composition
//!
//! A panel's parts — a form's fields, a dashboard's child panels — are not
//! listed on the parent. Each part is its own `panel/3` fact carrying a
//! `parent` prop that names the container:
//!
//! ```prolog
//! panel(pipeline_dashboard, dashboard, pipeline_pulse).
//! panel(stage_mix, bar_chart, pipeline_pulse).
//! panel_prop(stage_mix, parent, pipeline_dashboard).
//! ```
//!
//! The parser inverts that edge, so a resolved [`Panel`] carries its
//! [`children`](Panel::children) (for dashboards) or [`fields`](Panel::fields)
//! (for forms) and the parts do not appear at the top level.

use std::collections::BTreeMap;

use serde::{Deserialize, Serialize};
use serde_json::Value;

/// A panel kind. Display kinds render data; form kinds collect it.
///
/// `Unknown` is deliberate: DataGrout may publish a kind this crate predates,
/// and a renderer that panics on an unrecognized panel is worse than one that
/// draws a labelled placeholder.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum PanelKind {
    // ── display ──────────────────────────────────────────────────────────
    BarChart,
    LineChart,
    PieChart,
    Scatter,
    Table,
    Metric,
    Gauge,
    Markdown,
    List,
    AreaChart,
    Heatmap,
    Timeline,
    Funnel,
    Game,
    Doc,
    /// A grid of the data panels whose `parent` prop names it.
    Dashboard,
    // ── form ─────────────────────────────────────────────────────────────
    Form,
    TextInput,
    TextArea,
    Dropdown,
    Select,
    Checkbox,
    Radio,
    Button,
    NumberInput,
    DateInput,
    FileUpload,
    RichText,
    /// A kind this crate does not know about. Rendered as a placeholder.
    Unknown(String),
}

impl std::str::FromStr for PanelKind {
    type Err = std::convert::Infallible;

    /// Every string parses; an unrecognized one becomes [`PanelKind::Unknown`].
    fn from_str(s: &str) -> Result<Self, Self::Err> {
        Ok(Self::parse(s))
    }
}

impl PanelKind {
    /// Parse a wire name such as `"bar_chart"`. Total: unknown names become
    /// [`PanelKind::Unknown`] rather than failing.
    pub fn parse(s: &str) -> Self {
        match s {
            "bar_chart" => Self::BarChart,
            "line_chart" => Self::LineChart,
            "pie_chart" => Self::PieChart,
            "scatter" => Self::Scatter,
            "table" => Self::Table,
            "metric" => Self::Metric,
            "gauge" => Self::Gauge,
            "markdown" => Self::Markdown,
            "list" => Self::List,
            "area_chart" => Self::AreaChart,
            "heatmap" => Self::Heatmap,
            "timeline" => Self::Timeline,
            "funnel" => Self::Funnel,
            "game" => Self::Game,
            "doc" => Self::Doc,
            "dashboard" => Self::Dashboard,
            "form" => Self::Form,
            "text_input" => Self::TextInput,
            "textarea" => Self::TextArea,
            "dropdown" => Self::Dropdown,
            "select" => Self::Select,
            "checkbox" => Self::Checkbox,
            "radio" => Self::Radio,
            "button" => Self::Button,
            "number_input" => Self::NumberInput,
            "date_input" => Self::DateInput,
            "file_upload" => Self::FileUpload,
            "rich_text" => Self::RichText,
            other => Self::Unknown(other.to_string()),
        }
    }

    /// The wire name, e.g. `"bar_chart"`.
    pub fn as_str(&self) -> &str {
        match self {
            Self::BarChart => "bar_chart",
            Self::LineChart => "line_chart",
            Self::PieChart => "pie_chart",
            Self::Scatter => "scatter",
            Self::Table => "table",
            Self::Metric => "metric",
            Self::Gauge => "gauge",
            Self::Markdown => "markdown",
            Self::List => "list",
            Self::AreaChart => "area_chart",
            Self::Heatmap => "heatmap",
            Self::Timeline => "timeline",
            Self::Funnel => "funnel",
            Self::Game => "game",
            Self::Doc => "doc",
            Self::Dashboard => "dashboard",
            Self::Form => "form",
            Self::TextInput => "text_input",
            Self::TextArea => "textarea",
            Self::Dropdown => "dropdown",
            Self::Select => "select",
            Self::Checkbox => "checkbox",
            Self::Radio => "radio",
            Self::Button => "button",
            Self::NumberInput => "number_input",
            Self::DateInput => "date_input",
            Self::FileUpload => "file_upload",
            Self::RichText => "rich_text",
            Self::Unknown(s) => s,
        }
    }

    /// Kinds whose `panel_source` is a live DATA query rather than a submit
    /// goal. Matches DataGrout's `PanelData.data_kinds/0` — the distinction
    /// decides whether a source is safe to evaluate on render.
    pub fn is_data_kind(&self) -> bool {
        matches!(
            self,
            Self::Table
                | Self::BarChart
                | Self::LineChart
                | Self::PieChart
                | Self::Scatter
                | Self::Metric
                | Self::Gauge
                | Self::List
                | Self::AreaChart
                | Self::Heatmap
                | Self::Timeline
                | Self::Funnel
        )
    }

    pub fn is_form_kind(&self) -> bool {
        matches!(
            self,
            Self::Form
                | Self::TextInput
                | Self::TextArea
                | Self::Dropdown
                | Self::Select
                | Self::Checkbox
                | Self::Radio
                | Self::Button
                | Self::NumberInput
                | Self::DateInput
                | Self::FileUpload
                | Self::RichText
        )
    }

    /// Kinds that compose other panels rather than showing data of their own.
    pub fn is_composite(&self) -> bool {
        matches!(self, Self::Dashboard | Self::Form)
    }
}

/// When a form field fires. From `field_trigger(FieldId, TriggerType, Event)`.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct FieldTrigger {
    /// `once | repeat | on_event | asap | always | auto`
    pub trigger_type: String,
    /// `submit | change | focus | manual`
    pub event: String,
}

/// What happens with a field's output. From `field_emit(FieldId, EmitType)`.
///
/// `replacement | trigger | redirection | event`
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct FieldEmit(pub String);

/// A live query backing — `panel_source(Id, SourceNamespace, PrologQuery)`.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct PanelSource {
    pub namespace: String,
    pub query: String,
}

/// Prop values as they cross the wire — strings, booleans, numbers, lists.
///
/// Props are **not** all strings: `columns` is a list and `published` a
/// boolean in real cells. Storing them as [`Value`] keeps what the server sent;
/// the accessors on [`Panel`] and [`Field`] do the coercion a renderer wants.
pub type Props = BTreeMap<String, Value>;

/// Read a prop as text, coercing scalars the way the server does.
///
/// Mirrors `PanelData.prop_value/1`: strings pass through, numbers and
/// booleans become their text form, lists and maps are not text and yield
/// `None` — a renderer that wants a list asks [`prop_list`].
pub fn prop_str(props: &Props, key: &str) -> Option<String> {
    match props.get(key)? {
        Value::String(s) => Some(s.clone()),
        Value::Number(n) => Some(n.to_string()),
        Value::Bool(b) => Some(b.to_string()),
        _ => None,
    }
}

/// Read a prop as a list of strings.
///
/// Accepts a JSON list (the wire form for `columns`) and, tolerantly, a
/// comma-separated string.
pub fn prop_list(props: &Props, key: &str) -> Vec<String> {
    match props.get(key) {
        Some(Value::Array(items)) => items
            .iter()
            .filter_map(|v| match v {
                Value::String(s) => Some(s.clone()),
                Value::Number(n) => Some(n.to_string()),
                Value::Bool(b) => Some(b.to_string()),
                _ => None,
            })
            .collect(),
        Some(Value::String(s)) => s
            .split(',')
            .map(str::trim)
            .filter(|s| !s.is_empty())
            .map(str::to_string)
            .collect(),
        _ => Vec::new(),
    }
}

/// Read a prop as a boolean. Accepts `true`/`false` and their string forms,
/// which is how `published` arrives depending on the publishing client.
pub fn prop_bool(props: &Props, key: &str) -> Option<bool> {
    match props.get(key)? {
        Value::Bool(b) => Some(*b),
        Value::String(s) => match s.trim().to_ascii_lowercase().as_str() {
            "true" => Some(true),
            "false" => Some(false),
            _ => None,
        },
        _ => None,
    }
}

/// Read a prop as a number, from a JSON number or numeric string.
pub fn prop_f64(props: &Props, key: &str) -> Option<f64> {
    match props.get(key)? {
        Value::Number(n) => n.as_f64(),
        Value::String(s) => s.trim().parse().ok(),
        _ => None,
    }
}

/// A form field: a part of a `form` panel, linked to it by the field's own
/// `parent` prop.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Field {
    pub id: String,
    pub kind: PanelKind,
    pub props: Props,
    /// `field_input(FieldId, DependsOnFieldId)` — dependency edges.
    pub inputs: Vec<String>,
    pub trigger: Option<FieldTrigger>,
    pub emit: Option<FieldEmit>,
    pub source: Option<PanelSource>,
}

impl Field {
    pub fn label(&self) -> String {
        prop_str(&self.props, "label").unwrap_or_else(|| self.id.clone())
    }

    pub fn placeholder(&self) -> String {
        prop_str(&self.props, "placeholder").unwrap_or_default()
    }

    pub fn required(&self) -> bool {
        prop_bool(&self.props, "required").unwrap_or(false)
    }

    /// Default value, if the field declares one.
    pub fn default_value(&self) -> Option<String> {
        prop_str(&self.props, "default")
    }
}

/// A resolved panel: definition facts plus whatever rows were loaded for it.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Panel {
    pub id: String,
    pub kind: PanelKind,
    pub namespace: String,
    /// `panel_prop(Id, Key, Value)` pairs, values as sent.
    pub props: Props,
    /// Rows: either the live `panel_source` result or the `panel_data`
    /// snapshot. Resolution happens outside this crate — see [`PanelSource`].
    pub rows: Vec<Vec<Value>>,
    pub source: Option<PanelSource>,
    /// Form fields — parts of a `form` panel.
    pub fields: Vec<Field>,
    /// Child panels — parts of a `dashboard` (or any non-form container).
    pub children: Vec<Panel>,
    /// Whether the publisher marked this panel published.
    ///
    /// Matches the server: `published` must be `true` (or `"true"`); an
    /// absent prop means **not** published.
    pub published: bool,
}

impl Panel {
    pub fn title(&self) -> String {
        prop_str(&self.props, "title").unwrap_or_else(|| self.id.clone())
    }

    pub fn description(&self) -> Option<String> {
        prop_str(&self.props, "description")
    }

    /// Layout slot hint. The server defaults this to `"main"`.
    pub fn slot(&self) -> String {
        prop_str(&self.props, "slot").unwrap_or_else(|| "main".to_string())
    }

    /// The container this panel is a part of, if any.
    pub fn parent(&self) -> Option<String> {
        prop_str(&self.props, "parent")
    }

    /// Column headers for `table` panels — the `columns` prop, a list.
    pub fn columns(&self) -> Vec<String> {
        prop_list(&self.props, "columns")
    }

    /// Read a prop as text. See [`prop_str`].
    pub fn prop_str(&self, key: &str) -> Option<String> {
        prop_str(&self.props, key)
    }

    /// Read a prop as a list. See [`prop_list`].
    pub fn prop_list(&self, key: &str) -> Vec<String> {
        prop_list(&self.props, key)
    }

    /// Read a prop as a boolean. See [`prop_bool`].
    pub fn prop_bool(&self, key: &str) -> Option<bool> {
        prop_bool(&self.props, key)
    }

    /// Read a prop as a number. See [`prop_f64`].
    pub fn prop_f64(&self, key: &str) -> Option<f64> {
        prop_f64(&self.props, key)
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use serde_json::json;

    fn props(pairs: &[(&str, Value)]) -> Props {
        pairs
            .iter()
            .map(|(k, v)| ((*k).to_string(), v.clone()))
            .collect()
    }

    #[test]
    fn every_known_kind_round_trips_through_its_wire_name() {
        for name in [
            "bar_chart",
            "line_chart",
            "pie_chart",
            "scatter",
            "table",
            "metric",
            "gauge",
            "markdown",
            "list",
            "area_chart",
            "heatmap",
            "timeline",
            "funnel",
            "game",
            "doc",
            "dashboard",
            "form",
            "text_input",
            "textarea",
            "dropdown",
            "select",
            "checkbox",
            "radio",
            "button",
            "number_input",
            "date_input",
            "file_upload",
            "rich_text",
        ] {
            let kind = PanelKind::parse(name);
            assert_eq!(name.parse::<PanelKind>().unwrap(), kind);
            assert!(
                !matches!(kind, PanelKind::Unknown(_)),
                "{name} should be a known kind"
            );
            assert_eq!(kind.as_str(), name);
        }
    }

    #[test]
    fn dashboard_is_composite_not_data() {
        assert!(PanelKind::Dashboard.is_composite());
        assert!(!PanelKind::Dashboard.is_data_kind());
        assert!(!PanelKind::Dashboard.is_form_kind());
    }

    #[test]
    fn prop_str_coerces_scalars_and_refuses_lists() {
        let p = props(&[
            ("title", json!("Pipeline")),
            ("limit", json!(40)),
            ("published", json!(true)),
            ("columns", json!(["a", "b"])),
        ]);
        assert_eq!(prop_str(&p, "title").as_deref(), Some("Pipeline"));
        assert_eq!(prop_str(&p, "limit").as_deref(), Some("40"));
        assert_eq!(prop_str(&p, "published").as_deref(), Some("true"));
        // A list is not text; a caller that wants it asks prop_list.
        assert_eq!(prop_str(&p, "columns"), None);
    }

    #[test]
    fn prop_list_reads_a_json_list_or_a_comma_string() {
        let p = props(&[
            ("columns", json!(["Invoice", "Days", 3])),
            ("legacy", json!("a, b ,c")),
        ]);
        assert_eq!(prop_list(&p, "columns"), vec!["Invoice", "Days", "3"]);
        assert_eq!(prop_list(&p, "legacy"), vec!["a", "b", "c"]);
        assert!(prop_list(&p, "missing").is_empty());
    }

    #[test]
    fn prop_bool_accepts_both_wire_forms() {
        let p = props(&[
            ("a", json!(true)),
            ("b", json!("false")),
            ("c", json!("maybe")),
        ]);
        assert_eq!(prop_bool(&p, "a"), Some(true));
        assert_eq!(prop_bool(&p, "b"), Some(false));
        assert_eq!(prop_bool(&p, "c"), None);
    }

    #[test]
    fn slot_defaults_to_main_like_the_server() {
        let panel = Panel {
            id: "x".into(),
            kind: PanelKind::Metric,
            namespace: "ns".into(),
            props: Props::new(),
            rows: vec![],
            source: None,
            fields: vec![],
            children: vec![],
            published: false,
        };
        assert_eq!(panel.slot(), "main");
        assert_eq!(panel.title(), "x");
    }
}