From: Scott Worley Date: Fri, 4 Oct 2024 20:50:14 +0000 (-0700) Subject: Rename column_header_order → column_header_labels X-Git-Tag: v0.5.0~6 X-Git-Url: http://git.scottworley.com/tablify/commitdiff_plain/e3feb9dc125d96673d3947c925dd7f1986e16416?ds=inline;hp=a638dfe78611c069402096f0c702c3f51648962c Rename column_header_order → column_header_labels --- diff --git a/src/lib.rs b/src/lib.rs index b4b8bbc..88c6d8c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -359,7 +359,7 @@ fn render_row(config: &Config, columns: &[String], rowlike: &mut Rowlike) -> HTM } } -fn column_header_order<'a>( +fn column_header_labels<'a>( config: &'a Config, columns: &'a [String], ) -> impl Iterator> { @@ -373,7 +373,7 @@ fn column_header_order<'a>( fn render_column_headers(config: &Config, columns: &[String]) -> HTML { HTML( String::from(r#""#) - + &column_header_order(config, columns).fold(String::new(), |mut acc, ocol| { + + &column_header_labels(config, columns).fold(String::new(), |mut acc, ocol| { match ocol { Some(col) => { let col_header = HTML::escape(col); @@ -596,27 +596,27 @@ mod tests { } #[test] - fn test_column_header_order() { + fn test_column_header_labels() { let mut cfg = Config::default(); - assert!(column_header_order(&cfg, &["foo".to_owned()]).eq([Some(&"foo".to_owned())])); + assert!(column_header_labels(&cfg, &["foo".to_owned()]).eq([Some(&"foo".to_owned())])); cfg.static_columns.push(Some("bar".to_owned())); - assert!(column_header_order(&cfg, &["foo".to_owned()]) + assert!(column_header_labels(&cfg, &["foo".to_owned()]) .eq([Some(&"bar".to_owned()), Some(&"foo".to_owned())])); cfg.static_columns.push(None); - assert!(column_header_order(&cfg, &["foo".to_owned()]).eq([ + assert!(column_header_labels(&cfg, &["foo".to_owned()]).eq([ Some(&"bar".to_owned()), None, Some(&"foo".to_owned()) ])); cfg.hidden_columns.insert("foo".to_owned()); - assert!(column_header_order(&cfg, &["foo".to_owned()]).eq([Some(&"bar".to_owned()), None])); + assert!(column_header_labels(&cfg, &["foo".to_owned()]).eq([Some(&"bar".to_owned()), None])); cfg.hidden_columns.insert("bar".to_owned()); - assert!(column_header_order(&cfg, &["foo".to_owned()]).eq([None])); + assert!(column_header_labels(&cfg, &["foo".to_owned()]).eq([None])); } #[test]