#[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::app_offprint::block::text::Text;
use crate::app_offprint::block::bullet_list;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ListItem<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub children: Option<Vec<bullet_list::ListItem<'a>>>,
#[serde(borrow)]
pub content: Text<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct BulletList<'a> {
#[serde(borrow)]
pub children: Vec<bullet_list::ListItem<'a>>,
}
impl<'a> LexiconSchema for ListItem<'a> {
fn nsid() -> &'static str {
"app.offprint.block.bulletList"
}
fn def_name() -> &'static str {
"listItem"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_offprint_block_bulletList()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<'a> LexiconSchema for BulletList<'a> {
fn nsid() -> &'static str {
"app.offprint.block.bulletList"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_offprint_block_bulletList()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod list_item_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 ListItemBuilder<'a, S: list_item_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Vec<bullet_list::ListItem<'a>>>, Option<Text<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> ListItem<'a> {
pub fn new() -> ListItemBuilder<'a, list_item_state::Empty> {
ListItemBuilder::new()
}
}
impl<'a> ListItemBuilder<'a, list_item_state::Empty> {
pub fn new() -> Self {
ListItemBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: list_item_state::State> ListItemBuilder<'a, S> {
pub fn children(
mut self,
value: impl Into<Option<Vec<bullet_list::ListItem<'a>>>>,
) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_children(
mut self,
value: Option<Vec<bullet_list::ListItem<'a>>>,
) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> ListItemBuilder<'a, S>
where
S: list_item_state::State,
S::Content: list_item_state::IsUnset,
{
pub fn content(
mut self,
value: impl Into<Text<'a>>,
) -> ListItemBuilder<'a, list_item_state::SetContent<S>> {
self._fields.1 = Option::Some(value.into());
ListItemBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ListItemBuilder<'a, S>
where
S: list_item_state::State,
S::Content: list_item_state::IsSet,
{
pub fn build(self) -> ListItem<'a> {
ListItem {
children: self._fields.0,
content: self._fields.1.unwrap(),
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>,
>,
) -> ListItem<'a> {
ListItem {
children: self._fields.0,
content: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_offprint_block_bulletList() -> 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("app.offprint.block.bulletList"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("listItem"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("content")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("children"),
LexObjectProperty::Array(LexArray {
description: Some(CowStr::new_static("Nested list items")),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#listItem"),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("content"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("app.offprint.block.text"),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("children")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("children"),
LexObjectProperty::Array(LexArray {
description: Some(CowStr::new_static("List items")),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#listItem"),
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod bullet_list_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 Children;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Children = Unset;
}
pub struct SetChildren<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetChildren<S> {}
impl<S: State> State for SetChildren<S> {
type Children = Set<members::children>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct children(());
}
}
pub struct BulletListBuilder<'a, S: bullet_list_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Vec<bullet_list::ListItem<'a>>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> BulletList<'a> {
pub fn new() -> BulletListBuilder<'a, bullet_list_state::Empty> {
BulletListBuilder::new()
}
}
impl<'a> BulletListBuilder<'a, bullet_list_state::Empty> {
pub fn new() -> Self {
BulletListBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> BulletListBuilder<'a, S>
where
S: bullet_list_state::State,
S::Children: bullet_list_state::IsUnset,
{
pub fn children(
mut self,
value: impl Into<Vec<bullet_list::ListItem<'a>>>,
) -> BulletListBuilder<'a, bullet_list_state::SetChildren<S>> {
self._fields.0 = Option::Some(value.into());
BulletListBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BulletListBuilder<'a, S>
where
S: bullet_list_state::State,
S::Children: bullet_list_state::IsSet,
{
pub fn build(self) -> BulletList<'a> {
BulletList {
children: self._fields.0.unwrap(),
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>,
>,
) -> BulletList<'a> {
BulletList {
children: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}