41 lines
936 B
Rust
41 lines
936 B
Rust
use std::path::Path;
|
|
|
|
use serde::Serialize;
|
|
|
|
use crate::config::Config;
|
|
use crate::error::CustomError;
|
|
use crate::intermediate::IQuoteBlock;
|
|
|
|
use super::RenderElement;
|
|
|
|
#[derive(Debug, Serialize)]
|
|
#[serde(tag = "type")]
|
|
#[serde(rename = "quote_block")]
|
|
pub(crate) struct RenderQuoteBlock {
|
|
children: Vec<RenderElement>,
|
|
}
|
|
|
|
impl RenderQuoteBlock {
|
|
pub(crate) fn new(
|
|
config: &Config,
|
|
output_directory: &Path,
|
|
output_file: &Path,
|
|
original: &IQuoteBlock,
|
|
) -> Result<RenderQuoteBlock, CustomError> {
|
|
let children = {
|
|
let mut ret = Vec::new();
|
|
for obj in original.children.iter() {
|
|
ret.push(RenderElement::new(
|
|
config,
|
|
output_directory,
|
|
output_file,
|
|
obj,
|
|
)?);
|
|
}
|
|
ret
|
|
};
|
|
|
|
Ok(RenderQuoteBlock { children })
|
|
}
|
|
}
|