#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_derive::{IntoStatic, lexicon};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
use crate::blog_pckt::block::text::Text;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct TableCell<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
pub colspan: Option<i64>,
#[serde(borrow)]
pub content: Vec<Text<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub rowspan: Option<i64>,
}
impl<'a> LexiconSchema for TableCell<'a> {
fn nsid() -> &'static str {
"blog.pckt.block.tableCell"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_blog_pckt_block_tableCell()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.colspan {
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("colspan"),
min: 1i64,
actual: *value,
});
}
}
if let Some(ref value) = self.rowspan {
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("rowspan"),
min: 1i64,
actual: *value,
});
}
}
Ok(())
}
}
pub mod table_cell_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Content;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Content = Unset;
}
pub struct SetContent<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetContent<S> {}
impl<S: State> State for SetContent<S> {
type Content = Set<members::content>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct content(());
}
}
pub struct TableCellBuilder<'a, S: table_cell_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<i64>, Option<Vec<Text<'a>>>, Option<i64>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> TableCell<'a> {
pub fn new() -> TableCellBuilder<'a, table_cell_state::Empty> {
TableCellBuilder::new()
}
}
impl<'a> TableCellBuilder<'a, table_cell_state::Empty> {
pub fn new() -> Self {
TableCellBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: table_cell_state::State> TableCellBuilder<'a, S> {
pub fn colspan(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_colspan(mut self, value: Option<i64>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> TableCellBuilder<'a, S>
where
S: table_cell_state::State,
S::Content: table_cell_state::IsUnset,
{
pub fn content(
mut self,
value: impl Into<Vec<Text<'a>>>,
) -> TableCellBuilder<'a, table_cell_state::SetContent<S>> {
self._fields.1 = Option::Some(value.into());
TableCellBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: table_cell_state::State> TableCellBuilder<'a, S> {
pub fn rowspan(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_rowspan(mut self, value: Option<i64>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> TableCellBuilder<'a, S>
where
S: table_cell_state::State,
S::Content: table_cell_state::IsSet,
{
pub fn build(self) -> TableCell<'a> {
TableCell {
colspan: self._fields.0,
content: self._fields.1.unwrap(),
rowspan: self._fields.2,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> TableCell<'a> {
TableCell {
colspan: self._fields.0,
content: self._fields.1.unwrap(),
rowspan: self._fields.2,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_blog_pckt_block_tableCell() -> LexiconDoc<'static> {
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
use alloc::collections::BTreeMap;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("blog.pckt.block.tableCell"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("content")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("colspan"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("content"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"Array of block content (typically text)",
),
),
items: LexArrayItem::Union(LexRefUnion {
refs: vec![CowStr::new_static("blog.pckt.block.text")],
closed: Some(false),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("rowspan"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}