#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, 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;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct List<S: BosStr = DefaultStr> {
pub items: Vec<ListItemsItem<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_list_ordered")]
pub ordered: Option<bool>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum ListItemsItem<S: BosStr = DefaultStr> {
#[serde(rename = "fyi.questionable.richtext.text")]
Text(Box<Text<S>>),
#[serde(rename = "fyi.questionable.richtext.list")]
List(Box<list::List<S>>),
}
impl<S: BosStr> LexiconSchema for List<S> {
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<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetItems<St> {}
impl<St: State> State for SetItems<St> {
type Items = Set<members::items>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct items(());
}
}
pub struct ListBuilder<S: BosStr, St: list_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Vec<ListItemsItem<S>>>, Option<bool>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> List<S> {
pub fn new() -> ListBuilder<S, list_state::Empty> {
ListBuilder::new()
}
}
impl<S: BosStr> ListBuilder<S, list_state::Empty> {
pub fn new() -> Self {
ListBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ListBuilder<S, St>
where
St: list_state::State,
St::Items: list_state::IsUnset,
{
pub fn items(
mut self,
value: impl Into<Vec<ListItemsItem<S>>>,
) -> ListBuilder<S, list_state::SetItems<St>> {
self._fields.0 = Option::Some(value.into());
ListBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: list_state::State> ListBuilder<S, St> {
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<S: BosStr, St> ListBuilder<S, St>
where
St: list_state::State,
St::Items: list_state::IsSet,
{
pub fn build(self) -> List<S> {
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<SmolStr, Data<S>>) -> List<S> {
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()
}
}