#[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::value::Data;
use jacquard_derive::{IntoStatic, open_union};
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::chat_bsky::group::DisabledJoinLinkPreviewView;
use crate::chat_bsky::group::InvalidJoinLinkPreviewView;
use crate::chat_bsky::group::JoinLinkPreviewView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct JoinLink<S: BosStr = DefaultStr> {
pub code: 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", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct View<S: BosStr = DefaultStr> {
pub join_link_preview: ViewJoinLinkPreview<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 ViewJoinLinkPreview<S: BosStr = DefaultStr> {
#[serde(rename = "chat.bsky.group.defs#joinLinkPreviewView")]
JoinLinkPreviewView(Box<JoinLinkPreviewView<S>>),
#[serde(rename = "chat.bsky.group.defs#disabledJoinLinkPreviewView")]
DisabledJoinLinkPreviewView(Box<DisabledJoinLinkPreviewView<S>>),
#[serde(rename = "chat.bsky.group.defs#invalidJoinLinkPreviewView")]
InvalidJoinLinkPreviewView(Box<InvalidJoinLinkPreviewView<S>>),
}
impl<S: BosStr> LexiconSchema for JoinLink<S> {
fn nsid() -> &'static str {
"chat.bsky.embed.joinLink"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_chat_bsky_embed_joinLink()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<S: BosStr> LexiconSchema for View<S> {
fn nsid() -> &'static str {
"chat.bsky.embed.joinLink"
}
fn def_name() -> &'static str {
"view"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_chat_bsky_embed_joinLink()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
fn lexicon_doc_chat_bsky_embed_joinLink() -> 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("chat.bsky.embed.joinLink"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("code")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("code"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("The join link code."),
),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("view"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("joinLinkPreview")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("joinLinkPreview"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![
CowStr::new_static("chat.bsky.group.defs#joinLinkPreviewView"),
CowStr::new_static("chat.bsky.group.defs#disabledJoinLinkPreviewView"),
CowStr::new_static("chat.bsky.group.defs#invalidJoinLinkPreviewView")
],
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod view_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 JoinLinkPreview;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type JoinLinkPreview = Unset;
}
pub struct SetJoinLinkPreview<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetJoinLinkPreview<St> {}
impl<St: State> State for SetJoinLinkPreview<St> {
type JoinLinkPreview = Set<members::join_link_preview>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct join_link_preview(());
}
}
pub struct ViewBuilder<St: view_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (Option<ViewJoinLinkPreview<S>>,),
_type: PhantomData<fn() -> S>,
}
impl View<DefaultStr> {
pub fn new() -> ViewBuilder<view_state::Empty, DefaultStr> {
ViewBuilder::new()
}
}
impl<S: BosStr> View<S> {
pub fn builder() -> ViewBuilder<view_state::Empty, S> {
ViewBuilder::builder()
}
}
impl ViewBuilder<view_state::Empty, DefaultStr> {
pub fn new() -> Self {
ViewBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr> ViewBuilder<view_state::Empty, S> {
pub fn builder() -> Self {
ViewBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> ViewBuilder<St, S>
where
St: view_state::State,
St::JoinLinkPreview: view_state::IsUnset,
{
pub fn join_link_preview(
mut self,
value: impl Into<ViewJoinLinkPreview<S>>,
) -> ViewBuilder<view_state::SetJoinLinkPreview<St>, S> {
self._fields.0 = Option::Some(value.into());
ViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> ViewBuilder<St, S>
where
St: view_state::State,
St::JoinLinkPreview: view_state::IsSet,
{
pub fn build(self) -> View<S> {
View {
join_link_preview: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> View<S> {
View {
join_link_preview: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}