#[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;
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
use crate::app_offprint::block::task_list;
use crate::app_offprint::block::text::Text;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct TaskList<S: BosStr = DefaultStr> {
pub children: Vec<task_list::TaskItem<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct TaskItem<S: BosStr = DefaultStr> {
pub checked: bool,
#[serde(skip_serializing_if = "Option::is_none")]
pub children: Option<Vec<task_list::TaskItem<S>>>,
pub content: Text<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> LexiconSchema for TaskList<S> {
fn nsid() -> &'static str {
"app.offprint.block.taskList"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_offprint_block_taskList()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<S: BosStr> LexiconSchema for TaskItem<S> {
fn nsid() -> &'static str {
"app.offprint.block.taskList"
}
fn def_name() -> &'static str {
"taskItem"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_offprint_block_taskList()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod task_list_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[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<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetChildren<St> {}
impl<St: State> State for SetChildren<St> {
type Children = Set<members::children>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct children(());
}
}
pub struct TaskListBuilder<S: BosStr, St: task_list_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Vec<task_list::TaskItem<S>>>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> TaskList<S> {
pub fn new() -> TaskListBuilder<S, task_list_state::Empty> {
TaskListBuilder::new()
}
}
impl<S: BosStr> TaskListBuilder<S, task_list_state::Empty> {
pub fn new() -> Self {
TaskListBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> TaskListBuilder<S, St>
where
St: task_list_state::State,
St::Children: task_list_state::IsUnset,
{
pub fn children(
mut self,
value: impl Into<Vec<task_list::TaskItem<S>>>,
) -> TaskListBuilder<S, task_list_state::SetChildren<St>> {
self._fields.0 = Option::Some(value.into());
TaskListBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> TaskListBuilder<S, St>
where
St: task_list_state::State,
St::Children: task_list_state::IsSet,
{
pub fn build(self) -> TaskList<S> {
TaskList {
children: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> TaskList<S> {
TaskList {
children: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_offprint_block_taskList() -> LexiconDoc<'static> {
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("app.offprint.block.taskList"),
defs: {
let mut map = BTreeMap::new();
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("Task items")),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#taskItem"),
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("taskItem"),
LexUserType::Object(LexObject {
required: Some(vec![
SmolStr::new_static("content"),
SmolStr::new_static("checked"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("checked"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("children"),
LexObjectProperty::Array(LexArray {
description: Some(CowStr::new_static("Nested task items")),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#taskItem"),
..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
},
..Default::default()
}
}
pub mod task_item_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Checked;
type Content;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Checked = Unset;
type Content = Unset;
}
pub struct SetChecked<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetChecked<St> {}
impl<St: State> State for SetChecked<St> {
type Checked = Set<members::checked>;
type Content = St::Content;
}
pub struct SetContent<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetContent<St> {}
impl<St: State> State for SetContent<St> {
type Checked = St::Checked;
type Content = Set<members::content>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct checked(());
pub struct content(());
}
}
pub struct TaskItemBuilder<S: BosStr, St: task_item_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<bool>,
Option<Vec<task_list::TaskItem<S>>>,
Option<Text<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> TaskItem<S> {
pub fn new() -> TaskItemBuilder<S, task_item_state::Empty> {
TaskItemBuilder::new()
}
}
impl<S: BosStr> TaskItemBuilder<S, task_item_state::Empty> {
pub fn new() -> Self {
TaskItemBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> TaskItemBuilder<S, St>
where
St: task_item_state::State,
St::Checked: task_item_state::IsUnset,
{
pub fn checked(
mut self,
value: impl Into<bool>,
) -> TaskItemBuilder<S, task_item_state::SetChecked<St>> {
self._fields.0 = Option::Some(value.into());
TaskItemBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: task_item_state::State> TaskItemBuilder<S, St> {
pub fn children(mut self, value: impl Into<Option<Vec<task_list::TaskItem<S>>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_children(mut self, value: Option<Vec<task_list::TaskItem<S>>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> TaskItemBuilder<S, St>
where
St: task_item_state::State,
St::Content: task_item_state::IsUnset,
{
pub fn content(
mut self,
value: impl Into<Text<S>>,
) -> TaskItemBuilder<S, task_item_state::SetContent<St>> {
self._fields.2 = Option::Some(value.into());
TaskItemBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> TaskItemBuilder<S, St>
where
St: task_item_state::State,
St::Checked: task_item_state::IsSet,
St::Content: task_item_state::IsSet,
{
pub fn build(self) -> TaskItem<S> {
TaskItem {
checked: self._fields.0.unwrap(),
children: self._fields.1,
content: self._fields.2.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> TaskItem<S> {
TaskItem {
checked: self._fields.0.unwrap(),
children: self._fields.1,
content: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}