#[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_common::types::blob::BlobRef;
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};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct BackgroundImage<'a> {
#[serde(borrow)]
pub image: BlobRef<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
pub repeat: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub width: Option<i64>,
}
impl<'a> LexiconSchema for BackgroundImage<'a> {
fn nsid() -> &'static str {
"pub.leaflet.theme.backgroundImage"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_pub_leaflet_theme_backgroundImage()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.image;
{
let size = value.blob().size;
if size > 1000000usize {
return Err(ConstraintError::BlobTooLarge {
path: ValidationPath::from_field("image"),
max: 1000000usize,
actual: size,
});
}
}
}
{
let value = &self.image;
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["image/*"];
let matched = accepted
.iter()
.any(|pattern| {
if *pattern == "*/*" {
true
} else if pattern.ends_with("/*") {
let prefix = &pattern[..pattern.len() - 2];
mime.starts_with(prefix)
&& mime.as_bytes().get(prefix.len()) == Some(&b'/')
} else {
mime == *pattern
}
});
if !matched {
return Err(ConstraintError::BlobMimeTypeNotAccepted {
path: ValidationPath::from_field("image"),
accepted: vec!["image/*".to_string()],
actual: mime.to_string(),
});
}
}
}
Ok(())
}
}
pub mod background_image_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 Image;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Image = Unset;
}
pub struct SetImage<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetImage<S> {}
impl<S: State> State for SetImage<S> {
type Image = Set<members::image>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct image(());
}
}
pub struct BackgroundImageBuilder<'a, S: background_image_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<BlobRef<'a>>, Option<bool>, Option<i64>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> BackgroundImage<'a> {
pub fn new() -> BackgroundImageBuilder<'a, background_image_state::Empty> {
BackgroundImageBuilder::new()
}
}
impl<'a> BackgroundImageBuilder<'a, background_image_state::Empty> {
pub fn new() -> Self {
BackgroundImageBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> BackgroundImageBuilder<'a, S>
where
S: background_image_state::State,
S::Image: background_image_state::IsUnset,
{
pub fn image(
mut self,
value: impl Into<BlobRef<'a>>,
) -> BackgroundImageBuilder<'a, background_image_state::SetImage<S>> {
self._fields.0 = Option::Some(value.into());
BackgroundImageBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: background_image_state::State> BackgroundImageBuilder<'a, S> {
pub fn repeat(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_repeat(mut self, value: Option<bool>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: background_image_state::State> BackgroundImageBuilder<'a, S> {
pub fn width(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_width(mut self, value: Option<i64>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> BackgroundImageBuilder<'a, S>
where
S: background_image_state::State,
S::Image: background_image_state::IsSet,
{
pub fn build(self) -> BackgroundImage<'a> {
BackgroundImage {
image: self._fields.0.unwrap(),
repeat: self._fields.1,
width: self._fields.2,
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>,
>,
) -> BackgroundImage<'a> {
BackgroundImage {
image: self._fields.0.unwrap(),
repeat: self._fields.1,
width: self._fields.2,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_pub_leaflet_theme_backgroundImage() -> 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.theme.backgroundImage"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("image")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("image"),
LexObjectProperty::Blob(LexBlob { ..Default::default() }),
);
map.insert(
SmolStr::new_static("repeat"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("width"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}