#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, 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::string::AtUri;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct StandardSitePost<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub show_publication_theme: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub size: Option<StandardSitePostSize<S>>,
pub uri: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum StandardSitePostSize<S: BosStr = DefaultStr> {
Large,
Medium,
Small,
Other(S),
}
impl<S: BosStr> StandardSitePostSize<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Large => "large",
Self::Medium => "medium",
Self::Small => "small",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"large" => Self::Large,
"medium" => Self::Medium,
"small" => Self::Small,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for StandardSitePostSize<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for StandardSitePostSize<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for StandardSitePostSize<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for StandardSitePostSize<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for StandardSitePostSize<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for StandardSitePostSize<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = StandardSitePostSize<S::Output>;
fn into_static(self) -> Self::Output {
match self {
StandardSitePostSize::Large => StandardSitePostSize::Large,
StandardSitePostSize::Medium => StandardSitePostSize::Medium,
StandardSitePostSize::Small => StandardSitePostSize::Small,
StandardSitePostSize::Other(v) => {
StandardSitePostSize::Other(v.into_static())
}
}
}
}
impl<S: BosStr> LexiconSchema for StandardSitePost<S> {
fn nsid() -> &'static str {
"pub.leaflet.blocks.standardSitePost"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_pub_leaflet_blocks_standardSitePost()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod standard_site_post_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 Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
}
pub struct SetUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUri<St> {}
impl<St: State> State for SetUri<St> {
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
}
}
pub struct StandardSitePostBuilder<
St: standard_site_post_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<bool>,
Option<StandardSitePostSize<S>>,
Option<AtUri<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl StandardSitePost<DefaultStr> {
pub fn new() -> StandardSitePostBuilder<
standard_site_post_state::Empty,
DefaultStr,
> {
StandardSitePostBuilder::new()
}
}
impl<S: BosStr> StandardSitePost<S> {
pub fn builder() -> StandardSitePostBuilder<standard_site_post_state::Empty, S> {
StandardSitePostBuilder::builder()
}
}
impl StandardSitePostBuilder<standard_site_post_state::Empty, DefaultStr> {
pub fn new() -> Self {
StandardSitePostBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> StandardSitePostBuilder<standard_site_post_state::Empty, S> {
pub fn builder() -> Self {
StandardSitePostBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<St: standard_site_post_state::State, S: BosStr> StandardSitePostBuilder<St, S> {
pub fn cid(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_cid(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<St: standard_site_post_state::State, S: BosStr> StandardSitePostBuilder<St, S> {
pub fn show_publication_theme(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_show_publication_theme(mut self, value: Option<bool>) -> Self {
self._fields.1 = value;
self
}
}
impl<St: standard_site_post_state::State, S: BosStr> StandardSitePostBuilder<St, S> {
pub fn size(mut self, value: impl Into<Option<StandardSitePostSize<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_size(mut self, value: Option<StandardSitePostSize<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<St, S: BosStr> StandardSitePostBuilder<St, S>
where
St: standard_site_post_state::State,
St::Uri: standard_site_post_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<S>>,
) -> StandardSitePostBuilder<standard_site_post_state::SetUri<St>, S> {
self._fields.3 = Option::Some(value.into());
StandardSitePostBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> StandardSitePostBuilder<St, S>
where
St: standard_site_post_state::State,
St::Uri: standard_site_post_state::IsSet,
{
pub fn build(self) -> StandardSitePost<S> {
StandardSitePost {
cid: self._fields.0,
show_publication_theme: self._fields.1,
size: self._fields.2,
uri: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> StandardSitePost<S> {
StandardSitePost {
cid: self._fields.0,
show_publication_theme: self._fields.1,
size: self._fields.2,
uri: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_pub_leaflet_blocks_standardSitePost() -> 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("pub.leaflet.blocks.standardSitePost"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("uri")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("showPublicationTheme"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("size"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}