#[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, open_union};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
use crate::app_bsky::embed::external;
use crate::app_bsky::embed::external::ExternalRecord;
use crate::app_bsky::embed::images;
use crate::app_bsky::embed::images::Images;
use crate::app_bsky::embed::record;
use crate::app_bsky::embed::record::Record;
use crate::app_bsky::embed::video;
use crate::app_bsky::embed::video::Video;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct RecordWithMedia<S: BosStr = DefaultStr> {
pub media: RecordWithMediaMedia<S>,
pub record: Record<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum RecordWithMediaMedia<S: BosStr = DefaultStr> {
#[serde(rename = "app.bsky.embed.images")]
Images(Box<Images<S>>),
#[serde(rename = "app.bsky.embed.video")]
Video(Box<Video<S>>),
#[serde(rename = "app.bsky.embed.external")]
External(Box<ExternalRecord<S>>),
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct View<S: BosStr = DefaultStr> {
pub media: ViewMedia<S>,
pub record: record::View<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum ViewMedia<S: BosStr = DefaultStr> {
#[serde(rename = "app.bsky.embed.images#view")]
ImagesView(Box<images::View<S>>),
#[serde(rename = "app.bsky.embed.video#view")]
VideoView(Box<video::View<S>>),
#[serde(rename = "app.bsky.embed.external#view")]
ExternalView(Box<external::View<S>>),
}
impl<S: BosStr> LexiconSchema for RecordWithMedia<S> {
fn nsid() -> &'static str {
"app.bsky.embed.recordWithMedia"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_bsky_embed_recordWithMedia()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<S: BosStr> LexiconSchema for View<S> {
fn nsid() -> &'static str {
"app.bsky.embed.recordWithMedia"
}
fn def_name() -> &'static str {
"view"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_app_bsky_embed_recordWithMedia()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod record_with_media_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Media;
type Record;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Media = Unset;
type Record = Unset;
}
pub struct SetMedia<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetMedia<St> {}
impl<St: State> State for SetMedia<St> {
type Media = Set<members::media>;
type Record = St::Record;
}
pub struct SetRecord<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRecord<St> {}
impl<St: State> State for SetRecord<St> {
type Media = St::Media;
type Record = Set<members::record>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct media(());
pub struct record(());
}
}
pub struct RecordWithMediaBuilder<S: BosStr, St: record_with_media_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<RecordWithMediaMedia<S>>, Option<Record<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> RecordWithMedia<S> {
pub fn new() -> RecordWithMediaBuilder<S, record_with_media_state::Empty> {
RecordWithMediaBuilder::new()
}
}
impl<S: BosStr> RecordWithMediaBuilder<S, record_with_media_state::Empty> {
pub fn new() -> Self {
RecordWithMediaBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RecordWithMediaBuilder<S, St>
where
St: record_with_media_state::State,
St::Media: record_with_media_state::IsUnset,
{
pub fn media(
mut self,
value: impl Into<RecordWithMediaMedia<S>>,
) -> RecordWithMediaBuilder<S, record_with_media_state::SetMedia<St>> {
self._fields.0 = Option::Some(value.into());
RecordWithMediaBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RecordWithMediaBuilder<S, St>
where
St: record_with_media_state::State,
St::Record: record_with_media_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<Record<S>>,
) -> RecordWithMediaBuilder<S, record_with_media_state::SetRecord<St>> {
self._fields.1 = Option::Some(value.into());
RecordWithMediaBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RecordWithMediaBuilder<S, St>
where
St: record_with_media_state::State,
St::Media: record_with_media_state::IsSet,
St::Record: record_with_media_state::IsSet,
{
pub fn build(self) -> RecordWithMedia<S> {
RecordWithMedia {
media: self._fields.0.unwrap(),
record: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> RecordWithMedia<S> {
RecordWithMedia {
media: self._fields.0.unwrap(),
record: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_app_bsky_embed_recordWithMedia() -> LexiconDoc<'static> {
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("app.bsky.embed.recordWithMedia"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Object(LexObject {
required: Some(vec![
SmolStr::new_static("record"),
SmolStr::new_static("media"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("media"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("app.bsky.embed.images"),
CowStr::new_static("app.bsky.embed.video"),
CowStr::new_static("app.bsky.embed.external"),
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("record"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("app.bsky.embed.record"),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("view"),
LexUserType::Object(LexObject {
required: Some(vec![
SmolStr::new_static("record"),
SmolStr::new_static("media"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("media"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("app.bsky.embed.images#view"),
CowStr::new_static("app.bsky.embed.video#view"),
CowStr::new_static("app.bsky.embed.external#view"),
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("record"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("app.bsky.embed.record#view"),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod view_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Record;
type Media;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Record = Unset;
type Media = Unset;
}
pub struct SetRecord<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRecord<St> {}
impl<St: State> State for SetRecord<St> {
type Record = Set<members::record>;
type Media = St::Media;
}
pub struct SetMedia<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetMedia<St> {}
impl<St: State> State for SetMedia<St> {
type Record = St::Record;
type Media = Set<members::media>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct record(());
pub struct media(());
}
}
pub struct ViewBuilder<S: BosStr, St: view_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<ViewMedia<S>>, Option<record::View<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> View<S> {
pub fn new() -> ViewBuilder<S, view_state::Empty> {
ViewBuilder::new()
}
}
impl<S: BosStr> ViewBuilder<S, view_state::Empty> {
pub fn new() -> Self {
ViewBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ViewBuilder<S, St>
where
St: view_state::State,
St::Media: view_state::IsUnset,
{
pub fn media(
mut self,
value: impl Into<ViewMedia<S>>,
) -> ViewBuilder<S, view_state::SetMedia<St>> {
self._fields.0 = Option::Some(value.into());
ViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ViewBuilder<S, St>
where
St: view_state::State,
St::Record: view_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<record::View<S>>,
) -> ViewBuilder<S, view_state::SetRecord<St>> {
self._fields.1 = Option::Some(value.into());
ViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ViewBuilder<S, St>
where
St: view_state::State,
St::Record: view_state::IsSet,
St::Media: view_state::IsSet,
{
pub fn build(self) -> View<S> {
View {
media: self._fields.0.unwrap(),
record: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> View<S> {
View {
media: self._fields.0.unwrap(),
record: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}