Skip to main content

makeover_layout/
column.rs

1// Names this module's prose links to, resolved for rustdoc.
2#[allow(unused_imports)]
3use crate::{Field, FieldKind, Fill, Region, RowPart};
4
5/// How much room a placement asks for.
6///
7/// A column says it, and so does a [`Field`]. An intent, so the actual floor
8/// stays with `makeover-geometry`. goingson's task table spells these as
9/// `minmax(200px, 1fr)`, `140px` and content-sized; only the first three words
10/// of that survive deferral.
11/// `#[non_exhaustive]`, for the reason [`Fill`] and [`FieldKind`] are: a
12/// renderer matches on this and a vocabulary that grows must not break every
13/// renderer when it does.
14#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
15#[non_exhaustive]
16pub enum Width {
17    /// Takes what it needs and no more.
18    Content,
19    /// A fixed share, the same at every width.
20    Fixed,
21    /// Absorbs whatever is left over.
22    ///
23    /// **Several fills divide what is left equally.** Stated because it would
24    /// otherwise be undefined and each renderer would invent something, and
25    /// stated this way because equal division is the only sharing rule that
26    /// answers to "Any width, one answer" without a tiebreak: allocating in
27    /// declaration order makes the result depend on the order the description
28    /// was written in, which is a fact about the source file and not about the
29    /// screen. It documents what both renderers already do — CSS grid gives
30    /// `1fr 1fr`, ratatui gives each a `Constraint::Fill(1)` — rather than
31    /// changing anything.
32    ///
33    /// So a row of fills is a legal thing to describe, and there is no rule
34    /// against it.
35    Fill,
36}
37
38/// What a member is worth when there is not room for all of them.
39///
40/// Written for table columns and no longer only theirs. Three shapes ask the
41/// same question and this answers all three: a table too narrow for its
42/// columns, a row too narrow for its parts (see [`RowPart::priority`]), and a
43/// group of regions sharing one run of room -- goingson's tab strip and the
44/// [`Region::Band`] beside it, which is the case wiki `layout-room-and-fallback`
45/// was ruled on. It is what any member of a group is worth, not a table
46/// concept, and [`Fallback::Shed`] is what reads it.
47///
48/// The doc below is the column argument, which is where the type was measured;
49/// the sentence that gave it away is [`Priority::Essential`]'s, which was
50/// already written about a row.
51///
52/// Ordered: [`Priority::Optional`] drops first, [`Priority::Essential`] never
53/// drops. This replaces addressing columns by position, which is what both
54/// webview apps do today and is a live bug rather than only verbosity. goingson
55/// hides mobile columns with `nth-child(n+5)` against a seven-column table, so
56/// inserting a column silently hides the wrong one.
57/// `#[non_exhaustive]`, same reasoning as [`Width`]. Note the ordering is the
58/// whole point of the type, so a new tier has to be declared in its place in
59/// the sequence rather than appended.
60#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
61#[non_exhaustive]
62pub enum Priority {
63    /// Dropped first.
64    Optional,
65    /// Dropped once the optional members are gone.
66    Secondary,
67    /// Never dropped. Without it the group does not identify itself.
68    Essential,
69}
70
71/// What a group does when it runs out of room.
72///
73/// Authored, and required: the field carrying this has no `Default` and a group
74/// cannot be described without saying what it does when it runs out of room.
75/// Max ruled on that: more intentionality from layout designers is
76/// acceptable so long as the constraints are solvable, because the goal is
77/// enabling good layouts rather than rescuing bad ones. A default here would be
78/// the crate guessing, and the guess would be silently wrong on the screens
79/// that matter.
80///
81/// Relief resolves inside-out. A group asks its children to fall back before
82/// falling back itself, or an outer group collapses while an inner one still
83/// had slack.
84///
85/// # No `Swap`
86///
87/// An authored alternate group for the tight case is deliberately out of the
88/// first cut. It doubles the description for that group and the two halves can
89/// drift, which is the failure this vocabulary exists to end. Add it when a
90/// site proves it needs one.
91///
92/// `#[non_exhaustive]`, [`Width`]'s reasoning. Unlike [`Priority`] there is no
93/// order to preserve, so a member can be appended.
94#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
95#[non_exhaustive]
96pub enum Fallback {
97    /// One row becomes two. Every member stays, in the order described.
98    Wrap,
99    /// A row becomes a column. Every member stays, full width.
100    Stack,
101    /// Members drop by [`Priority`], down to [`Priority::Essential`].
102    ///
103    /// What a narrow table already does with its columns, applied to a group.
104    /// What drops is gone from the screen, so this is right when the dropped
105    /// members are facts the reader can do without and wrong when they are the
106    /// only way to act.
107    Shed,
108    /// The members [`Shed`](Self::Shed) would drop move into one overflow
109    /// control instead.
110    ///
111    /// The answer when a group holds actions. A control is not a fact: dropping
112    /// it does not cost the reader a detail, it costs them the only way to act,
113    /// which is [`RowPart::priority`]'s argument one level up.
114    Menu,
115}
116
117/// One column of a table.
118///
119/// Described once. The grid track, the cell order and the drop behaviour are
120/// all derived from this, rather than being three hand-written encodings that
121/// must agree and are never checked against each other.
122#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
123pub struct Column<'a> {
124    /// The heading, and the name the cell is addressed by.
125    pub name: &'a str,
126    /// How much room it asks for.
127    pub width: Width,
128    /// What it is worth when room runs out.
129    pub priority: Priority,
130    /// What the column holds, which is what carries its look.
131    pub kind: ColumnKind,
132    /// Whether the user can reorder the table by this column.
133    ///
134    /// What reordering *calls* is not here — that is an address, and this
135    /// crate names none — so a host pairs this with the route the way it pairs
136    /// a row's parts with the row's activation. This says the affordance
137    /// exists, which is what a renderer needs to draw a header a user can
138    /// press rather than a heading they cannot.
139    pub sortable: bool,
140    /// Which way the table is ordered by this column, if it is.
141    ///
142    /// `None` on every column but the one in force. A renderer draws the caret
143    /// from this and a webview sets `aria-sort`, which is why it is per column
144    /// rather than a single fact on the table: the host idiom is a property of
145    /// the header cell.
146    ///
147    /// Independent of [`sortable`](Self::sortable) rather than implied by it,
148    /// because both combinations mean something. A column sorted and not
149    /// sortable is a list ordered by a key the user cannot change, which is a
150    /// real thing to describe and a caret worth drawing.
151    pub sorted: Option<Sort>,
152}
153
154/// What a column holds.
155///
156/// wiki `table-model`: the kind is what carries a column's look, and four of
157/// the reference table's six rules were per kind rather than per table. A
158/// description states what the column is; each renderer decides what that
159/// looks like in its host, from the facts below rather than from the name.
160///
161/// `#[non_exhaustive]`, [`Width`]'s reasoning.
162#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
163#[non_exhaustive]
164pub enum ColumnKind {
165    /// Prose. Wraps. What a column is when it says nothing else.
166    #[default]
167    Text,
168    /// A name a machine made: a fingerprint, a hash, a slug. Monospace, and
169    /// breaks mid-string rather than widening the table.
170    Identifier,
171    /// A point in time. Never wraps, so a date cannot print over its
172    /// neighbour, and its figures line up down the column.
173    Date,
174    /// A quantity. Figures line up and the column aligns to its end, so
175    /// magnitudes compare by length.
176    Number,
177    /// Source text, one row per line. Monospace and never wrapped. A table
178    /// holding one is read as code, so its rows are not striped or spaced as
179    /// records.
180    Code,
181    /// A state the row is in, drawn as a chip rather than as coloured text.
182    Status,
183    /// The row's controls. Aligns to its end and shrinks to what it holds.
184    Actions,
185}
186
187impl ColumnKind {
188    /// Whether the column aligns to its end rather than its start.
189    #[must_use]
190    pub const fn aligns_end(self) -> bool {
191        matches!(self, Self::Number | Self::Actions)
192    }
193
194    /// Whether the column's text may wrap onto a second line.
195    ///
196    /// An identifier wraps by breaking mid-string, which is still a wrap: the
197    /// alternative is a fingerprint forcing the table wider than its pane.
198    #[must_use]
199    pub const fn wraps(self) -> bool {
200        matches!(self, Self::Text | Self::Identifier)
201    }
202
203    /// Whether the column is set in the monospace face.
204    #[must_use]
205    pub const fn monospace(self) -> bool {
206        matches!(self, Self::Identifier | Self::Code)
207    }
208
209    /// Whether figures in the column take equal widths.
210    #[must_use]
211    pub const fn tabular(self) -> bool {
212        matches!(self, Self::Date | Self::Number)
213    }
214}
215
216/// Which way a column is ordered.
217///
218/// Two, because there is no third. "Unsorted" is [`Column::sorted`] being
219/// `None`, and folding it in here would be the same absence said twice.
220#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
221pub enum Sort {
222    /// Smallest, earliest or first alphabetically at the top.
223    Ascending,
224    /// The other way.
225    Descending,
226}
227
228impl Sort {
229    /// The other direction, for a header that flips when pressed.
230    #[must_use]
231    pub const fn reversed(self) -> Self {
232        match self {
233            Self::Ascending => Self::Descending,
234            Self::Descending => Self::Ascending,
235        }
236    }
237
238    /// What a webview writes into `aria-sort`.
239    ///
240    /// Named here rather than in the webview renderer because a terminal and an
241    /// immediate-mode painter both want the same two words for a caret's label,
242    /// and three renderers picking their own is the drift this crate ends.
243    #[must_use]
244    pub const fn as_str(self) -> &'static str {
245        match self {
246            Self::Ascending => "ascending",
247            Self::Descending => "descending",
248        }
249    }
250
251    /// The caret a renderer draws for this direction.
252    ///
253    /// Here for [`as_str`](Self::as_str)'s reason, said about a glyph rather
254    /// than a word: three renderers picking their own is the drift this crate
255    /// ends. They had picked their own — two on the solid triangles and
256    /// `makeover-webview` on the arrows U+2191/U+2193 — and agreeing by
257    /// coincidence in three files is not agreement.
258    ///
259    /// The reason generalizes past this pair and is the house rule now —
260    /// prefer the bolder, simpler glyph over the thinner or more complicated
261    /// one. A third spelling is not open for re-argument.
262    ///
263    /// **Bare, with no spacing.** Where the gap goes is each renderer's
264    /// business: `makeover-tui` and `makeover-immediate` carry a leading space
265    /// inside their `TableStyle` string and a webview emits its own in
266    /// `content`, so folding a space in here would make one of the two wrong.
267    ///
268    /// Neither face the web apps self-host carries these — IBM Plex Mono has one
269    /// glyph in the whole geometric-shapes block and Lato has none — so a
270    /// browser falls back per glyph until the in-house face ships with them
271    /// drawn in (wiki `typography-standard`). Cosmetic
272    /// drift in one renderer, not a reason to spell it three ways.
273    #[must_use]
274    pub const fn glyph(self) -> &'static str {
275        match self {
276            Self::Ascending => "\u{25B2}",
277            Self::Descending => "\u{25BC}",
278        }
279    }
280}
281
282impl<'a> Column<'a> {
283    /// A column that absorbs slack and drops after the optional ones.
284    #[must_use]
285    pub const fn new(name: &'a str) -> Self {
286        Self {
287            name,
288            width: Width::Fill,
289            priority: Priority::Secondary,
290            kind: ColumnKind::Text,
291            sortable: false,
292            sorted: None,
293        }
294    }
295
296    /// Whether this column survives at the given cutoff.
297    ///
298    /// A renderer narrows by raising the cutoff, and never by counting
299    /// positions.
300    #[must_use]
301    pub const fn kept_at(&self, cutoff: Priority) -> bool {
302        (self.priority as u8) >= (cutoff as u8)
303    }
304}
305
306/// What a table cell holds.
307///
308/// [`RowPart`] for tables, and it exists for the same reason: a part that
309/// carries a control is not text, and a renderer with one class for the whole
310/// cell paints it as though it were: a button in a cell inherits the cell's
311/// content colour, which is the drift [`RowPart::intent`] prevents for rows.
312///
313/// Four members, and the count is what quasi's `Cell` was measured to carry: a
314/// value, tokens, actions and a link. Nothing was added past what something
315/// holds.
316///
317/// `#[non_exhaustive]` for [`RowPart`]'s reason: growth here must not be a
318/// lockstep event across three renderers.
319///
320/// # No hover-reveal
321///
322/// This enum never gets one. A cell's actions are shown at rest in every
323/// consumer measured, and a member nothing uses is one three renderers owe an
324/// answer for.
325#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
326#[non_exhaustive]
327pub enum CellPart {
328    /// The cell's own text.
329    Value,
330    /// Small labelled things in the cell: a status badge, a chip.
331    Tokens,
332    /// Controls that act on what the row is about.
333    Actions,
334    /// The cell's value, where the value is itself a link.
335    Link,
336}
337
338impl CellPart {
339    /// The content intent the part takes.
340    ///
341    /// One part is text and three are not, so three answer with the intent
342    /// inheriting already gives. That is [`RowPart::intent`]'s shape with the
343    /// text side narrower: a cell's secondary and muted readings are the
344    /// column's business, not the cell's.
345    #[must_use]
346    pub const fn intent(self) -> &'static str {
347        match self {
348            Self::Value => "content",
349            // A token carries its own tone, and a part-level intent underneath
350            // it would fight the token sitting on it.
351            Self::Tokens => "content",
352            // Actions carry controls rather than text.
353            Self::Actions => "content",
354            // A link in a cell is its row's title, so it reads in the ink the
355            // values beside it do.
356            Self::Link => "content",
357        }
358    }
359}