use derive_more::From;
use hard_xml::{XmlRead, XmlWrite};
use crate::__xml_test_suites;
use crate::document::{Paragraph, Table, TableCell};
use crate::formatting::SectionProperty;
use super::SDT;
#[derive(Debug, Default, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:body")]
pub struct Body<'a> {
#[xml(child = "w:p", child = "w:tbl", child = "w:sectPr", child = "w:sdt")]
pub content: Vec<BodyContent<'a>>,
}
impl<'a> Body<'a> {
pub fn push<T: Into<BodyContent<'a>>>(&mut self, content: T) -> &mut Self {
self.content.push(content.into());
self
}
pub fn text(&self) -> String {
let v: Vec<_> = self
.content
.iter()
.filter_map(|content| match content {
BodyContent::Paragraph(para) => Some(para.text()),
BodyContent::Table(_) => None,
BodyContent::SectionProperty(_) => None,
BodyContent::Sdt(_) => None,
BodyContent::TableCell(_) => None,
})
.collect();
v.join("\r\n")
}
pub fn replace_text_simple<S>(&mut self, old: S, new: S)
where
S: AsRef<str>,
{
let dic = (old, new);
let dic = vec![dic];
let _d = self.replace_text(&dic);
}
pub fn replace_text<'b, T, S>(&mut self, dic: T) -> crate::DocxResult<()>
where
S: AsRef<str> + 'b,
T: IntoIterator<Item = &'b (S, S)> + std::marker::Copy,
{
for content in self.content.iter_mut() {
match content {
BodyContent::Paragraph(p) => {
p.replace_text(dic)?;
}
BodyContent::Table(t) => {
t.replace_text(dic)?;
}
BodyContent::SectionProperty(_) => {}
BodyContent::Sdt(_) => {}
BodyContent::TableCell(_) => {}
}
}
Ok(())
}
}
#[derive(Debug, From, XmlRead, XmlWrite, Clone)]
#[cfg_attr(test, derive(PartialEq))]
pub enum BodyContent<'a> {
#[xml(tag = "w:p")]
Paragraph(Paragraph<'a>),
#[xml(tag = "w:tbl")]
Table(Table<'a>),
#[xml(tag = "w:sdt")]
Sdt(SDT<'a>),
#[xml(tag = "w:sectPr")]
SectionProperty(SectionProperty<'a>),
#[xml(tag = "w:tc")]
TableCell(TableCell<'a>),
}
__xml_test_suites!(
Body,
Body::default(),
r#"<w:body/>"#,
Body {
content: vec![Paragraph::default().into()]
},
r#"<w:body><w:p/></w:body>"#,
Body {
content: vec![Table::default().into()]
},
r#"<w:body><w:tbl><w:tblPr/><w:tblGrid/></w:tbl></w:body>"#,
);