#[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::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::types::value::Data;
use jacquard_common::xrpc::XrpcResp;
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;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "site.standard.theme.basic",
tag = "$type",
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>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct BasicGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Basic<S>,
}
impl<S: BosStr> Basic<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, BasicRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct BasicRecord;
impl XrpcResp for BasicRecord {
const NSID: &'static str = "site.standard.theme.basic";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = BasicGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<BasicGetRecordOutput<S>> for Basic<S> {
fn from(output: BasicGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Basic<S> {
const NSID: &'static str = "site.standard.theme.basic";
type Record = BasicRecord;
}
impl Collection for BasicRecord {
const NSID: &'static str = "site.standard.theme.basic";
type Record = BasicRecord;
}
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 Accent;
type AccentForeground;
type Background;
type Foreground;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Accent = Unset;
type AccentForeground = Unset;
type Background = Unset;
type Foreground = Unset;
}
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 Accent = Set<members::accent>;
type AccentForeground = St::AccentForeground;
type Background = St::Background;
type Foreground = St::Foreground;
}
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 Accent = St::Accent;
type AccentForeground = Set<members::accent_foreground>;
type Background = St::Background;
type Foreground = St::Foreground;
}
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 Accent = St::Accent;
type AccentForeground = St::AccentForeground;
type Background = Set<members::background>;
type Foreground = St::Foreground;
}
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 Accent = St::Accent;
type AccentForeground = St::AccentForeground;
type Background = St::Background;
type Foreground = Set<members::foreground>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct accent(());
pub struct accent_foreground(());
pub struct background(());
pub struct foreground(());
}
}
pub struct BasicBuilder<St: basic_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Rgb<S>>, Option<Rgb<S>>, Option<Rgb<S>>, Option<Rgb<S>>),
_type: PhantomData<fn() -> S>,
}
impl Basic<DefaultStr> {
pub fn new() -> BasicBuilder<basic_state::Empty, DefaultStr> {
BasicBuilder::new()
}
}
impl<S: BosStr> Basic<S> {
pub fn builder() -> BasicBuilder<basic_state::Empty, S> {
BasicBuilder::builder()
}
}
impl BasicBuilder<basic_state::Empty, DefaultStr> {
pub fn new() -> Self {
BasicBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> BasicBuilder<basic_state::Empty, S> {
pub fn builder() -> Self {
BasicBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> BasicBuilder<St, S>
where
St: basic_state::State,
St::Accent: basic_state::IsUnset,
{
pub fn accent(
mut self,
value: impl Into<Rgb<S>>,
) -> BasicBuilder<basic_state::SetAccent<St>, S> {
self._fields.0 = Option::Some(value.into());
BasicBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> BasicBuilder<St, S>
where
St: basic_state::State,
St::AccentForeground: basic_state::IsUnset,
{
pub fn accent_foreground(
mut self,
value: impl Into<Rgb<S>>,
) -> BasicBuilder<basic_state::SetAccentForeground<St>, S> {
self._fields.1 = Option::Some(value.into());
BasicBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> BasicBuilder<St, S>
where
St: basic_state::State,
St::Background: basic_state::IsUnset,
{
pub fn background(
mut self,
value: impl Into<Rgb<S>>,
) -> BasicBuilder<basic_state::SetBackground<St>, S> {
self._fields.2 = Option::Some(value.into());
BasicBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> BasicBuilder<St, S>
where
St: basic_state::State,
St::Foreground: basic_state::IsUnset,
{
pub fn foreground(
mut self,
value: impl Into<Rgb<S>>,
) -> BasicBuilder<basic_state::SetForeground<St>, S> {
self._fields.3 = Option::Some(value.into());
BasicBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> BasicBuilder<St, S>
where
St: basic_state::State,
St::Accent: basic_state::IsSet,
St::AccentForeground: basic_state::IsSet,
St::Background: basic_state::IsSet,
St::Foreground: 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::Record(LexRecord {
description: Some(
CowStr::new_static(
"A simplified theme definition for publications, providing basic color customization for content display across different platforms and applications.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::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 {
description: Some(
CowStr::new_static(
"Color used for links and button backgrounds.",
),
),
refs: vec![
CowStr::new_static("site.standard.theme.color#rgb")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("accentForeground"),
LexObjectProperty::Union(LexRefUnion {
description: Some(
CowStr::new_static("Color used for button text."),
),
refs: vec![
CowStr::new_static("site.standard.theme.color#rgb")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("background"),
LexObjectProperty::Union(LexRefUnion {
description: Some(
CowStr::new_static("Color used for content background."),
),
refs: vec![
CowStr::new_static("site.standard.theme.color#rgb")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("foreground"),
LexObjectProperty::Union(LexRefUnion {
description: Some(
CowStr::new_static("Color used for content text."),
),
refs: vec![
CowStr::new_static("site.standard.theme.color#rgb")
],
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}