#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, CowStr, 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, Datetime};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::types::value::Data;
use jacquard_common::xrpc::XrpcResp;
use jacquard_derive::{IntoStatic, lexicon, open_union};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
use crate::com_atproto::repo::strong_ref::StrongRef;
use crate::com_deckbelcher::CardRef;
use crate::com_deckbelcher::collection::list;
use crate::com_deckbelcher::richtext::Document;
#[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 CardItem<S: BosStr = DefaultStr> {
pub added_at: Datetime,
pub r#ref: CardRef<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 DeckItem<S: BosStr = DefaultStr> {
pub added_at: Datetime,
pub r#ref: StrongRef<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",
rename = "com.deckbelcher.collection.list",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct List<S: BosStr = DefaultStr> {
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<Document<S>>,
pub items: Vec<ListItemsItem<S>>,
pub name: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub updated_at: Option<Datetime>,
#[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 ListItemsItem<S: BosStr = DefaultStr> {
#[serde(rename = "com.deckbelcher.collection.list#cardItem")]
CardItem(Box<list::CardItem<S>>),
#[serde(rename = "com.deckbelcher.collection.list#deckItem")]
DeckItem(Box<list::DeckItem<S>>),
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ListGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: List<S>,
}
impl<S: BosStr> List<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ListRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
impl<S: BosStr> LexiconSchema for CardItem<S> {
fn nsid() -> &'static str {
"com.deckbelcher.collection.list"
}
fn def_name() -> &'static str {
"cardItem"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_com_deckbelcher_collection_list()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<S: BosStr> LexiconSchema for DeckItem<S> {
fn nsid() -> &'static str {
"com.deckbelcher.collection.list"
}
fn def_name() -> &'static str {
"deckItem"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_com_deckbelcher_collection_list()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ListRecord;
impl XrpcResp for ListRecord {
const NSID: &'static str = "com.deckbelcher.collection.list";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ListGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ListGetRecordOutput<S>> for List<S> {
fn from(output: ListGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for List<S> {
const NSID: &'static str = "com.deckbelcher.collection.list";
type Record = ListRecord;
}
impl Collection for ListRecord {
const NSID: &'static str = "com.deckbelcher.collection.list";
type Record = ListRecord;
}
impl<S: BosStr> LexiconSchema for List<S> {
fn nsid() -> &'static str {
"com.deckbelcher.collection.list"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_com_deckbelcher_collection_list()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.name;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 1280usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("name"),
max: 1280usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.name;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 128usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("name"),
max: 128usize,
actual: count,
});
}
}
}
Ok(())
}
}
pub mod card_item_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 Ref;
type AddedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Ref = Unset;
type AddedAt = Unset;
}
pub struct SetRef<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRef<St> {}
impl<St: State> State for SetRef<St> {
type Ref = Set<members::r#ref>;
type AddedAt = St::AddedAt;
}
pub struct SetAddedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAddedAt<St> {}
impl<St: State> State for SetAddedAt<St> {
type Ref = St::Ref;
type AddedAt = Set<members::added_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct r#ref(());
pub struct added_at(());
}
}
pub struct CardItemBuilder<S: BosStr, St: card_item_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Datetime>, Option<CardRef<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> CardItem<S> {
pub fn new() -> CardItemBuilder<S, card_item_state::Empty> {
CardItemBuilder::new()
}
}
impl<S: BosStr> CardItemBuilder<S, card_item_state::Empty> {
pub fn new() -> Self {
CardItemBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> CardItemBuilder<S, St>
where
St: card_item_state::State,
St::AddedAt: card_item_state::IsUnset,
{
pub fn added_at(
mut self,
value: impl Into<Datetime>,
) -> CardItemBuilder<S, card_item_state::SetAddedAt<St>> {
self._fields.0 = Option::Some(value.into());
CardItemBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> CardItemBuilder<S, St>
where
St: card_item_state::State,
St::Ref: card_item_state::IsUnset,
{
pub fn r#ref(
mut self,
value: impl Into<CardRef<S>>,
) -> CardItemBuilder<S, card_item_state::SetRef<St>> {
self._fields.1 = Option::Some(value.into());
CardItemBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> CardItemBuilder<S, St>
where
St: card_item_state::State,
St::Ref: card_item_state::IsSet,
St::AddedAt: card_item_state::IsSet,
{
pub fn build(self) -> CardItem<S> {
CardItem {
added_at: self._fields.0.unwrap(),
r#ref: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> CardItem<S> {
CardItem {
added_at: self._fields.0.unwrap(),
r#ref: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_com_deckbelcher_collection_list() -> 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("com.deckbelcher.collection.list"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cardItem"),
LexUserType::Object(LexObject {
description: Some(CowStr::new_static("A card saved to the list.")),
required: Some(vec![
SmolStr::new_static("ref"),
SmolStr::new_static("addedAt"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("addedAt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Timestamp when this item was added to the list.",
)),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("ref"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.deckbelcher.defs#cardRef"),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("deckItem"),
LexUserType::Object(LexObject {
description: Some(CowStr::new_static("A deck saved to the list.")),
required: Some(vec![
SmolStr::new_static("ref"),
SmolStr::new_static("addedAt"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("addedAt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Timestamp when this item was added to the list.",
)),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("ref"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("A curated list of cards and/or decks.")),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![
SmolStr::new_static("name"),
SmolStr::new_static("items"),
SmolStr::new_static("createdAt"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Timestamp when the list was created.",
)),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.deckbelcher.richtext#document"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("items"),
LexObjectProperty::Array(LexArray {
description: Some(CowStr::new_static("Items in the list.")),
items: LexArrayItem::Union(LexRefUnion {
refs: vec![
CowStr::new_static("#cardItem"),
CowStr::new_static("#deckItem"),
],
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Name of the list.")),
max_length: Some(1280usize),
max_graphemes: Some(128usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("updatedAt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static(
"Timestamp when the list was last updated.",
)),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod deck_item_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 Ref;
type AddedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Ref = Unset;
type AddedAt = Unset;
}
pub struct SetRef<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRef<St> {}
impl<St: State> State for SetRef<St> {
type Ref = Set<members::r#ref>;
type AddedAt = St::AddedAt;
}
pub struct SetAddedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAddedAt<St> {}
impl<St: State> State for SetAddedAt<St> {
type Ref = St::Ref;
type AddedAt = Set<members::added_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct r#ref(());
pub struct added_at(());
}
}
pub struct DeckItemBuilder<S: BosStr, St: deck_item_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Datetime>, Option<StrongRef<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> DeckItem<S> {
pub fn new() -> DeckItemBuilder<S, deck_item_state::Empty> {
DeckItemBuilder::new()
}
}
impl<S: BosStr> DeckItemBuilder<S, deck_item_state::Empty> {
pub fn new() -> Self {
DeckItemBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DeckItemBuilder<S, St>
where
St: deck_item_state::State,
St::AddedAt: deck_item_state::IsUnset,
{
pub fn added_at(
mut self,
value: impl Into<Datetime>,
) -> DeckItemBuilder<S, deck_item_state::SetAddedAt<St>> {
self._fields.0 = Option::Some(value.into());
DeckItemBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DeckItemBuilder<S, St>
where
St: deck_item_state::State,
St::Ref: deck_item_state::IsUnset,
{
pub fn r#ref(
mut self,
value: impl Into<StrongRef<S>>,
) -> DeckItemBuilder<S, deck_item_state::SetRef<St>> {
self._fields.1 = Option::Some(value.into());
DeckItemBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DeckItemBuilder<S, St>
where
St: deck_item_state::State,
St::Ref: deck_item_state::IsSet,
St::AddedAt: deck_item_state::IsSet,
{
pub fn build(self) -> DeckItem<S> {
DeckItem {
added_at: self._fields.0.unwrap(),
r#ref: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> DeckItem<S> {
DeckItem {
added_at: self._fields.0.unwrap(),
r#ref: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
pub mod list_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 Items;
type Name;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Items = Unset;
type Name = Unset;
type CreatedAt = Unset;
}
pub struct SetItems<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetItems<St> {}
impl<St: State> State for SetItems<St> {
type Items = Set<members::items>;
type Name = St::Name;
type CreatedAt = St::CreatedAt;
}
pub struct SetName<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetName<St> {}
impl<St: State> State for SetName<St> {
type Items = St::Items;
type Name = Set<members::name>;
type CreatedAt = St::CreatedAt;
}
pub struct SetCreatedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCreatedAt<St> {}
impl<St: State> State for SetCreatedAt<St> {
type Items = St::Items;
type Name = St::Name;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct items(());
pub struct name(());
pub struct created_at(());
}
}
pub struct ListBuilder<S: BosStr, St: list_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Datetime>,
Option<Document<S>>,
Option<Vec<ListItemsItem<S>>>,
Option<S>,
Option<Datetime>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> List<S> {
pub fn new() -> ListBuilder<S, list_state::Empty> {
ListBuilder::new()
}
}
impl<S: BosStr> ListBuilder<S, list_state::Empty> {
pub fn new() -> Self {
ListBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ListBuilder<S, St>
where
St: list_state::State,
St::CreatedAt: list_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ListBuilder<S, list_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
ListBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: list_state::State> ListBuilder<S, St> {
pub fn description(mut self, value: impl Into<Option<Document<S>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<Document<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> ListBuilder<S, St>
where
St: list_state::State,
St::Items: list_state::IsUnset,
{
pub fn items(
mut self,
value: impl Into<Vec<ListItemsItem<S>>>,
) -> ListBuilder<S, list_state::SetItems<St>> {
self._fields.2 = Option::Some(value.into());
ListBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ListBuilder<S, St>
where
St: list_state::State,
St::Name: list_state::IsUnset,
{
pub fn name(mut self, value: impl Into<S>) -> ListBuilder<S, list_state::SetName<St>> {
self._fields.3 = Option::Some(value.into());
ListBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: list_state::State> ListBuilder<S, St> {
pub fn updated_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_updated_at(mut self, value: Option<Datetime>) -> Self {
self._fields.4 = value;
self
}
}
impl<S: BosStr, St> ListBuilder<S, St>
where
St: list_state::State,
St::Items: list_state::IsSet,
St::Name: list_state::IsSet,
St::CreatedAt: list_state::IsSet,
{
pub fn build(self) -> List<S> {
List {
created_at: self._fields.0.unwrap(),
description: self._fields.1,
items: self._fields.2.unwrap(),
name: self._fields.3.unwrap(),
updated_at: self._fields.4,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> List<S> {
List {
created_at: self._fields.0.unwrap(),
description: self._fields.1,
items: self._fields.2.unwrap(),
name: self._fields.3.unwrap(),
updated_at: self._fields.4,
extra_data: Some(extra_data),
}
}
}