#[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;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
use crate::site_standard::theme::color::Rgb;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct Basic<S: BosStr = DefaultStr> {
pub accent: Rgb<S>,
pub accent_foreground: Rgb<S>,
pub background: Rgb<S>,
pub foreground: Rgb<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> LexiconSchema for Basic<S> {
fn nsid() -> &'static str {
"site.standard.theme.basic"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_site_standard_theme_basic()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod basic_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 Foreground;
type AccentForeground;
type Accent;
type Background;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Foreground = Unset;
type AccentForeground = Unset;
type Accent = Unset;
type Background = Unset;
}
pub struct SetForeground<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetForeground<St> {}
impl<St: State> State for SetForeground<St> {
type Foreground = Set<members::foreground>;
type AccentForeground = St::AccentForeground;
type Accent = St::Accent;
type Background = St::Background;
}
pub struct SetAccentForeground<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAccentForeground<St> {}
impl<St: State> State for SetAccentForeground<St> {
type Foreground = St::Foreground;
type AccentForeground = Set<members::accent_foreground>;
type Accent = St::Accent;
type Background = St::Background;
}
pub struct SetAccent<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAccent<St> {}
impl<St: State> State for SetAccent<St> {
type Foreground = St::Foreground;
type AccentForeground = St::AccentForeground;
type Accent = Set<members::accent>;
type Background = St::Background;
}
pub struct SetBackground<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetBackground<St> {}
impl<St: State> State for SetBackground<St> {
type Foreground = St::Foreground;
type AccentForeground = St::AccentForeground;
type Accent = St::Accent;
type Background = Set<members::background>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct foreground(());
pub struct accent_foreground(());
pub struct accent(());
pub struct background(());
}
}
pub struct BasicBuilder<S: BosStr, St: basic_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Rgb<S>>, Option<Rgb<S>>, Option<Rgb<S>>, Option<Rgb<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Basic<S> {
pub fn new() -> BasicBuilder<S, basic_state::Empty> {
BasicBuilder::new()
}
}
impl<S: BosStr> BasicBuilder<S, basic_state::Empty> {
pub fn new() -> Self {
BasicBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BasicBuilder<S, St>
where
St: basic_state::State,
St::Accent: basic_state::IsUnset,
{
pub fn accent(
mut self,
value: impl Into<Rgb<S>>,
) -> BasicBuilder<S, basic_state::SetAccent<St>> {
self._fields.0 = Option::Some(value.into());
BasicBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BasicBuilder<S, St>
where
St: basic_state::State,
St::AccentForeground: basic_state::IsUnset,
{
pub fn accent_foreground(
mut self,
value: impl Into<Rgb<S>>,
) -> BasicBuilder<S, basic_state::SetAccentForeground<St>> {
self._fields.1 = Option::Some(value.into());
BasicBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BasicBuilder<S, St>
where
St: basic_state::State,
St::Background: basic_state::IsUnset,
{
pub fn background(
mut self,
value: impl Into<Rgb<S>>,
) -> BasicBuilder<S, basic_state::SetBackground<St>> {
self._fields.2 = Option::Some(value.into());
BasicBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BasicBuilder<S, St>
where
St: basic_state::State,
St::Foreground: basic_state::IsUnset,
{
pub fn foreground(
mut self,
value: impl Into<Rgb<S>>,
) -> BasicBuilder<S, basic_state::SetForeground<St>> {
self._fields.3 = Option::Some(value.into());
BasicBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> BasicBuilder<S, St>
where
St: basic_state::State,
St::Foreground: basic_state::IsSet,
St::AccentForeground: basic_state::IsSet,
St::Accent: basic_state::IsSet,
St::Background: basic_state::IsSet,
{
pub fn build(self) -> Basic<S> {
Basic {
accent: self._fields.0.unwrap(),
accent_foreground: self._fields.1.unwrap(),
background: self._fields.2.unwrap(),
foreground: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Basic<S> {
Basic {
accent: self._fields.0.unwrap(),
accent_foreground: self._fields.1.unwrap(),
background: self._fields.2.unwrap(),
foreground: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_site_standard_theme_basic() -> 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("site.standard.theme.basic"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("background"),
SmolStr::new_static("foreground"),
SmolStr::new_static("accent"),
SmolStr::new_static("accentForeground")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("accent"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("site.standard.theme.color#rgb")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("accentForeground"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("site.standard.theme.color#rgb")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("background"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("site.standard.theme.color#rgb")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("foreground"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("site.standard.theme.color#rgb")
],
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}