use serde::Serialize; use super::*; use crate::documents::BuildXML; use crate::types::*; use crate::xml_builder::*; #[derive(Debug, Clone, PartialEq, Serialize)] #[serde(rename_all = "camelCase")] pub struct Table { pub rows: Vec, pub grid: Vec, pub has_numbering: bool, pub property: TableProperty, } impl Table { pub fn new(rows: Vec) -> Table { let property = TableProperty::new(); let has_numbering = rows.iter().any(|c| c.has_numbering); let grid = vec![]; Self { property, rows, grid, has_numbering, } } pub fn without_borders(rows: Vec) -> Table { let property = TableProperty::without_borders(); let has_numbering = rows.iter().any(|c| c.has_numbering); let grid = vec![]; Self { property, rows, grid, has_numbering, } } pub fn add_row(mut self, row: TableRow) -> Table { self.rows.push(row); self } pub fn set_grid(mut self, grid: Vec) -> Table { self.grid = grid; self } pub fn indent(mut self, v: i32) -> Table { self.property = self.property.indent(v); self } pub fn align(mut self, v: TableAlignmentType) -> Table { self.property = self.property.align(v); self } pub fn style(mut self, s: impl Into) -> Table { self.property = self.property.style(s); self } pub fn layout(mut self, t: TableLayoutType) -> Table { self.property = self.property.layout(t); self } pub fn width(mut self, w: usize, t: WidthType) -> Table { self.property = self.property.width(w, t); self } pub fn margins(mut self, margins: TableCellMargins) -> Self { self.property = self.property.set_margins(margins); self } pub fn set_borders(mut self, borders: TableBorders) -> Self { self.property = self.property.set_borders(borders); self } pub fn set_border(mut self, border: TableBorder) -> Self { self.property = self.property.set_border(border); self } pub fn clear_border(mut self, position: TableBorderPosition) -> Self { self.property = self.property.clear_border(position); self } pub fn clear_all_border(mut self) -> Self { self.property = self.property.clear_all_border(); self } } impl BuildXML for Table { fn build(&self) -> Vec { let grid = TableGrid::new(self.grid.clone()); let b = XMLBuilder::new() .open_table() .add_child(&self.property) .add_child(&grid) .add_children(&self.rows); b.close().build() } } #[cfg(test)] mod tests { use super::*; #[cfg(test)] use pretty_assertions::assert_eq; use std::str; #[test] fn test_table() { let b = Table::new(vec![TableRow::new(vec![])]).build(); assert_eq!( str::from_utf8(&b).unwrap(), r#" "# ); } #[test] fn test_table_grid() { let b = Table::new(vec![TableRow::new(vec![])]) .set_grid(vec![100, 200]) .build(); assert_eq!( str::from_utf8(&b).unwrap(), r#" "# ); } #[test] fn test_table_json() { let t = Table::new(vec![]).set_grid(vec![100, 200, 300]); assert_eq!( serde_json::to_string(&t).unwrap(), r#"{"rows":[],"grid":[100,200,300],"hasNumbering":false,"property":{"width":{"width":0,"widthType":"Auto"},"justification":"left","borders":{"top":{"borderType":"single","size":2,"color":"000000","position":"top","space":0},"left":{"borderType":"single","size":2,"color":"000000","position":"left","space":0},"bottom":{"borderType":"single","size":2,"color":"000000","position":"bottom","space":0},"right":{"borderType":"single","size":2,"color":"000000","position":"right","space":0},"insideH":{"borderType":"single","size":2,"color":"000000","position":"insideH","space":0},"insideV":{"borderType":"single","size":2,"color":"000000","position":"insideV","space":0}},"margins":{"top":{"val":0,"widthType":"DXA"},"left":{"val":55,"widthType":"DXA"},"bottom":{"val":0,"widthType":"DXA"},"right":{"val":55,"widthType":"DXA"}},"indent":null,"style":null,"layout":null}}"# ); } }