#[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::blockquote::Blockquote;
use crate::fyi_questionable::richtext::bsky_post::BskyPost;
use crate::fyi_questionable::richtext::code::Code;
use crate::fyi_questionable::richtext::header::Header;
use crate::fyi_questionable::richtext::horizontal_rule::HorizontalRule;
use crate::fyi_questionable::richtext::image::Image;
use crate::fyi_questionable::richtext::list::List;
use crate::fyi_questionable::richtext::math::Math;
use crate::fyi_questionable::richtext::text::Text;
use crate::fyi_questionable::richtext::website::Website;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Content<'a> {
#[serde(borrow)]
pub items: Vec<ContentItemsItem<'a>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum ContentItemsItem<'a> {
#[serde(rename = "fyi.questionable.richtext.text")]
Text(Box<Text<'a>>),
#[serde(rename = "fyi.questionable.richtext.blockquote")]
Blockquote(Box<Blockquote<'a>>),
#[serde(rename = "fyi.questionable.richtext.bskyPost")]
BskyPost(Box<BskyPost<'a>>),
#[serde(rename = "fyi.questionable.richtext.code")]
Code(Box<Code<'a>>),
#[serde(rename = "fyi.questionable.richtext.header")]
Header(Box<Header<'a>>),
#[serde(rename = "fyi.questionable.richtext.horizontalRule")]
HorizontalRule(Box<HorizontalRule<'a>>),
#[serde(rename = "fyi.questionable.richtext.image")]
Image(Box<Image<'a>>),
#[serde(rename = "fyi.questionable.richtext.math")]
Math(Box<Math<'a>>),
#[serde(rename = "fyi.questionable.richtext.list")]
List(Box<List<'a>>),
#[serde(rename = "fyi.questionable.richtext.website")]
Website(Box<Website<'a>>),
}
impl<'a> LexiconSchema for Content<'a> {
fn nsid() -> &'static str {
"fyi.questionable.richtext.content"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_fyi_questionable_richtext_content()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.items;
#[allow(unused_comparisons)]
if value.len() > 1000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("items"),
max: 1000usize,
actual: value.len(),
});
}
}
Ok(())
}
}
pub mod content_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 ContentBuilder<'a, S: content_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Vec<ContentItemsItem<'a>>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Content<'a> {
pub fn new() -> ContentBuilder<'a, content_state::Empty> {
ContentBuilder::new()
}
}
impl<'a> ContentBuilder<'a, content_state::Empty> {
pub fn new() -> Self {
ContentBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> ContentBuilder<'a, S>
where
S: content_state::State,
S::Items: content_state::IsUnset,
{
pub fn items(
mut self,
value: impl Into<Vec<ContentItemsItem<'a>>>,
) -> ContentBuilder<'a, content_state::SetItems<S>> {
self._fields.0 = Option::Some(value.into());
ContentBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ContentBuilder<'a, S>
where
S: content_state::State,
S::Items: content_state::IsSet,
{
pub fn build(self) -> Content<'a> {
Content {
items: 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>,
>,
) -> Content<'a> {
Content {
items: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_fyi_questionable_richtext_content() -> 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.content"),
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 {
description: Some(
CowStr::new_static("Array of content blocks"),
),
items: LexArrayItem::Union(LexRefUnion {
refs: vec![
CowStr::new_static("fyi.questionable.richtext.text"),
CowStr::new_static("fyi.questionable.richtext.blockquote"),
CowStr::new_static("fyi.questionable.richtext.bskyPost"),
CowStr::new_static("fyi.questionable.richtext.code"),
CowStr::new_static("fyi.questionable.richtext.header"),
CowStr::new_static("fyi.questionable.richtext.horizontalRule"),
CowStr::new_static("fyi.questionable.richtext.image"),
CowStr::new_static("fyi.questionable.richtext.math"),
CowStr::new_static("fyi.questionable.richtext.text"),
CowStr::new_static("fyi.questionable.richtext.list"),
CowStr::new_static("fyi.questionable.richtext.website")
],
closed: Some(false),
..Default::default()
}),
max_length: Some(1000usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}