#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::types::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid};
use jacquard_common::types::uri::{RecordUri, UriError};
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::blog_pckt::block::image::ImageAttrs;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", rename = "blog.pckt.gallery", tag = "$type")]
pub struct Gallery<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub caption: Option<CowStr<'a>>,
#[serde(borrow)]
pub images: Vec<ImageAttrs<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub layout: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub title: Option<CowStr<'a>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GalleryGetRecordOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cid: Option<Cid<'a>>,
#[serde(borrow)]
pub uri: AtUri<'a>,
#[serde(borrow)]
pub value: Gallery<'a>,
}
impl<'a> Gallery<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, GalleryRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct GalleryRecord;
impl XrpcResp for GalleryRecord {
const NSID: &'static str = "blog.pckt.gallery";
const ENCODING: &'static str = "application/json";
type Output<'de> = GalleryGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<GalleryGetRecordOutput<'_>> for Gallery<'_> {
fn from(output: GalleryGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Gallery<'_> {
const NSID: &'static str = "blog.pckt.gallery";
type Record = GalleryRecord;
}
impl Collection for GalleryRecord {
const NSID: &'static str = "blog.pckt.gallery";
type Record = GalleryRecord;
}
impl<'a> LexiconSchema for Gallery<'a> {
fn nsid() -> &'static str {
"blog.pckt.gallery"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_blog_pckt_gallery()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.caption {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 3000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("caption"),
max: 3000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.caption {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 300usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("caption"),
max: 300usize,
actual: count,
});
}
}
}
{
let value = &self.images;
#[allow(unused_comparisons)]
if value.len() > 50usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("images"),
max: 50usize,
actual: value.len(),
});
}
}
{
let value = &self.images;
#[allow(unused_comparisons)]
if value.len() < 1usize {
return Err(ConstraintError::MinLength {
path: ValidationPath::from_field("images"),
min: 1usize,
actual: value.len(),
});
}
}
if let Some(ref value) = self.layout {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 50usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("layout"),
max: 50usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.title {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 200usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("title"),
max: 200usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod gallery_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 Images;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Images = Unset;
}
pub struct SetImages<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetImages<S> {}
impl<S: State> State for SetImages<S> {
type Images = Set<members::images>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct images(());
}
}
pub struct GalleryBuilder<'a, S: gallery_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<CowStr<'a>>,
Option<Vec<ImageAttrs<'a>>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Gallery<'a> {
pub fn new() -> GalleryBuilder<'a, gallery_state::Empty> {
GalleryBuilder::new()
}
}
impl<'a> GalleryBuilder<'a, gallery_state::Empty> {
pub fn new() -> Self {
GalleryBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: gallery_state::State> GalleryBuilder<'a, S> {
pub fn caption(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_caption(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> GalleryBuilder<'a, S>
where
S: gallery_state::State,
S::Images: gallery_state::IsUnset,
{
pub fn images(
mut self,
value: impl Into<Vec<ImageAttrs<'a>>>,
) -> GalleryBuilder<'a, gallery_state::SetImages<S>> {
self._fields.1 = Option::Some(value.into());
GalleryBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: gallery_state::State> GalleryBuilder<'a, S> {
pub fn layout(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_layout(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: gallery_state::State> GalleryBuilder<'a, S> {
pub fn title(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_title(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S> GalleryBuilder<'a, S>
where
S: gallery_state::State,
S::Images: gallery_state::IsSet,
{
pub fn build(self) -> Gallery<'a> {
Gallery {
caption: self._fields.0,
images: self._fields.1.unwrap(),
layout: self._fields.2,
title: self._fields.3,
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>,
>,
) -> Gallery<'a> {
Gallery {
caption: self._fields.0,
images: self._fields.1.unwrap(),
layout: self._fields.2,
title: self._fields.3,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_blog_pckt_gallery() -> 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("blog.pckt.gallery"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![SmolStr::new_static("images")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("caption"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Optional caption for the entire gallery",
),
),
max_length: Some(3000usize),
max_graphemes: Some(300usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("images"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static("Array of image blocks in display order"),
),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static(
"blog.pckt.block.image#imageAttrs",
),
..Default::default()
}),
min_length: Some(1usize),
max_length: Some(50usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("layout"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Layout style for rendering the gallery (e.g. grid, carousel, masonry, list)",
),
),
max_length: Some(50usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Optional title for the gallery"),
),
max_length: Some(200usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}