From: Scott Worley Date: Thu, 24 Oct 2024 17:58:40 +0000 (-0700) Subject: Pass mark overrides to tally_marks() X-Git-Tag: v0.6.0~3 X-Git-Url: http://git.scottworley.com/tablify/commitdiff_plain/fdc441dab9c793956ea5c6e4a7c766eb87b16588?ds=inline;hp=1ca87bfadfa61703dde1cfc224cec881a68a4f56 Pass mark overrides to tally_marks() --- diff --git a/src/lib.rs b/src/lib.rs index 3f3dde5..731457e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ use std::fmt::Write; use std::io::BufRead; use std::iter::Iterator; -fn tally_marks(n: usize) -> String { +fn tally_marks(n: usize, mark: Option<&str>) -> String { let fives = { 0..n / 5 }.map(|_| '𝍸'); let ones = { 0..n % 5 }.map(|_| '𝍷'); fives.chain(ones).collect() @@ -287,7 +287,7 @@ fn column_order(config: &Config, rows: &[Rowlike]) -> Vec { .collect() } -fn render_instances(instances: &[Option]) -> HTML { +fn render_instances(instances: &[Option], mark: Option<&str>) -> HTML { let mut tally = 0; let mut out = vec![]; for ins in instances { @@ -295,7 +295,7 @@ fn render_instances(instances: &[Option]) -> HTML { None => tally += 1, Some(content) => { if tally > 0 { - out.push(HTML(tally_marks(tally))); + out.push(HTML(tally_marks(tally, mark))); tally = 0; } out.push(HTML::escape(content)); @@ -303,7 +303,7 @@ fn render_instances(instances: &[Option]) -> HTML { } } if tally > 0 { - out.push(HTML(tally_marks(tally))); + out.push(HTML(tally_marks(tally, mark))); } HTML( out.into_iter() @@ -332,7 +332,7 @@ fn render_cell(config: &Config, col: &str, row: &mut Row) -> HTML { let class = HTML::from(if is_empty { "" } else { r#" class="yes""# }); let contents = match instances { None => HTML::from(""), - Some(is) => render_instances(is), + Some(is) => render_instances(is, config.mark.get(col).map(String::as_str)), }; row.entries.remove(col); HTML(format!( @@ -345,7 +345,7 @@ fn render_leftover(config: &Config, notcol: &str, instances: &[Option]) if instances.len() == 1 && instances[0].is_none() { HTML(format!("{label}")) } else { - let rest = render_instances(instances); + let rest = render_instances(instances, config.mark.get(notcol).map(String::as_str)); HTML(format!("{label}: {rest}")) } } @@ -491,17 +491,17 @@ mod tests { #[test] fn test_tally_marks() { - assert_eq!(tally_marks(1), "𝍷"); - assert_eq!(tally_marks(2), "𝍷𝍷"); - assert_eq!(tally_marks(3), "𝍷𝍷𝍷"); - assert_eq!(tally_marks(4), "𝍷𝍷𝍷𝍷"); - assert_eq!(tally_marks(5), "𝍸"); - assert_eq!(tally_marks(6), "𝍸𝍷"); - assert_eq!(tally_marks(7), "𝍸𝍷𝍷"); - assert_eq!(tally_marks(8), "𝍸𝍷𝍷𝍷"); - assert_eq!(tally_marks(9), "𝍸𝍷𝍷𝍷𝍷"); - assert_eq!(tally_marks(10), "𝍸𝍸"); - assert_eq!(tally_marks(11), "𝍸𝍸𝍷"); + assert_eq!(tally_marks(1, None), "𝍷"); + assert_eq!(tally_marks(2, None), "𝍷𝍷"); + assert_eq!(tally_marks(3, None), "𝍷𝍷𝍷"); + assert_eq!(tally_marks(4, None), "𝍷𝍷𝍷𝍷"); + assert_eq!(tally_marks(5, None), "𝍸"); + assert_eq!(tally_marks(6, None), "𝍸𝍷"); + assert_eq!(tally_marks(7, None), "𝍸𝍷𝍷"); + assert_eq!(tally_marks(8, None), "𝍸𝍷𝍷𝍷"); + assert_eq!(tally_marks(9, None), "𝍸𝍷𝍷𝍷𝍷"); + assert_eq!(tally_marks(10, None), "𝍸𝍸"); + assert_eq!(tally_marks(11, None), "𝍸𝍸𝍷"); } fn read_rows(input: impl std::io::Read) -> Result, std::io::Error> {