Skip to main content

Column

Struct Column 

Source
pub struct Column { /* private fields */ }
Expand description

One column of a table.

Implementations§

Source§

impl Column

Source

pub fn string(field: impl Into<String>, label: impl Into<String>) -> Self

Examples found in repository?
examples/library/main.rs (line 167)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
247
248    fn validate(&self, rows: &[Book], ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
249        let genres = Self::genres(ctx)?;
250        let branches = Self::branches(ctx)?;
251        let mut errors = Vec::new();
252
253        for (idx, row) in rows.iter().enumerate() {
254            let line = idx + 1;
255            if row.title.trim().is_empty() {
256                errors.push(ValidationError::field(
257                    line,
258                    "title",
259                    "a book needs a title",
260                ));
261            }
262
263            // A subgenre stands or falls with the genre it was chosen under.
264            if !genres.is_empty() && !row.subgenre.is_empty() {
265                let known = genres
266                    .iter()
267                    .any(|g| g.genre == row.genre && g.subgenre == row.subgenre);
268                if !known {
269                    errors.push(ValidationError::field(
270                        line,
271                        "subgenre",
272                        format!("not a subgenre of {}", row.genre),
273                    ));
274                }
275            }
276
277            if !branches.is_empty() {
278                for branch in row.shelved.keys() {
279                    if !branches.iter().any(|b| b.code == *branch) {
280                        errors.push(ValidationError::field(
281                            line,
282                            "shelved",
283                            format!("no branch has the code {branch}"),
284                        ));
285                    }
286                }
287            }
288        }
289
290        Ok(errors)
291    }
292
293    fn derive(&self, rows: &[Book], _ctx: &Context) -> Result<Vec<Value>, ApiError> {
294        Ok(rows
295            .iter()
296            .map(|row| json!({ "shelf": Self::shelf_mark(row) }))
297            .collect())
298    }
299
300    fn siblings(&self, ctx: &Context) -> Result<Value, ApiError> {
301        Ok(json!({ "genres": Self::genres(ctx)? }))
302    }
303}
304
305// ── Genres ──────────────────────────────────────────────────────────────────
306
307struct Genres;
308
309impl TableLogic for Genres {
310    type Row = Genre;
311
312    fn name(&self) -> &'static str {
313        "genres"
314    }
315
316    fn file(&self) -> &'static str {
317        GENRES_FILE
318    }
319
320    fn title(&self) -> &'static str {
321        "Genres"
322    }
323
324    fn schema(&self, _ctx: &Context) -> Result<Schema, ApiError> {
325        Ok(Schema::new([
326            Column::string("genre", "Genre").width_ch(18),
327            Column::string("subgenre", "Subgenre").width_ch(22),
328        ])
329        .sortable()
330        .new_row(
331            NewRow::new()
332                .with("genre", "")
333                .with("subgenre", "")
334                .carry_forward(["genre"]),
335        ))
336    }
337
338    fn validate(&self, rows: &[Genre], _ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
339        let mut errors = Vec::new();
340        for (idx, row) in rows.iter().enumerate() {
341            if row.genre.trim().is_empty() {
342                errors.push(ValidationError::field(
343                    idx + 1,
344                    "genre",
345                    "a genre is needed",
346                ));
347            }
348            if row.subgenre.trim().is_empty() {
349                errors.push(ValidationError::field(
350                    idx + 1,
351                    "subgenre",
352                    "a subgenre is needed",
353                ));
354            }
355        }
356        Ok(errors)
357    }
358}
359
360// ── Branches ────────────────────────────────────────────────────────────────
361
362struct Branches;
363
364impl TableLogic for Branches {
365    type Row = Branch;
366
367    fn name(&self) -> &'static str {
368        "branches"
369    }
370
371    fn file(&self) -> &'static str {
372        BRANCHES_FILE
373    }
374
375    fn title(&self) -> &'static str {
376        "Branches"
377    }
378
379    fn schema(&self, _ctx: &Context) -> Result<Schema, ApiError> {
380        // Row order here is the order the branches are listed in, which is a
381        // choice the table makes, so this table is not sortable and rows are
382        // dragged into place instead.
383        Ok(Schema::new([
384            Column::string("code", "Code").width_ch(3),
385            Column::string("name", "Name").width_ch(22),
386            Column::string("librarian_first", "Librarian").width_ch(8),
387            Column::string("librarian_last", "Surname")
388                .width_ch(8)
389                .datalist("librarian-names"),
390            Column::number("staff", "Staff").int_only().width_ch(2),
391            Column::boolean("open", "Open"),
392            Column::map(
393                "hours",
394                "Hours",
395                MapSpec::new("Day", "Hours")
396                    .key_options(["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"])
397                    .value_options([
398                        SelectOption::new("09:00-17:00"),
399                        SelectOption::new("12:00-20:00"),
400                    ])
401                    .allow_new_keys()
402                    .allow_new_values(),
403            ),
404        ])
405        .datalist(
406            "librarian-names",
407            Datalist::from_rows(["librarian_last"], " "),
408        )
409        .new_row(
410            NewRow::new()
411                .with("code", "")
412                .with("name", "")
413                .with("librarian_first", "")
414                .with("librarian_last", ""),
415        ))
416    }
417
418    fn validate(&self, rows: &[Branch], _ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
419        let mut errors = Vec::new();
420        for (idx, row) in rows.iter().enumerate() {
421            if row.code.trim().is_empty() {
422                errors.push(ValidationError::field(
423                    idx + 1,
424                    "code",
425                    "a branch needs a code",
426                ));
427            }
428        }
429        Ok(errors)
430    }
431}
432
433// ── The On loan view ────────────────────────────────────────────────────────
434
435/// What is out on loan from one branch, in two sections: the books still
436/// within their time, and the ones past it.
437///
438/// A view computes its rows rather than storing them, so nothing here is in a
439/// file: the counts, the days, and which section a book falls into are worked
440/// out per request from the tables the example already ships. The due dates
441/// are fixed in the data, so as real time passes more of them fall overdue,
442/// which is what an example of an overdue list should do.
443struct OnLoan;
444
445/// Days since 1970-01-01 for a `YYYY-MM-DD` date, or nothing for text that is
446/// not one. Howard Hinnant's civil-days algorithm, which needs no calendar
447/// library and no dependency.
448fn days_from_civil(date: &str) -> Option<i64> {
449    let mut parts = date.split('-');
450    let y: i64 = parts.next()?.parse().ok()?;
451    let m: i64 = parts.next()?.parse().ok()?;
452    let d: i64 = parts.next()?.parse().ok()?;
453    if parts.next().is_some() || !(1..=12).contains(&m) || !(1..=31).contains(&d) {
454        return None;
455    }
456
457    let y = if m <= 2 { y - 1 } else { y };
458    let era = if y >= 0 { y } else { y - 399 } / 400;
459    let yoe = y - era * 400;
460    let mp = (m + 9) % 12;
461    let doy = (153 * mp + 2) / 5 + d - 1;
462    let doe = yoe * 365 + yoe / 4 - yoe / 100 + doy;
463    Some(era * 146_097 + doe - 719_468)
464}
465
466/// The `YYYY-MM-DD` date `days` days after 1970-01-01, which is the inverse of
467/// `days_from_civil` and the other half of the same algorithm.
468fn civil_from_days(days: i64) -> String {
469    let z = days + 719_468;
470    let era = if z >= 0 { z } else { z - 146_096 } / 146_097;
471    let doe = z - era * 146_097;
472    let yoe = (doe - doe / 1460 + doe / 36_524 - doe / 146_096) / 365;
473    let doy = doe - (365 * yoe + yoe / 4 - yoe / 100);
474    let mp = (5 * doy + 2) / 153;
475    let d = doy - (153 * mp + 2) / 5 + 1;
476    let m = if mp < 10 { mp + 3 } else { mp - 9 };
477    let y = yoe + era * 400 + i64::from(m <= 2);
478    format!("{y:04}-{m:02}-{d:02}")
479}
480
481fn today() -> i64 {
482    let seconds = std::time::SystemTime::now()
483        .duration_since(std::time::UNIX_EPOCH)
484        .map(|d| d.as_secs() as i64)
485        .unwrap_or(0);
486    seconds / 86_400
487}
488
489impl OnLoan {
490    fn branches(ctx: &Context) -> Result<Vec<Branch>, ApiError> {
491        ctx.optional_rows(BRANCHES_FILE)
492    }
493
494    /// The columns both sections show. They are the same in each, so the two
495    /// line up; a section that wanted a column of its own would say so here.
496    fn columns() -> Vec<Column> {
497        vec![
498            Column::string("title", "Title").width_ch(30).href("link"),
499            Column::string("author", "Author").width_ch(18),
500            Column::string("due", "Due").width_ch(10),
501            Column::number("days", "Days").width_ch(4),
502        ]
503    }
Source

pub fn text(field: impl Into<String>, label: impl Into<String>) -> Self

Examples found in repository?
examples/library/main.rs (line 221)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
Source

pub fn spaced_string(field: impl Into<String>, label: impl Into<String>) -> Self

Examples found in repository?
examples/library/main.rs (line 199)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
Source

pub fn number(field: impl Into<String>, label: impl Into<String>) -> Self

Examples found in repository?
examples/library/main.rs (line 189)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
247
248    fn validate(&self, rows: &[Book], ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
249        let genres = Self::genres(ctx)?;
250        let branches = Self::branches(ctx)?;
251        let mut errors = Vec::new();
252
253        for (idx, row) in rows.iter().enumerate() {
254            let line = idx + 1;
255            if row.title.trim().is_empty() {
256                errors.push(ValidationError::field(
257                    line,
258                    "title",
259                    "a book needs a title",
260                ));
261            }
262
263            // A subgenre stands or falls with the genre it was chosen under.
264            if !genres.is_empty() && !row.subgenre.is_empty() {
265                let known = genres
266                    .iter()
267                    .any(|g| g.genre == row.genre && g.subgenre == row.subgenre);
268                if !known {
269                    errors.push(ValidationError::field(
270                        line,
271                        "subgenre",
272                        format!("not a subgenre of {}", row.genre),
273                    ));
274                }
275            }
276
277            if !branches.is_empty() {
278                for branch in row.shelved.keys() {
279                    if !branches.iter().any(|b| b.code == *branch) {
280                        errors.push(ValidationError::field(
281                            line,
282                            "shelved",
283                            format!("no branch has the code {branch}"),
284                        ));
285                    }
286                }
287            }
288        }
289
290        Ok(errors)
291    }
292
293    fn derive(&self, rows: &[Book], _ctx: &Context) -> Result<Vec<Value>, ApiError> {
294        Ok(rows
295            .iter()
296            .map(|row| json!({ "shelf": Self::shelf_mark(row) }))
297            .collect())
298    }
299
300    fn siblings(&self, ctx: &Context) -> Result<Value, ApiError> {
301        Ok(json!({ "genres": Self::genres(ctx)? }))
302    }
303}
304
305// ── Genres ──────────────────────────────────────────────────────────────────
306
307struct Genres;
308
309impl TableLogic for Genres {
310    type Row = Genre;
311
312    fn name(&self) -> &'static str {
313        "genres"
314    }
315
316    fn file(&self) -> &'static str {
317        GENRES_FILE
318    }
319
320    fn title(&self) -> &'static str {
321        "Genres"
322    }
323
324    fn schema(&self, _ctx: &Context) -> Result<Schema, ApiError> {
325        Ok(Schema::new([
326            Column::string("genre", "Genre").width_ch(18),
327            Column::string("subgenre", "Subgenre").width_ch(22),
328        ])
329        .sortable()
330        .new_row(
331            NewRow::new()
332                .with("genre", "")
333                .with("subgenre", "")
334                .carry_forward(["genre"]),
335        ))
336    }
337
338    fn validate(&self, rows: &[Genre], _ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
339        let mut errors = Vec::new();
340        for (idx, row) in rows.iter().enumerate() {
341            if row.genre.trim().is_empty() {
342                errors.push(ValidationError::field(
343                    idx + 1,
344                    "genre",
345                    "a genre is needed",
346                ));
347            }
348            if row.subgenre.trim().is_empty() {
349                errors.push(ValidationError::field(
350                    idx + 1,
351                    "subgenre",
352                    "a subgenre is needed",
353                ));
354            }
355        }
356        Ok(errors)
357    }
358}
359
360// ── Branches ────────────────────────────────────────────────────────────────
361
362struct Branches;
363
364impl TableLogic for Branches {
365    type Row = Branch;
366
367    fn name(&self) -> &'static str {
368        "branches"
369    }
370
371    fn file(&self) -> &'static str {
372        BRANCHES_FILE
373    }
374
375    fn title(&self) -> &'static str {
376        "Branches"
377    }
378
379    fn schema(&self, _ctx: &Context) -> Result<Schema, ApiError> {
380        // Row order here is the order the branches are listed in, which is a
381        // choice the table makes, so this table is not sortable and rows are
382        // dragged into place instead.
383        Ok(Schema::new([
384            Column::string("code", "Code").width_ch(3),
385            Column::string("name", "Name").width_ch(22),
386            Column::string("librarian_first", "Librarian").width_ch(8),
387            Column::string("librarian_last", "Surname")
388                .width_ch(8)
389                .datalist("librarian-names"),
390            Column::number("staff", "Staff").int_only().width_ch(2),
391            Column::boolean("open", "Open"),
392            Column::map(
393                "hours",
394                "Hours",
395                MapSpec::new("Day", "Hours")
396                    .key_options(["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"])
397                    .value_options([
398                        SelectOption::new("09:00-17:00"),
399                        SelectOption::new("12:00-20:00"),
400                    ])
401                    .allow_new_keys()
402                    .allow_new_values(),
403            ),
404        ])
405        .datalist(
406            "librarian-names",
407            Datalist::from_rows(["librarian_last"], " "),
408        )
409        .new_row(
410            NewRow::new()
411                .with("code", "")
412                .with("name", "")
413                .with("librarian_first", "")
414                .with("librarian_last", ""),
415        ))
416    }
417
418    fn validate(&self, rows: &[Branch], _ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
419        let mut errors = Vec::new();
420        for (idx, row) in rows.iter().enumerate() {
421            if row.code.trim().is_empty() {
422                errors.push(ValidationError::field(
423                    idx + 1,
424                    "code",
425                    "a branch needs a code",
426                ));
427            }
428        }
429        Ok(errors)
430    }
431}
432
433// ── The On loan view ────────────────────────────────────────────────────────
434
435/// What is out on loan from one branch, in two sections: the books still
436/// within their time, and the ones past it.
437///
438/// A view computes its rows rather than storing them, so nothing here is in a
439/// file: the counts, the days, and which section a book falls into are worked
440/// out per request from the tables the example already ships. The due dates
441/// are fixed in the data, so as real time passes more of them fall overdue,
442/// which is what an example of an overdue list should do.
443struct OnLoan;
444
445/// Days since 1970-01-01 for a `YYYY-MM-DD` date, or nothing for text that is
446/// not one. Howard Hinnant's civil-days algorithm, which needs no calendar
447/// library and no dependency.
448fn days_from_civil(date: &str) -> Option<i64> {
449    let mut parts = date.split('-');
450    let y: i64 = parts.next()?.parse().ok()?;
451    let m: i64 = parts.next()?.parse().ok()?;
452    let d: i64 = parts.next()?.parse().ok()?;
453    if parts.next().is_some() || !(1..=12).contains(&m) || !(1..=31).contains(&d) {
454        return None;
455    }
456
457    let y = if m <= 2 { y - 1 } else { y };
458    let era = if y >= 0 { y } else { y - 399 } / 400;
459    let yoe = y - era * 400;
460    let mp = (m + 9) % 12;
461    let doy = (153 * mp + 2) / 5 + d - 1;
462    let doe = yoe * 365 + yoe / 4 - yoe / 100 + doy;
463    Some(era * 146_097 + doe - 719_468)
464}
465
466/// The `YYYY-MM-DD` date `days` days after 1970-01-01, which is the inverse of
467/// `days_from_civil` and the other half of the same algorithm.
468fn civil_from_days(days: i64) -> String {
469    let z = days + 719_468;
470    let era = if z >= 0 { z } else { z - 146_096 } / 146_097;
471    let doe = z - era * 146_097;
472    let yoe = (doe - doe / 1460 + doe / 36_524 - doe / 146_096) / 365;
473    let doy = doe - (365 * yoe + yoe / 4 - yoe / 100);
474    let mp = (5 * doy + 2) / 153;
475    let d = doy - (153 * mp + 2) / 5 + 1;
476    let m = if mp < 10 { mp + 3 } else { mp - 9 };
477    let y = yoe + era * 400 + i64::from(m <= 2);
478    format!("{y:04}-{m:02}-{d:02}")
479}
480
481fn today() -> i64 {
482    let seconds = std::time::SystemTime::now()
483        .duration_since(std::time::UNIX_EPOCH)
484        .map(|d| d.as_secs() as i64)
485        .unwrap_or(0);
486    seconds / 86_400
487}
488
489impl OnLoan {
490    fn branches(ctx: &Context) -> Result<Vec<Branch>, ApiError> {
491        ctx.optional_rows(BRANCHES_FILE)
492    }
493
494    /// The columns both sections show. They are the same in each, so the two
495    /// line up; a section that wanted a column of its own would say so here.
496    fn columns() -> Vec<Column> {
497        vec![
498            Column::string("title", "Title").width_ch(30).href("link"),
499            Column::string("author", "Author").width_ch(18),
500            Column::string("due", "Due").width_ch(10),
501            Column::number("days", "Days").width_ch(4),
502        ]
503    }
Source

pub fn boolean(field: impl Into<String>, label: impl Into<String>) -> Self

A true-or-false value, which a bundle also lets stand unset. See ColumnType::Boolean for what unset is written as.

Examples found in repository?
examples/library/main.rs (line 192)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
247
248    fn validate(&self, rows: &[Book], ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
249        let genres = Self::genres(ctx)?;
250        let branches = Self::branches(ctx)?;
251        let mut errors = Vec::new();
252
253        for (idx, row) in rows.iter().enumerate() {
254            let line = idx + 1;
255            if row.title.trim().is_empty() {
256                errors.push(ValidationError::field(
257                    line,
258                    "title",
259                    "a book needs a title",
260                ));
261            }
262
263            // A subgenre stands or falls with the genre it was chosen under.
264            if !genres.is_empty() && !row.subgenre.is_empty() {
265                let known = genres
266                    .iter()
267                    .any(|g| g.genre == row.genre && g.subgenre == row.subgenre);
268                if !known {
269                    errors.push(ValidationError::field(
270                        line,
271                        "subgenre",
272                        format!("not a subgenre of {}", row.genre),
273                    ));
274                }
275            }
276
277            if !branches.is_empty() {
278                for branch in row.shelved.keys() {
279                    if !branches.iter().any(|b| b.code == *branch) {
280                        errors.push(ValidationError::field(
281                            line,
282                            "shelved",
283                            format!("no branch has the code {branch}"),
284                        ));
285                    }
286                }
287            }
288        }
289
290        Ok(errors)
291    }
292
293    fn derive(&self, rows: &[Book], _ctx: &Context) -> Result<Vec<Value>, ApiError> {
294        Ok(rows
295            .iter()
296            .map(|row| json!({ "shelf": Self::shelf_mark(row) }))
297            .collect())
298    }
299
300    fn siblings(&self, ctx: &Context) -> Result<Value, ApiError> {
301        Ok(json!({ "genres": Self::genres(ctx)? }))
302    }
303}
304
305// ── Genres ──────────────────────────────────────────────────────────────────
306
307struct Genres;
308
309impl TableLogic for Genres {
310    type Row = Genre;
311
312    fn name(&self) -> &'static str {
313        "genres"
314    }
315
316    fn file(&self) -> &'static str {
317        GENRES_FILE
318    }
319
320    fn title(&self) -> &'static str {
321        "Genres"
322    }
323
324    fn schema(&self, _ctx: &Context) -> Result<Schema, ApiError> {
325        Ok(Schema::new([
326            Column::string("genre", "Genre").width_ch(18),
327            Column::string("subgenre", "Subgenre").width_ch(22),
328        ])
329        .sortable()
330        .new_row(
331            NewRow::new()
332                .with("genre", "")
333                .with("subgenre", "")
334                .carry_forward(["genre"]),
335        ))
336    }
337
338    fn validate(&self, rows: &[Genre], _ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
339        let mut errors = Vec::new();
340        for (idx, row) in rows.iter().enumerate() {
341            if row.genre.trim().is_empty() {
342                errors.push(ValidationError::field(
343                    idx + 1,
344                    "genre",
345                    "a genre is needed",
346                ));
347            }
348            if row.subgenre.trim().is_empty() {
349                errors.push(ValidationError::field(
350                    idx + 1,
351                    "subgenre",
352                    "a subgenre is needed",
353                ));
354            }
355        }
356        Ok(errors)
357    }
358}
359
360// ── Branches ────────────────────────────────────────────────────────────────
361
362struct Branches;
363
364impl TableLogic for Branches {
365    type Row = Branch;
366
367    fn name(&self) -> &'static str {
368        "branches"
369    }
370
371    fn file(&self) -> &'static str {
372        BRANCHES_FILE
373    }
374
375    fn title(&self) -> &'static str {
376        "Branches"
377    }
378
379    fn schema(&self, _ctx: &Context) -> Result<Schema, ApiError> {
380        // Row order here is the order the branches are listed in, which is a
381        // choice the table makes, so this table is not sortable and rows are
382        // dragged into place instead.
383        Ok(Schema::new([
384            Column::string("code", "Code").width_ch(3),
385            Column::string("name", "Name").width_ch(22),
386            Column::string("librarian_first", "Librarian").width_ch(8),
387            Column::string("librarian_last", "Surname")
388                .width_ch(8)
389                .datalist("librarian-names"),
390            Column::number("staff", "Staff").int_only().width_ch(2),
391            Column::boolean("open", "Open"),
392            Column::map(
393                "hours",
394                "Hours",
395                MapSpec::new("Day", "Hours")
396                    .key_options(["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"])
397                    .value_options([
398                        SelectOption::new("09:00-17:00"),
399                        SelectOption::new("12:00-20:00"),
400                    ])
401                    .allow_new_keys()
402                    .allow_new_values(),
403            ),
404        ])
405        .datalist(
406            "librarian-names",
407            Datalist::from_rows(["librarian_last"], " "),
408        )
409        .new_row(
410            NewRow::new()
411                .with("code", "")
412                .with("name", "")
413                .with("librarian_first", "")
414                .with("librarian_last", ""),
415        ))
416    }
Source

pub fn select( field: impl Into<String>, label: impl Into<String>, options: impl IntoIterator<Item = impl Into<SelectOption>>, ) -> Self

A select over a fixed list of options.

Examples found in repository?
examples/library/main.rs (line 170)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
Source

pub fn select_by( field: impl Into<String>, label: impl Into<String>, options_by: OptionsBy, ) -> Self

A select whose options depend on another column’s value.

Examples found in repository?
examples/library/main.rs (line 173)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
Source

pub fn computed( field: impl Into<String>, label: impl Into<String>, from: impl Into<String>, ) -> Self

A read-only column showing from out of each row’s derived object.

Examples found in repository?
examples/library/main.rs (line 220)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
Source

pub fn map( field: impl Into<String>, label: impl Into<String>, spec: MapSpec, ) -> Self

A key-to-value object rendered as one chip per entry.

Examples found in repository?
examples/library/main.rs (lines 206-217)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
247
248    fn validate(&self, rows: &[Book], ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
249        let genres = Self::genres(ctx)?;
250        let branches = Self::branches(ctx)?;
251        let mut errors = Vec::new();
252
253        for (idx, row) in rows.iter().enumerate() {
254            let line = idx + 1;
255            if row.title.trim().is_empty() {
256                errors.push(ValidationError::field(
257                    line,
258                    "title",
259                    "a book needs a title",
260                ));
261            }
262
263            // A subgenre stands or falls with the genre it was chosen under.
264            if !genres.is_empty() && !row.subgenre.is_empty() {
265                let known = genres
266                    .iter()
267                    .any(|g| g.genre == row.genre && g.subgenre == row.subgenre);
268                if !known {
269                    errors.push(ValidationError::field(
270                        line,
271                        "subgenre",
272                        format!("not a subgenre of {}", row.genre),
273                    ));
274                }
275            }
276
277            if !branches.is_empty() {
278                for branch in row.shelved.keys() {
279                    if !branches.iter().any(|b| b.code == *branch) {
280                        errors.push(ValidationError::field(
281                            line,
282                            "shelved",
283                            format!("no branch has the code {branch}"),
284                        ));
285                    }
286                }
287            }
288        }
289
290        Ok(errors)
291    }
292
293    fn derive(&self, rows: &[Book], _ctx: &Context) -> Result<Vec<Value>, ApiError> {
294        Ok(rows
295            .iter()
296            .map(|row| json!({ "shelf": Self::shelf_mark(row) }))
297            .collect())
298    }
299
300    fn siblings(&self, ctx: &Context) -> Result<Value, ApiError> {
301        Ok(json!({ "genres": Self::genres(ctx)? }))
302    }
303}
304
305// ── Genres ──────────────────────────────────────────────────────────────────
306
307struct Genres;
308
309impl TableLogic for Genres {
310    type Row = Genre;
311
312    fn name(&self) -> &'static str {
313        "genres"
314    }
315
316    fn file(&self) -> &'static str {
317        GENRES_FILE
318    }
319
320    fn title(&self) -> &'static str {
321        "Genres"
322    }
323
324    fn schema(&self, _ctx: &Context) -> Result<Schema, ApiError> {
325        Ok(Schema::new([
326            Column::string("genre", "Genre").width_ch(18),
327            Column::string("subgenre", "Subgenre").width_ch(22),
328        ])
329        .sortable()
330        .new_row(
331            NewRow::new()
332                .with("genre", "")
333                .with("subgenre", "")
334                .carry_forward(["genre"]),
335        ))
336    }
337
338    fn validate(&self, rows: &[Genre], _ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
339        let mut errors = Vec::new();
340        for (idx, row) in rows.iter().enumerate() {
341            if row.genre.trim().is_empty() {
342                errors.push(ValidationError::field(
343                    idx + 1,
344                    "genre",
345                    "a genre is needed",
346                ));
347            }
348            if row.subgenre.trim().is_empty() {
349                errors.push(ValidationError::field(
350                    idx + 1,
351                    "subgenre",
352                    "a subgenre is needed",
353                ));
354            }
355        }
356        Ok(errors)
357    }
358}
359
360// ── Branches ────────────────────────────────────────────────────────────────
361
362struct Branches;
363
364impl TableLogic for Branches {
365    type Row = Branch;
366
367    fn name(&self) -> &'static str {
368        "branches"
369    }
370
371    fn file(&self) -> &'static str {
372        BRANCHES_FILE
373    }
374
375    fn title(&self) -> &'static str {
376        "Branches"
377    }
378
379    fn schema(&self, _ctx: &Context) -> Result<Schema, ApiError> {
380        // Row order here is the order the branches are listed in, which is a
381        // choice the table makes, so this table is not sortable and rows are
382        // dragged into place instead.
383        Ok(Schema::new([
384            Column::string("code", "Code").width_ch(3),
385            Column::string("name", "Name").width_ch(22),
386            Column::string("librarian_first", "Librarian").width_ch(8),
387            Column::string("librarian_last", "Surname")
388                .width_ch(8)
389                .datalist("librarian-names"),
390            Column::number("staff", "Staff").int_only().width_ch(2),
391            Column::boolean("open", "Open"),
392            Column::map(
393                "hours",
394                "Hours",
395                MapSpec::new("Day", "Hours")
396                    .key_options(["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"])
397                    .value_options([
398                        SelectOption::new("09:00-17:00"),
399                        SelectOption::new("12:00-20:00"),
400                    ])
401                    .allow_new_keys()
402                    .allow_new_values(),
403            ),
404        ])
405        .datalist(
406            "librarian-names",
407            Datalist::from_rows(["librarian_last"], " "),
408        )
409        .new_row(
410            NewRow::new()
411                .with("code", "")
412                .with("name", "")
413                .with("librarian_first", "")
414                .with("librarian_last", ""),
415        ))
416    }
Source

pub fn allow_empty(self) -> Self

Offer a blank choice on a select whose value may legitimately be unset.

Examples found in repository?
examples/library/main.rs (line 171)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
Source

pub fn wide(self) -> Self

Let the column take the remaining width of the row.

Examples found in repository?
examples/library/main.rs (line 221)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
Source

pub fn numeric_value(self) -> Self

Store the chosen option’s value as a number rather than a string.

Examples found in repository?
examples/library/main.rs (line 186)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
Source

pub fn int_only(self) -> Self

Confine a number column to whole numbers: a bundle rounds what the cell is given and steps it by one.

Examples found in repository?
examples/library/main.rs (line 189)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
247
248    fn validate(&self, rows: &[Book], ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
249        let genres = Self::genres(ctx)?;
250        let branches = Self::branches(ctx)?;
251        let mut errors = Vec::new();
252
253        for (idx, row) in rows.iter().enumerate() {
254            let line = idx + 1;
255            if row.title.trim().is_empty() {
256                errors.push(ValidationError::field(
257                    line,
258                    "title",
259                    "a book needs a title",
260                ));
261            }
262
263            // A subgenre stands or falls with the genre it was chosen under.
264            if !genres.is_empty() && !row.subgenre.is_empty() {
265                let known = genres
266                    .iter()
267                    .any(|g| g.genre == row.genre && g.subgenre == row.subgenre);
268                if !known {
269                    errors.push(ValidationError::field(
270                        line,
271                        "subgenre",
272                        format!("not a subgenre of {}", row.genre),
273                    ));
274                }
275            }
276
277            if !branches.is_empty() {
278                for branch in row.shelved.keys() {
279                    if !branches.iter().any(|b| b.code == *branch) {
280                        errors.push(ValidationError::field(
281                            line,
282                            "shelved",
283                            format!("no branch has the code {branch}"),
284                        ));
285                    }
286                }
287            }
288        }
289
290        Ok(errors)
291    }
292
293    fn derive(&self, rows: &[Book], _ctx: &Context) -> Result<Vec<Value>, ApiError> {
294        Ok(rows
295            .iter()
296            .map(|row| json!({ "shelf": Self::shelf_mark(row) }))
297            .collect())
298    }
299
300    fn siblings(&self, ctx: &Context) -> Result<Value, ApiError> {
301        Ok(json!({ "genres": Self::genres(ctx)? }))
302    }
303}
304
305// ── Genres ──────────────────────────────────────────────────────────────────
306
307struct Genres;
308
309impl TableLogic for Genres {
310    type Row = Genre;
311
312    fn name(&self) -> &'static str {
313        "genres"
314    }
315
316    fn file(&self) -> &'static str {
317        GENRES_FILE
318    }
319
320    fn title(&self) -> &'static str {
321        "Genres"
322    }
323
324    fn schema(&self, _ctx: &Context) -> Result<Schema, ApiError> {
325        Ok(Schema::new([
326            Column::string("genre", "Genre").width_ch(18),
327            Column::string("subgenre", "Subgenre").width_ch(22),
328        ])
329        .sortable()
330        .new_row(
331            NewRow::new()
332                .with("genre", "")
333                .with("subgenre", "")
334                .carry_forward(["genre"]),
335        ))
336    }
337
338    fn validate(&self, rows: &[Genre], _ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
339        let mut errors = Vec::new();
340        for (idx, row) in rows.iter().enumerate() {
341            if row.genre.trim().is_empty() {
342                errors.push(ValidationError::field(
343                    idx + 1,
344                    "genre",
345                    "a genre is needed",
346                ));
347            }
348            if row.subgenre.trim().is_empty() {
349                errors.push(ValidationError::field(
350                    idx + 1,
351                    "subgenre",
352                    "a subgenre is needed",
353                ));
354            }
355        }
356        Ok(errors)
357    }
358}
359
360// ── Branches ────────────────────────────────────────────────────────────────
361
362struct Branches;
363
364impl TableLogic for Branches {
365    type Row = Branch;
366
367    fn name(&self) -> &'static str {
368        "branches"
369    }
370
371    fn file(&self) -> &'static str {
372        BRANCHES_FILE
373    }
374
375    fn title(&self) -> &'static str {
376        "Branches"
377    }
378
379    fn schema(&self, _ctx: &Context) -> Result<Schema, ApiError> {
380        // Row order here is the order the branches are listed in, which is a
381        // choice the table makes, so this table is not sortable and rows are
382        // dragged into place instead.
383        Ok(Schema::new([
384            Column::string("code", "Code").width_ch(3),
385            Column::string("name", "Name").width_ch(22),
386            Column::string("librarian_first", "Librarian").width_ch(8),
387            Column::string("librarian_last", "Surname")
388                .width_ch(8)
389                .datalist("librarian-names"),
390            Column::number("staff", "Staff").int_only().width_ch(2),
391            Column::boolean("open", "Open"),
392            Column::map(
393                "hours",
394                "Hours",
395                MapSpec::new("Day", "Hours")
396                    .key_options(["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"])
397                    .value_options([
398                        SelectOption::new("09:00-17:00"),
399                        SelectOption::new("12:00-20:00"),
400                    ])
401                    .allow_new_keys()
402                    .allow_new_values(),
403            ),
404        ])
405        .datalist(
406            "librarian-names",
407            Datalist::from_rows(["librarian_last"], " "),
408        )
409        .new_row(
410            NewRow::new()
411                .with("code", "")
412                .with("name", "")
413                .with("librarian_first", "")
414                .with("librarian_last", ""),
415        ))
416    }
Source

pub fn width_ch(self, width_ch: u16) -> Self

A fixed width in characters, for a column whose content the browser cannot measure.

Examples found in repository?
examples/library/main.rs (line 167)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
247
248    fn validate(&self, rows: &[Book], ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
249        let genres = Self::genres(ctx)?;
250        let branches = Self::branches(ctx)?;
251        let mut errors = Vec::new();
252
253        for (idx, row) in rows.iter().enumerate() {
254            let line = idx + 1;
255            if row.title.trim().is_empty() {
256                errors.push(ValidationError::field(
257                    line,
258                    "title",
259                    "a book needs a title",
260                ));
261            }
262
263            // A subgenre stands or falls with the genre it was chosen under.
264            if !genres.is_empty() && !row.subgenre.is_empty() {
265                let known = genres
266                    .iter()
267                    .any(|g| g.genre == row.genre && g.subgenre == row.subgenre);
268                if !known {
269                    errors.push(ValidationError::field(
270                        line,
271                        "subgenre",
272                        format!("not a subgenre of {}", row.genre),
273                    ));
274                }
275            }
276
277            if !branches.is_empty() {
278                for branch in row.shelved.keys() {
279                    if !branches.iter().any(|b| b.code == *branch) {
280                        errors.push(ValidationError::field(
281                            line,
282                            "shelved",
283                            format!("no branch has the code {branch}"),
284                        ));
285                    }
286                }
287            }
288        }
289
290        Ok(errors)
291    }
292
293    fn derive(&self, rows: &[Book], _ctx: &Context) -> Result<Vec<Value>, ApiError> {
294        Ok(rows
295            .iter()
296            .map(|row| json!({ "shelf": Self::shelf_mark(row) }))
297            .collect())
298    }
299
300    fn siblings(&self, ctx: &Context) -> Result<Value, ApiError> {
301        Ok(json!({ "genres": Self::genres(ctx)? }))
302    }
303}
304
305// ── Genres ──────────────────────────────────────────────────────────────────
306
307struct Genres;
308
309impl TableLogic for Genres {
310    type Row = Genre;
311
312    fn name(&self) -> &'static str {
313        "genres"
314    }
315
316    fn file(&self) -> &'static str {
317        GENRES_FILE
318    }
319
320    fn title(&self) -> &'static str {
321        "Genres"
322    }
323
324    fn schema(&self, _ctx: &Context) -> Result<Schema, ApiError> {
325        Ok(Schema::new([
326            Column::string("genre", "Genre").width_ch(18),
327            Column::string("subgenre", "Subgenre").width_ch(22),
328        ])
329        .sortable()
330        .new_row(
331            NewRow::new()
332                .with("genre", "")
333                .with("subgenre", "")
334                .carry_forward(["genre"]),
335        ))
336    }
337
338    fn validate(&self, rows: &[Genre], _ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
339        let mut errors = Vec::new();
340        for (idx, row) in rows.iter().enumerate() {
341            if row.genre.trim().is_empty() {
342                errors.push(ValidationError::field(
343                    idx + 1,
344                    "genre",
345                    "a genre is needed",
346                ));
347            }
348            if row.subgenre.trim().is_empty() {
349                errors.push(ValidationError::field(
350                    idx + 1,
351                    "subgenre",
352                    "a subgenre is needed",
353                ));
354            }
355        }
356        Ok(errors)
357    }
358}
359
360// ── Branches ────────────────────────────────────────────────────────────────
361
362struct Branches;
363
364impl TableLogic for Branches {
365    type Row = Branch;
366
367    fn name(&self) -> &'static str {
368        "branches"
369    }
370
371    fn file(&self) -> &'static str {
372        BRANCHES_FILE
373    }
374
375    fn title(&self) -> &'static str {
376        "Branches"
377    }
378
379    fn schema(&self, _ctx: &Context) -> Result<Schema, ApiError> {
380        // Row order here is the order the branches are listed in, which is a
381        // choice the table makes, so this table is not sortable and rows are
382        // dragged into place instead.
383        Ok(Schema::new([
384            Column::string("code", "Code").width_ch(3),
385            Column::string("name", "Name").width_ch(22),
386            Column::string("librarian_first", "Librarian").width_ch(8),
387            Column::string("librarian_last", "Surname")
388                .width_ch(8)
389                .datalist("librarian-names"),
390            Column::number("staff", "Staff").int_only().width_ch(2),
391            Column::boolean("open", "Open"),
392            Column::map(
393                "hours",
394                "Hours",
395                MapSpec::new("Day", "Hours")
396                    .key_options(["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"])
397                    .value_options([
398                        SelectOption::new("09:00-17:00"),
399                        SelectOption::new("12:00-20:00"),
400                    ])
401                    .allow_new_keys()
402                    .allow_new_values(),
403            ),
404        ])
405        .datalist(
406            "librarian-names",
407            Datalist::from_rows(["librarian_last"], " "),
408        )
409        .new_row(
410            NewRow::new()
411                .with("code", "")
412                .with("name", "")
413                .with("librarian_first", "")
414                .with("librarian_last", ""),
415        ))
416    }
417
418    fn validate(&self, rows: &[Branch], _ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
419        let mut errors = Vec::new();
420        for (idx, row) in rows.iter().enumerate() {
421            if row.code.trim().is_empty() {
422                errors.push(ValidationError::field(
423                    idx + 1,
424                    "code",
425                    "a branch needs a code",
426                ));
427            }
428        }
429        Ok(errors)
430    }
431}
432
433// ── The On loan view ────────────────────────────────────────────────────────
434
435/// What is out on loan from one branch, in two sections: the books still
436/// within their time, and the ones past it.
437///
438/// A view computes its rows rather than storing them, so nothing here is in a
439/// file: the counts, the days, and which section a book falls into are worked
440/// out per request from the tables the example already ships. The due dates
441/// are fixed in the data, so as real time passes more of them fall overdue,
442/// which is what an example of an overdue list should do.
443struct OnLoan;
444
445/// Days since 1970-01-01 for a `YYYY-MM-DD` date, or nothing for text that is
446/// not one. Howard Hinnant's civil-days algorithm, which needs no calendar
447/// library and no dependency.
448fn days_from_civil(date: &str) -> Option<i64> {
449    let mut parts = date.split('-');
450    let y: i64 = parts.next()?.parse().ok()?;
451    let m: i64 = parts.next()?.parse().ok()?;
452    let d: i64 = parts.next()?.parse().ok()?;
453    if parts.next().is_some() || !(1..=12).contains(&m) || !(1..=31).contains(&d) {
454        return None;
455    }
456
457    let y = if m <= 2 { y - 1 } else { y };
458    let era = if y >= 0 { y } else { y - 399 } / 400;
459    let yoe = y - era * 400;
460    let mp = (m + 9) % 12;
461    let doy = (153 * mp + 2) / 5 + d - 1;
462    let doe = yoe * 365 + yoe / 4 - yoe / 100 + doy;
463    Some(era * 146_097 + doe - 719_468)
464}
465
466/// The `YYYY-MM-DD` date `days` days after 1970-01-01, which is the inverse of
467/// `days_from_civil` and the other half of the same algorithm.
468fn civil_from_days(days: i64) -> String {
469    let z = days + 719_468;
470    let era = if z >= 0 { z } else { z - 146_096 } / 146_097;
471    let doe = z - era * 146_097;
472    let yoe = (doe - doe / 1460 + doe / 36_524 - doe / 146_096) / 365;
473    let doy = doe - (365 * yoe + yoe / 4 - yoe / 100);
474    let mp = (5 * doy + 2) / 153;
475    let d = doy - (153 * mp + 2) / 5 + 1;
476    let m = if mp < 10 { mp + 3 } else { mp - 9 };
477    let y = yoe + era * 400 + i64::from(m <= 2);
478    format!("{y:04}-{m:02}-{d:02}")
479}
480
481fn today() -> i64 {
482    let seconds = std::time::SystemTime::now()
483        .duration_since(std::time::UNIX_EPOCH)
484        .map(|d| d.as_secs() as i64)
485        .unwrap_or(0);
486    seconds / 86_400
487}
488
489impl OnLoan {
490    fn branches(ctx: &Context) -> Result<Vec<Branch>, ApiError> {
491        ctx.optional_rows(BRANCHES_FILE)
492    }
493
494    /// The columns both sections show. They are the same in each, so the two
495    /// line up; a section that wanted a column of its own would say so here.
496    fn columns() -> Vec<Column> {
497        vec![
498            Column::string("title", "Title").width_ch(30).href("link"),
499            Column::string("author", "Author").width_ch(18),
500            Column::string("due", "Due").width_ch(10),
501            Column::number("days", "Days").width_ch(4),
502        ]
503    }
Source

pub fn cascades_to( self, fields: impl IntoIterator<Item = impl Into<String>>, ) -> Self

Columns whose value is cleared when this one changes, because their options are drawn from it.

Examples found in repository?
examples/library/main.rs (line 172)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
Source

pub fn datalist(self, name: impl Into<String>) -> Self

The completion list this column’s input offers, named among the schema’s datalists.

Examples found in repository?
examples/library/main.rs (line 195)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
247
248    fn validate(&self, rows: &[Book], ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
249        let genres = Self::genres(ctx)?;
250        let branches = Self::branches(ctx)?;
251        let mut errors = Vec::new();
252
253        for (idx, row) in rows.iter().enumerate() {
254            let line = idx + 1;
255            if row.title.trim().is_empty() {
256                errors.push(ValidationError::field(
257                    line,
258                    "title",
259                    "a book needs a title",
260                ));
261            }
262
263            // A subgenre stands or falls with the genre it was chosen under.
264            if !genres.is_empty() && !row.subgenre.is_empty() {
265                let known = genres
266                    .iter()
267                    .any(|g| g.genre == row.genre && g.subgenre == row.subgenre);
268                if !known {
269                    errors.push(ValidationError::field(
270                        line,
271                        "subgenre",
272                        format!("not a subgenre of {}", row.genre),
273                    ));
274                }
275            }
276
277            if !branches.is_empty() {
278                for branch in row.shelved.keys() {
279                    if !branches.iter().any(|b| b.code == *branch) {
280                        errors.push(ValidationError::field(
281                            line,
282                            "shelved",
283                            format!("no branch has the code {branch}"),
284                        ));
285                    }
286                }
287            }
288        }
289
290        Ok(errors)
291    }
292
293    fn derive(&self, rows: &[Book], _ctx: &Context) -> Result<Vec<Value>, ApiError> {
294        Ok(rows
295            .iter()
296            .map(|row| json!({ "shelf": Self::shelf_mark(row) }))
297            .collect())
298    }
299
300    fn siblings(&self, ctx: &Context) -> Result<Value, ApiError> {
301        Ok(json!({ "genres": Self::genres(ctx)? }))
302    }
303}
304
305// ── Genres ──────────────────────────────────────────────────────────────────
306
307struct Genres;
308
309impl TableLogic for Genres {
310    type Row = Genre;
311
312    fn name(&self) -> &'static str {
313        "genres"
314    }
315
316    fn file(&self) -> &'static str {
317        GENRES_FILE
318    }
319
320    fn title(&self) -> &'static str {
321        "Genres"
322    }
323
324    fn schema(&self, _ctx: &Context) -> Result<Schema, ApiError> {
325        Ok(Schema::new([
326            Column::string("genre", "Genre").width_ch(18),
327            Column::string("subgenre", "Subgenre").width_ch(22),
328        ])
329        .sortable()
330        .new_row(
331            NewRow::new()
332                .with("genre", "")
333                .with("subgenre", "")
334                .carry_forward(["genre"]),
335        ))
336    }
337
338    fn validate(&self, rows: &[Genre], _ctx: &Context) -> Result<Vec<ValidationError>, ApiError> {
339        let mut errors = Vec::new();
340        for (idx, row) in rows.iter().enumerate() {
341            if row.genre.trim().is_empty() {
342                errors.push(ValidationError::field(
343                    idx + 1,
344                    "genre",
345                    "a genre is needed",
346                ));
347            }
348            if row.subgenre.trim().is_empty() {
349                errors.push(ValidationError::field(
350                    idx + 1,
351                    "subgenre",
352                    "a subgenre is needed",
353                ));
354            }
355        }
356        Ok(errors)
357    }
358}
359
360// ── Branches ────────────────────────────────────────────────────────────────
361
362struct Branches;
363
364impl TableLogic for Branches {
365    type Row = Branch;
366
367    fn name(&self) -> &'static str {
368        "branches"
369    }
370
371    fn file(&self) -> &'static str {
372        BRANCHES_FILE
373    }
374
375    fn title(&self) -> &'static str {
376        "Branches"
377    }
378
379    fn schema(&self, _ctx: &Context) -> Result<Schema, ApiError> {
380        // Row order here is the order the branches are listed in, which is a
381        // choice the table makes, so this table is not sortable and rows are
382        // dragged into place instead.
383        Ok(Schema::new([
384            Column::string("code", "Code").width_ch(3),
385            Column::string("name", "Name").width_ch(22),
386            Column::string("librarian_first", "Librarian").width_ch(8),
387            Column::string("librarian_last", "Surname")
388                .width_ch(8)
389                .datalist("librarian-names"),
390            Column::number("staff", "Staff").int_only().width_ch(2),
391            Column::boolean("open", "Open"),
392            Column::map(
393                "hours",
394                "Hours",
395                MapSpec::new("Day", "Hours")
396                    .key_options(["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"])
397                    .value_options([
398                        SelectOption::new("09:00-17:00"),
399                        SelectOption::new("12:00-20:00"),
400                    ])
401                    .allow_new_keys()
402                    .allow_new_values(),
403            ),
404        ])
405        .datalist(
406            "librarian-names",
407            Datalist::from_rows(["librarian_last"], " "),
408        )
409        .new_row(
410            NewRow::new()
411                .with("code", "")
412                .with("name", "")
413                .with("librarian_first", "")
414                .with("librarian_last", ""),
415        ))
416    }
Source

pub fn speak(self, speak: Speak) -> Self

Where the cell’s play button sends the value to be spoken.

Examples found in repository?
examples/library/main.rs (lines 202-205)
126    fn schema(&self, ctx: &Context) -> Result<Schema, ApiError> {
127        let genres = Self::genres(ctx)?;
128        let branches = Self::branches(ctx)?;
129
130        let mut names: Vec<&str> = genres.iter().map(|g| g.genre.as_str()).collect();
131        names.sort_unstable();
132        names.dedup();
133
134        let mut by_genre = OptionsBy::new("genre");
135        for genre in &names {
136            let subgenres: Vec<&str> = genres
137                .iter()
138                .filter(|g| g.genre == *genre)
139                .map(|g| g.subgenre.as_str())
140                .collect();
141            by_genre.insert(*genre, subgenres);
142        }
143
144        // Wide enough for the longest subgenre there is, computed here so the
145        // browser does not have to measure anything. It is the count of
146        // characters, nothing more: what the control puts around them is the
147        // bundle's business.
148        let widest = genres.iter().map(|g| g.subgenre.len()).max().unwrap_or(0);
149        let width_ch = u16::try_from(widest.max(8)).unwrap_or(u16::MAX);
150
151        // A key that shows a branch's name and stores its code.
152        let branch_keys: Vec<SelectOption> = branches
153            .iter()
154            .map(|b| SelectOption::labelled(&b.code, &b.name))
155            .collect();
156
157        let mut publishers: Vec<String> = ctx
158            .optional_rows::<Book>(BOOKS_FILE)?
159            .iter()
160            .map(|b| b.publisher.trim().to_string())
161            .filter(|p| !p.is_empty())
162            .collect();
163        publishers.sort_unstable();
164        publishers.dedup();
165
166        Ok(Schema::new([
167            Column::string("title", "Title").width_ch(30),
168            Column::string("author_first", "First").width_ch(12),
169            Column::string("author_last", "Last").width_ch(14),
170            Column::select("genre", "Genre", names)
171                .allow_empty()
172                .cascades_to(["subgenre"]),
173            Column::select_by("subgenre", "Subgenre", by_genre)
174                .allow_empty()
175                .width_ch(width_ch),
176            Column::select(
177                "edition",
178                "Edition",
179                [
180                    SelectOption::labelled("1", "First (1)"),
181                    SelectOption::labelled("2", "Second (2)"),
182                    SelectOption::labelled("3", "Third (3)"),
183                ],
184            )
185            .allow_empty()
186            .numeric_value(),
187            // A year is a whole number; a rating is not, which is what the
188            // absence of int_only means.
189            Column::number("year", "Year").int_only().width_ch(4),
190            Column::number("copies", "Copies").int_only().width_ch(3),
191            Column::number("rating", "Rating").width_ch(3),
192            Column::boolean("lent", "Lent"),
193            Column::string("publisher", "Publisher")
194                .width_ch(20)
195                .datalist("publishers"),
196            Column::string("donor", "Donated by")
197                .width_ch(20)
198                .datalist("reader-names"),
199            Column::spaced_string("call_number", "Call no.").width_ch(14),
200            Column::string("pronunciation", "Say")
201                .width_ch(16)
202                .speak(Speak::new(
203                    "http://127.0.0.1:8765/say?text={value}",
204                    "table-editor-speech-url",
205                )),
206            Column::map(
207                "shelved",
208                "Shelved",
209                MapSpec::new("Branch", "Copies")
210                    .chips_show_key()
211                    .key_options(branch_keys)
212                    .value_options([
213                        SelectOption::labelled("one", "One"),
214                        SelectOption::labelled("several", "Several"),
215                        SelectOption::labelled("many", "Many"),
216                    ]),
217            ),
218            Column::string("due", "Due").width_ch(10),
219            Column::string("link", "Catalogue").width_ch(30),
220            Column::computed("shelf", "Shelf mark", "shelf").width_ch(18),
221            Column::text("notes", "Notes").wide(),
222        ])
223        .sortable()
224        .datalist("publishers", Datalist::fixed(publishers))
225        .datalist(
226            "reader-names",
227            Datalist::from_rows(["author_last", "author_first"], ", "),
228        )
229        .new_row(
230            NewRow::new()
231                .with("title", "")
232                .with("author_first", "")
233                .with("author_last", "")
234                .with("genre", "")
235                .with("subgenre", "")
236                .with("publisher", "")
237                .with("donor", "")
238                .with("call_number", "")
239                .with("pronunciation", "")
240                .with("due", "")
241                .with("link", "")
242                .with("notes", "")
243                .with("copies", 1)
244                .carry_forward(["genre", "subgenre", "publisher"]),
245        ))
246    }
Source

pub fn href(self, field: impl Into<String>) -> Self

Show this column’s value as a link, to the URL held by another field of the same row.

It is honoured where a cell is read rather than edited—a computed column of a table, every column of a view—and ignored elsewhere, since a cell being typed into cannot also be a link. A bundle opens it in a new tab, and follows only http: and https:, so a row carrying something else in that field is text rather than a way to run it.

Examples found in repository?
examples/library/main.rs (line 498)
496    fn columns() -> Vec<Column> {
497        vec![
498            Column::string("title", "Title").width_ch(30).href("link"),
499            Column::string("author", "Author").width_ch(18),
500            Column::string("due", "Due").width_ch(10),
501            Column::number("days", "Days").width_ch(4),
502        ]
503    }

Trait Implementations§

Source§

impl Clone for Column

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Column

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for Column

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for Column

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for Column

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.