X-Git-Url: http://git.scottworley.com/tablify/blobdiff_plain/f8c2cab25a0438491b3bfd7cbdf1e5d78f8b40a7..05473926f823daa245534848aee2577cbc0d1b44:/src/lib.rs?ds=sidebyside diff --git a/src/lib.rs b/src/lib.rs index 84cb336..d85de02 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -315,14 +315,21 @@ fn render_cell(col: &str, row: &mut Row) -> HTML { let row_label = HTML::escape(row.label.as_ref()); let col_label = HTML::escape(col); let instances: Option<&Vec>> = row.entries.get(col); - let class = HTML::from(if instances.is_none() { "" } else { "yes" }); + let is_empty = match instances { + None => true, + Some(is) => is.iter().all(|ins| match ins { + None => false, + Some(content) => content == "×", + }), + }; + let class = HTML::from(if is_empty { "" } else { r#" class="yes""# }); let contents = match instances { None => HTML::from(""), Some(is) => render_instances(is), }; row.entries.remove(col); HTML(format!( - r#"{contents}"# + r#"{contents}"# )) } @@ -690,7 +697,7 @@ mod tests { } ), HTML::from( - r#""# + r#""# ) ); assert_eq!( @@ -702,7 +709,7 @@ mod tests { } ), HTML::from( - r#""# + r#""# ) ); assert_eq!( @@ -756,6 +763,18 @@ mod tests { r#"5 𝍷"# ) ); + assert_eq!( + render_cell( + "foo", + &mut Row { + label: "nope".to_owned(), + entries: HashMap::from([("foo".to_owned(), vec![Some("×".to_owned())])]), + } + ), + HTML::from( + r#"×"# + ) + ); assert_eq!( render_cell( "heart", @@ -863,7 +882,7 @@ mod tests { }) ), HTML::from( - r#"nopebar + r#"nopebar "# ) );