Skip to main content

makeover_webview/
chart.rs

1//! A run of magnitudes against one axis, rendered as bars.
2//!
3//! [`meter`](crate::meter)'s neighbour and its opposite in one respect: a meter
4//! draws one proportion and computes the width from the pair it is handed, and
5//! this draws a series and computes nothing. Both numbers reach the markup as
6//! they were given, and the division happens in CSS.
7//!
8//! # Why the arithmetic is in the stylesheet
9//!
10//! Not taste, and not an optimisation. `quasi-declare` derives a compiled
11//! template by rendering a screen with stand-in values and keeping the bytes
12//! that no request reaches; a number the description HANDS a renderer is found
13//! in that render and becomes a hole, and a number the renderer WORKS OUT from
14//! two of them is printed as its arithmetic, leaves no stand-in to find, and is
15//! baked into the template as a constant. `quasi_router::stage::number_at` says
16//! so in as many words.
17//!
18//! So a chart drawn from a width this crate computed could be described and
19//! could not be compiled, which for MNW's revenue chart is the difference
20//! between a screen on the seam and the one screen left off it.
21//! `--value` and `--most` are printed with `{}` and reach the markup as
22//! themselves, and `chart_rules` divides them where a browser can.
23//!
24//! It costs nothing and reads better: the DOM carries the two real numbers
25//! rather than a percentage with nothing behind it, which is
26//! [`makeover_layout::Chart`]'s own argument for carrying the pair.
27//!
28//! Both ride in [`VARS_ATTR`] rather than in `style`, so a page whose policy
29//! refuses style attributes still draws its bars.
30
31use crate::form::escape_into;
32use crate::{Depth, Emit, VARS_ATTR, class, depth_rule, gated, hover_condition, push_class};
33use makeover_layout::{Bar, Chart, Intent, Tone};
34use std::fmt::Write as _;
35
36/// Every class this module can put in markup.
37///
38/// [`crate::facet::FACET_CLASSES`]' obligation, and the list is what keeps the
39/// scraped vocabulary true if a rule goes away.
40pub const CHART_CLASSES: &[&str] = &[
41    "chart",
42    "chart-bars",
43    "chart-bar-col",
44    "chart-bar",
45    "chart-bar-label",
46];
47
48/// What a bar says when a pointer rests on it, or nothing.
49///
50/// The reading and the note, in that order, joined the way the description did
51/// not: [`Bar::reading`] and [`Bar::note`] arrive worded separately so a
52/// terminal at one line and a tooltip can want different sentences, which is
53/// [`crate::meter::meter_text`]'s split exactly.
54///
55/// The place on the axis is deliberately not in here. It is drawn under the bar
56/// as its own label, so repeating it in the tooltip is the readout arguing with
57/// itself.
58#[must_use]
59pub fn bar_text(bar: &Bar<'_>) -> Option<String> {
60    match (bar.reading, bar.note) {
61        (Some(reading), Some(note)) => Some(format!("{reading} / {note}")),
62        (Some(only), None) | (None, Some(only)) => Some(only.to_string()),
63        (None, None) => None,
64    }
65}
66
67/// A chart as a run of bars, written into a buffer the caller already has.
68///
69/// The bars arrive as an iterator rather than a slice so a caller holding owned
70/// bars can map them through without building a second `Vec`, which is how
71/// `quasi-webview` holds a `Vec<screen::Bar>` and this wants
72/// [`makeover_layout::Bar`].
73///
74/// An empty axis draws its container and no bars. A chart over nothing is
75/// sayable on purpose -- see [`Chart::is_empty`] -- and drawing the frame says
76/// so on screen, where dividing by the axis would put `NaN` in a length.
77pub fn chart_html_into<'a>(
78    chart: &Chart<'_>,
79    bars: impl IntoIterator<Item = Bar<'a>>,
80    opts: &Emit,
81    out: &mut String,
82) {
83    emit_chart(chart, bars, opts, out, None);
84}
85
86/// A chart, saying where each bar landed.
87///
88/// Byte-identical to [`chart_html_into`], and it appends one entry to `placed`
89/// per bar, in order: the offsets in `out` between which that bar's whole
90/// column was written. See [`crate::list::cells_html_placed`], which exists for
91/// the same reason and says it at length: a caller compiling this markup into a
92/// template has to know which bytes one bar produced, and the writer is the
93/// only source for that which cannot be wrong.
94pub fn chart_html_placed<'a>(
95    chart: &Chart<'_>,
96    bars: impl IntoIterator<Item = Bar<'a>>,
97    opts: &Emit,
98    out: &mut String,
99    placed: &mut Vec<core::ops::Range<usize>>,
100) {
101    emit_chart(chart, bars, opts, out, Some(placed));
102}
103
104fn emit_chart<'a>(
105    chart: &Chart<'_>,
106    bars: impl IntoIterator<Item = Bar<'a>>,
107    opts: &Emit,
108    out: &mut String,
109    mut placed: Option<&mut Vec<core::ops::Range<usize>>>,
110) {
111    out.push_str("<div class=\"");
112    push_class(out, "chart", opts);
113    out.push('"');
114    // The axis, once, on the container the bars read it from. Stated here and
115    // not per bar because it is one fact about the chart, and a fact repeated
116    // per bar is one the copies can disagree about.
117    let _ = write!(out, " {VARS_ATTR}=\"--most: {}\"", chart.most);
118    if chart.tone != Tone::Neutral {
119        let _ = write!(out, " data-tone=\"{}\"", chart.tone.token());
120    }
121    // `role="img"` only where there is a name for it. The role tells a screen
122    // reader to announce this as one thing instead of reading the bars, and an
123    // unnamed one announces nothing at all -- worse than the group of labelled
124    // readouts the markup already is. So the role and the name arrive together
125    // or neither does, and a description that wants the chart announced says
126    // what the magnitudes are.
127    if let Some(label) = chart.label {
128        out.push_str(" role=\"img\" aria-label=\"");
129        escape_into(label, out);
130        out.push('"');
131    }
132    out.push('>');
133
134    out.push_str("<div class=\"");
135    push_class(out, "chart-bars", opts);
136    out.push_str("\">");
137
138    for bar in bars {
139        let at = out.len();
140        bar_html_into(&bar, opts, out);
141        if let Some(placed) = placed.as_deref_mut() {
142            placed.push(at..out.len());
143        }
144    }
145
146    out.push_str("</div></div>");
147}
148
149/// One bar and its label.
150///
151/// Split out because the loop over bars is the loop a compiled template holds,
152/// so what one pass emits is worth being able to read on its own.
153fn bar_html_into(bar: &Bar<'_>, opts: &Emit, out: &mut String) {
154    out.push_str("<div class=\"");
155    push_class(out, "chart-bar-col", opts);
156    out.push('"');
157    if let Some(text) = bar_text(bar) {
158        out.push_str(" data-tooltip=\"");
159        escape_into(&text, out);
160        out.push('"');
161    }
162    out.push('>');
163
164    out.push_str("<div class=\"");
165    push_class(out, "chart-bar", opts);
166    // The magnitude as it was handed over. See the module header for why this
167    // is not a width.
168    let _ = write!(out, "\" {VARS_ATTR}=\"--value: {}\"></div>", bar.value);
169
170    out.push_str("<div class=\"");
171    push_class(out, "chart-bar-label", opts);
172    out.push_str("\">");
173    escape_into(bar.at, out);
174    out.push_str("</div></div>");
175}
176
177/// A chart as a returned string.
178#[must_use]
179pub fn chart_html<'a>(
180    chart: &Chart<'_>,
181    bars: impl IntoIterator<Item = Bar<'a>>,
182    opts: &Emit,
183) -> String {
184    let mut html = String::new();
185    chart_html_into(chart, bars, opts, &mut html);
186    html
187}
188
189/// What a chart looks like.
190///
191/// # What is emitted and what is deferred
192///
193/// `progress_rules`' rule, applied: the tones are emitted and the sizes are
194/// not. This crate names no magnitude -- that is `makeover-geometry`'s -- so
195/// every length here is a custom property with a default an adopter overrides
196/// once, exactly as `--awaiting-bar` is. How tall a chart stands is the app's:
197/// MNW's revenue chart is 200px and a sparkline beside a figure is 24px.
198///
199/// The height of a BAR is the one length that has to be here, and it is not a
200/// magnitude: it is the two numbers the markup carries, divided. That division
201/// is the half of the contract the markup cannot state on its own.
202///
203/// `max(var(--most), 1)` rather than a guard: an axis of zero is sayable, and
204/// dividing by it makes the whole declaration invalid at computed-value time,
205/// which drops the height to `auto` -- in a flex column, a bar of full height.
206/// Clamping the divisor draws every bar at nothing, which is what an empty axis
207/// means.
208fn chart_rules(opts: &Emit) -> String {
209    let chart = class("chart", opts);
210    let bars = class("chart-bars", opts);
211    let col = class("chart-bar-col", opts);
212    let bar = class("chart-bar", opts);
213    let label = class("chart-bar-label", opts);
214
215    let mut css = depth_rule(&chart, Depth::Well);
216
217    let _ = writeln!(
218        css,
219        ".{bars} {{\n    display: flex;\n    align-items: flex-end;\n    \
220         gap: var(--chart-gap, 2px);\n    height: var(--chart-height, 200px);\n}}"
221    );
222    let _ = writeln!(
223        css,
224        ".{col} {{\n    flex: 1;\n    display: flex;\n    flex-direction: column;\n    \
225         align-items: center;\n    min-width: 0;\n    position: relative;\n}}"
226    );
227    let _ = writeln!(
228        css,
229        ".{bar} {{\n    width: 100%;\n    background: var(--action);\n    \
230         min-height: var(--chart-bar-least, 2px);\n    \
231         height: calc(var(--value, 0) * 100% / max(var(--most, 1), 1));\n}}"
232    );
233    // A chart can be saying something, the same way a bar can. `progress_rules`
234    // emits the tones for that reason and this follows it.
235    for tone in [Tone::Info, Tone::Success, Tone::Warning, Tone::Danger] {
236        let _ = writeln!(
237            css,
238            ".{chart}[data-tone=\"{0}\"] .{bar} {{\n    background: var(--{0});\n}}",
239            tone.token()
240        );
241    }
242    let _ = writeln!(
243        css,
244        ".{label} {{\n    color: var(--content-muted);\n    max-width: 100%;\n    \
245         white-space: nowrap;\n    overflow: hidden;\n    text-overflow: ellipsis;\n}}"
246    );
247
248    // The readout, revealed from the attribute the markup already carries.
249    //
250    // Gated, because it is a hover state and this crate asks
251    // `makeover-touch` whether a hover state exists rather than assuming one.
252    // Keyed on the attribute rather than on a class, so a bar with nothing to
253    // say reveals no empty bubble.
254    //
255    // Centred with `inset-inline: 0` and an auto margin rather than with a
256    // half-width translate: the translate is the idiom and it names a
257    // magnitude, and this does the same job with three keywords.
258    css.push_str(&gated(
259        hover_condition(),
260        &format!(
261            ".{col}[data-tooltip]:hover::before {{\n    content: attr(data-tooltip);\n    \
262             position: absolute;\n    bottom: 100%;\n    inset-inline: 0;\n    \
263             margin-inline: auto;\n    width: max-content;\n    \
264             background: var(--surface-raised);\n    color: var(--content);\n    \
265             border: var(--border);\n    box-shadow: var(--elevation-overlay);\n    \
266             padding: var(--chart-readout-padding, 0.25em 0.5em);\n    \
267             white-space: nowrap;\n    pointer-events: none;\n}}\n"
268        ),
269    ));
270    css
271}
272
273/// The rules, for the stylesheet builder.
274#[must_use]
275pub fn rules(opts: &Emit) -> String {
276    chart_rules(opts)
277}
278
279#[cfg(test)]
280mod tests {
281    use super::*;
282
283    fn axis() -> Chart<'static> {
284        Chart::new(6740).label("revenue")
285    }
286
287    /// The two numbers reach the markup as themselves. This is the whole reason
288    /// the member is shaped the way it is, so it is asserted rather than
289    /// assumed: a width computed here would compile into a template as a
290    /// constant and serve one request's chart to everybody.
291    #[test]
292    fn both_numbers_are_printed_and_neither_is_divided() {
293        let html = chart_html(
294            &axis(),
295            [Bar::at("Mar 3").of(4210).reading("$42.10").note("3 sales")],
296            &Emit::default(),
297        );
298        assert!(html.contains("--most: 6740"), "{html}");
299        assert!(html.contains("--value: 4210"), "{html}");
300        assert!(
301            !html.contains('%'),
302            "a percentage reached the markup: {html}"
303        );
304    }
305
306    /// The role and the name arrive together or neither does. An unnamed
307    /// `role="img"` announces nothing, which is worse than the labelled
308    /// readouts the markup already is.
309    #[test]
310    fn an_unlabelled_chart_claims_no_role() {
311        let named = chart_html(&axis(), [Bar::at("Mar 3").of(1)], &Emit::default());
312        assert!(
313            named.contains(r#"role="img" aria-label="revenue""#),
314            "{named}"
315        );
316
317        let bare = chart_html(&Chart::new(10), [Bar::at("Mar 3").of(1)], &Emit::default());
318        assert!(!bare.contains("role="), "{bare}");
319        assert!(!bare.contains("aria-label"), "{bare}");
320    }
321
322    /// A bar says both facts or the one it has, and a bar with neither draws no
323    /// tooltip rather than an empty one.
324    #[test]
325    fn a_readout_is_what_the_bar_was_given() {
326        assert_eq!(
327            bar_text(&Bar::at("a").of(1).reading("$1").note("2 sales")),
328            Some("$1 / 2 sales".to_string())
329        );
330        assert_eq!(
331            bar_text(&Bar::at("a").of(1).reading("$1")),
332            Some("$1".to_string())
333        );
334        assert_eq!(
335            bar_text(&Bar::at("a").of(1).note("2 sales")),
336            Some("2 sales".to_string())
337        );
338        assert_eq!(bar_text(&Bar::at("a").of(1)), None);
339
340        let bare = chart_html(&axis(), [Bar::at("Mar 3").of(1)], &Emit::default());
341        assert!(!bare.contains("data-tooltip"), "{bare}");
342    }
343
344    /// Everything a request brings goes through the escaper, in the text and in
345    /// the attribute. A label reaching a chart from a database is why.
346    #[test]
347    fn a_label_and_a_readout_are_escaped() {
348        let html = chart_html(
349            &Chart::new(10).label("a & b"),
350            [Bar::at("<script>").of(5).reading("\"x\"")],
351            &Emit::default(),
352        );
353        assert!(!html.contains("<script>"), "{html}");
354        assert!(html.contains("&lt;script&gt;"), "{html}");
355        assert!(html.contains("a &amp; b"), "{html}");
356        assert!(html.contains("&quot;x&quot;"), "{html}");
357    }
358
359    /// No style attribute, because a `style-src` without `'unsafe-inline'`
360    /// refuses every one and a chart under it drew flat.
361    #[test]
362    fn the_numbers_ride_in_the_vars_attribute_and_not_in_style() {
363        let html = chart_html(&axis(), [Bar::at("Mar 3").of(4210)], &Emit::default());
364        assert!(!html.contains("style="), "{html}");
365        assert!(html.contains(r#"data-vars="--most: 6740""#), "{html}");
366        assert!(html.contains(r#"data-vars="--value: 4210""#), "{html}");
367    }
368
369    /// An axis of zero draws its frame and its bars, and the stylesheet is what
370    /// keeps them at nothing. Drawing no frame would be a screen that says
371    /// nothing where it has nothing, which is the empty state's job and not
372    /// this one's.
373    #[test]
374    fn an_empty_axis_draws_rather_than_dividing() {
375        let html = chart_html(&Chart::new(0), [Bar::at("Mar 3").of(0)], &Emit::default());
376        assert!(html.contains("--most: 0"), "{html}");
377        assert!(html.contains("--value: 0"), "{html}");
378    }
379
380    /// The streamed form and the returned one are the same bytes, which is the
381    /// obligation every other emitter here carries.
382    #[test]
383    fn the_streamed_form_is_the_returned_one() {
384        let opts = Emit {
385            class_prefix: "mk-",
386            ..Emit::default()
387        };
388        let bars = [Bar::at("Mar 3").of(4210).reading("$42.10")];
389        let mut streamed = String::new();
390        chart_html_into(&axis(), bars, &opts, &mut streamed);
391        assert_eq!(streamed, chart_html(&axis(), bars, &opts));
392    }
393
394    /// Every class the emitter can write carries a rule, which is what
395    /// `CHART_CLASSES` exists to keep true.
396    #[test]
397    fn every_class_this_module_writes_has_a_rule() {
398        let css = chart_rules(&Emit::default());
399        for name in CHART_CLASSES {
400            assert!(css.contains(&format!(".{name}")), "{name} has no rule");
401        }
402    }
403}