#[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};
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;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Basic<'a> {
#[serde(borrow)]
pub accent: Rgb<'a>,
#[serde(borrow)]
pub accent_foreground: Rgb<'a>,
#[serde(borrow)]
pub background: Rgb<'a>,
#[serde(borrow)]
pub foreground: Rgb<'a>,
}
impl<'a> LexiconSchema for Basic<'a> {
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 AccentForeground;
type Background;
type Foreground;
type Accent;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type AccentForeground = Unset;
type Background = Unset;
type Foreground = Unset;
type Accent = Unset;
}
pub struct SetAccentForeground<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAccentForeground<S> {}
impl<S: State> State for SetAccentForeground<S> {
type AccentForeground = Set<members::accent_foreground>;
type Background = S::Background;
type Foreground = S::Foreground;
type Accent = S::Accent;
}
pub struct SetBackground<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetBackground<S> {}
impl<S: State> State for SetBackground<S> {
type AccentForeground = S::AccentForeground;
type Background = Set<members::background>;
type Foreground = S::Foreground;
type Accent = S::Accent;
}
pub struct SetForeground<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetForeground<S> {}
impl<S: State> State for SetForeground<S> {
type AccentForeground = S::AccentForeground;
type Background = S::Background;
type Foreground = Set<members::foreground>;
type Accent = S::Accent;
}
pub struct SetAccent<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAccent<S> {}
impl<S: State> State for SetAccent<S> {
type AccentForeground = S::AccentForeground;
type Background = S::Background;
type Foreground = S::Foreground;
type Accent = Set<members::accent>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct accent_foreground(());
pub struct background(());
pub struct foreground(());
pub struct accent(());
}
}
pub struct BasicBuilder<'a, S: basic_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Rgb<'a>>, Option<Rgb<'a>>, Option<Rgb<'a>>, Option<Rgb<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Basic<'a> {
pub fn new() -> BasicBuilder<'a, basic_state::Empty> {
BasicBuilder::new()
}
}
impl<'a> BasicBuilder<'a, basic_state::Empty> {
pub fn new() -> Self {
BasicBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> BasicBuilder<'a, S>
where
S: basic_state::State,
S::Accent: basic_state::IsUnset,
{
pub fn accent(
mut self,
value: impl Into<Rgb<'a>>,
) -> BasicBuilder<'a, basic_state::SetAccent<S>> {
self._fields.0 = Option::Some(value.into());
BasicBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BasicBuilder<'a, S>
where
S: basic_state::State,
S::AccentForeground: basic_state::IsUnset,
{
pub fn accent_foreground(
mut self,
value: impl Into<Rgb<'a>>,
) -> BasicBuilder<'a, basic_state::SetAccentForeground<S>> {
self._fields.1 = Option::Some(value.into());
BasicBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BasicBuilder<'a, S>
where
S: basic_state::State,
S::Background: basic_state::IsUnset,
{
pub fn background(
mut self,
value: impl Into<Rgb<'a>>,
) -> BasicBuilder<'a, basic_state::SetBackground<S>> {
self._fields.2 = Option::Some(value.into());
BasicBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BasicBuilder<'a, S>
where
S: basic_state::State,
S::Foreground: basic_state::IsUnset,
{
pub fn foreground(
mut self,
value: impl Into<Rgb<'a>>,
) -> BasicBuilder<'a, basic_state::SetForeground<S>> {
self._fields.3 = Option::Some(value.into());
BasicBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> BasicBuilder<'a, S>
where
S: basic_state::State,
S::AccentForeground: basic_state::IsSet,
S::Background: basic_state::IsSet,
S::Foreground: basic_state::IsSet,
S::Accent: basic_state::IsSet,
{
pub fn build(self) -> Basic<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Basic<'a> {
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()
}
}