]> saetta.ns0.it Git - rust/zakgrid/commitdiff
Adding column.
authorAndrea Zagli <azagli@libero.it>
Mon, 2 Jan 2023 14:47:18 +0000 (15:47 +0100)
committerAndrea Zagli <azagli@libero.it>
Mon, 2 Jan 2023 14:47:18 +0000 (15:47 +0100)
examples/grid.rs
src/lib.rs

index 99516f8b81192109d2c34a7c49cb827a16d64ac8..4e470fb67a1503561d48ba80f62aef76245ecee4 100644 (file)
@@ -52,8 +52,20 @@ async fn index(
        s.push_str(format!("after: {}\n", grid.header_tmpl).as_str());
 
        let mut col = zakgrid::Column::new("col name");
+       s.push_str(format!("column added: {}\n", col.name()).as_str());
+       col.set_title("the column title");
+       s.push_str(format!("column changed title: {}\n", col.title()).as_str());
+       grid.add_column(col);
 
-       s.push_str(format!("column added: {}", col.name()).as_str());
+       let mut col = zakgrid::Column::new("col2 name");
+       col.set_title("the second column title");
+       grid.add_column(col);
+
+       let cols = grid.columns();
+
+       for (i, v) in cols.iter().enumerate() {
+               s.push_str(format!("col {} title {}\n", i, v.title()).as_str());
+       }
 
        Ok(HttpResponse::Ok().body(s))
 }
index 5e2e86c0bc9e68effef8c466b63bed6dcde8655b..93e0582ac411008c32463db5576c2c2110285490 100644 (file)
@@ -24,6 +24,14 @@ impl Column {
        pub fn name(&self) -> String {
                format!("{}", self.name)
        }
+
+       pub fn set_title(&mut self, title: &str) {
+               self.title = String::from(title);
+       }
+
+       pub fn title(&self) -> String {
+               format!("{}", self.title)
+       }
 }
 
 pub struct Grid {
@@ -44,4 +52,12 @@ impl Grid {
                        columns: vec![]
                }
        }
+
+       pub fn add_column(&mut self, col: Column) {
+               self.columns.push(col);
+       }
+
+       pub fn columns(&self) -> &Vec<Column> {
+               &self.columns
+       }
 }