#[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, open_union};
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::fyi_questionable::richtext::text::Text;
use crate::fyi_questionable::richtext::list;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct List<'a> {
#[serde(borrow)]
pub items: Vec<ListItemsItem<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_list_ordered")]
pub ordered: Option<bool>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum ListItemsItem<'a> {
#[serde(rename = "fyi.questionable.richtext.text")]
Text(Box<Text<'a>>),
#[serde(rename = "fyi.questionable.richtext.list")]
List(Box<list::List<'a>>),
}
impl<'a> LexiconSchema for List<'a> {
fn nsid() -> &'static str {
"fyi.questionable.richtext.list"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_fyi_questionable_richtext_list()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
fn _default_list_ordered() -> Option<bool> {
Some(false)
}
pub mod 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 Items;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Items = Unset;
}
pub struct SetItems<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetItems<S> {}
impl<S: State> State for SetItems<S> {
type Items = Set<members::items>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct items(());
}
}
pub struct ListBuilder<'a, S: list_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Vec<ListItemsItem<'a>>>, Option<bool>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> List<'a> {
pub fn new() -> ListBuilder<'a, list_state::Empty> {
ListBuilder::new()
}
}
impl<'a> ListBuilder<'a, list_state::Empty> {
pub fn new() -> Self {
ListBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> ListBuilder<'a, S>
where
S: list_state::State,
S::Items: list_state::IsUnset,
{
pub fn items(
mut self,
value: impl Into<Vec<ListItemsItem<'a>>>,
) -> ListBuilder<'a, list_state::SetItems<S>> {
self._fields.0 = Option::Some(value.into());
ListBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: list_state::State> ListBuilder<'a, S> {
pub fn ordered(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_ordered(mut self, value: Option<bool>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S> ListBuilder<'a, S>
where
S: list_state::State,
S::Items: list_state::IsSet,
{
pub fn build(self) -> List<'a> {
List {
items: self._fields.0.unwrap(),
ordered: self._fields.1.or_else(|| Some(false)),
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>,
>,
) -> List<'a> {
List {
items: self._fields.0.unwrap(),
ordered: self._fields.1.or_else(|| Some(false)),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_fyi_questionable_richtext_list() -> 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("fyi.questionable.richtext.list"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("items")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("items"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Union(LexRefUnion {
refs: vec![
CowStr::new_static("fyi.questionable.richtext.text"),
CowStr::new_static("fyi.questionable.richtext.list")
],
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("ordered"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}