#[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, Datetime};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::xrpc::XrpcResp;
use jacquard_derive::{IntoStatic, lexicon, 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::com_atproto::repo::strong_ref::StrongRef;
use crate::com_deckbelcher::CardRef;
use crate::com_deckbelcher::richtext::Document;
use crate::com_deckbelcher::collection::list;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct CardItem<'a> {
pub added_at: Datetime,
#[serde(borrow)]
pub r#ref: CardRef<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct DeckItem<'a> {
pub added_at: Datetime,
#[serde(borrow)]
pub r#ref: StrongRef<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "com.deckbelcher.collection.list",
tag = "$type"
)]
pub struct List<'a> {
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description: Option<Document<'a>>,
#[serde(borrow)]
pub items: Vec<ListItemsItem<'a>>,
#[serde(borrow)]
pub name: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
pub updated_at: Option<Datetime>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "'de: 'a"))]
pub enum ListItemsItem<'a> {
#[serde(rename = "com.deckbelcher.collection.list#cardItem")]
CardItem(Box<list::CardItem<'a>>),
#[serde(rename = "com.deckbelcher.collection.list#deckItem")]
DeckItem(Box<list::DeckItem<'a>>),
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ListGetRecordOutput<'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: List<'a>,
}
impl<'a> List<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, ListRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
impl<'a> LexiconSchema for CardItem<'a> {
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<'a> LexiconSchema for DeckItem<'a> {
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<'de> = ListGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<ListGetRecordOutput<'_>> for List<'_> {
fn from(output: ListGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for List<'_> {
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<'a> LexiconSchema for List<'a> {
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::{Set, Unset, IsSet, IsUnset};
#[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<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRef<S> {}
impl<S: State> State for SetRef<S> {
type Ref = Set<members::r#ref>;
type AddedAt = S::AddedAt;
}
pub struct SetAddedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAddedAt<S> {}
impl<S: State> State for SetAddedAt<S> {
type Ref = S::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<'a, S: card_item_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Datetime>, Option<CardRef<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> CardItem<'a> {
pub fn new() -> CardItemBuilder<'a, card_item_state::Empty> {
CardItemBuilder::new()
}
}
impl<'a> CardItemBuilder<'a, card_item_state::Empty> {
pub fn new() -> Self {
CardItemBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> CardItemBuilder<'a, S>
where
S: card_item_state::State,
S::AddedAt: card_item_state::IsUnset,
{
pub fn added_at(
mut self,
value: impl Into<Datetime>,
) -> CardItemBuilder<'a, card_item_state::SetAddedAt<S>> {
self._fields.0 = Option::Some(value.into());
CardItemBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> CardItemBuilder<'a, S>
where
S: card_item_state::State,
S::Ref: card_item_state::IsUnset,
{
pub fn r#ref(
mut self,
value: impl Into<CardRef<'a>>,
) -> CardItemBuilder<'a, card_item_state::SetRef<S>> {
self._fields.1 = Option::Some(value.into());
CardItemBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> CardItemBuilder<'a, S>
where
S: card_item_state::State,
S::Ref: card_item_state::IsSet,
S::AddedAt: card_item_state::IsSet,
{
pub fn build(self) -> CardItem<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> CardItem<'a> {
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> {
#[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("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::{Set, Unset, IsSet, IsUnset};
#[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<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRef<S> {}
impl<S: State> State for SetRef<S> {
type Ref = Set<members::r#ref>;
type AddedAt = S::AddedAt;
}
pub struct SetAddedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAddedAt<S> {}
impl<S: State> State for SetAddedAt<S> {
type Ref = S::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<'a, S: deck_item_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Datetime>, Option<StrongRef<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> DeckItem<'a> {
pub fn new() -> DeckItemBuilder<'a, deck_item_state::Empty> {
DeckItemBuilder::new()
}
}
impl<'a> DeckItemBuilder<'a, deck_item_state::Empty> {
pub fn new() -> Self {
DeckItemBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> DeckItemBuilder<'a, S>
where
S: deck_item_state::State,
S::AddedAt: deck_item_state::IsUnset,
{
pub fn added_at(
mut self,
value: impl Into<Datetime>,
) -> DeckItemBuilder<'a, deck_item_state::SetAddedAt<S>> {
self._fields.0 = Option::Some(value.into());
DeckItemBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> DeckItemBuilder<'a, S>
where
S: deck_item_state::State,
S::Ref: deck_item_state::IsUnset,
{
pub fn r#ref(
mut self,
value: impl Into<StrongRef<'a>>,
) -> DeckItemBuilder<'a, deck_item_state::SetRef<S>> {
self._fields.1 = Option::Some(value.into());
DeckItemBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> DeckItemBuilder<'a, S>
where
S: deck_item_state::State,
S::Ref: deck_item_state::IsSet,
S::AddedAt: deck_item_state::IsSet,
{
pub fn build(self) -> DeckItem<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> DeckItem<'a> {
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::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Name;
type Items;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Name = Unset;
type Items = Unset;
type CreatedAt = Unset;
}
pub struct SetName<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetName<S> {}
impl<S: State> State for SetName<S> {
type Name = Set<members::name>;
type Items = S::Items;
type CreatedAt = S::CreatedAt;
}
pub struct SetItems<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetItems<S> {}
impl<S: State> State for SetItems<S> {
type Name = S::Name;
type Items = Set<members::items>;
type CreatedAt = S::CreatedAt;
}
pub struct SetCreatedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCreatedAt<S> {}
impl<S: State> State for SetCreatedAt<S> {
type Name = S::Name;
type Items = S::Items;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct name(());
pub struct items(());
pub struct created_at(());
}
}
pub struct ListBuilder<'a, S: list_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Datetime>,
Option<Document<'a>>,
Option<Vec<ListItemsItem<'a>>>,
Option<CowStr<'a>>,
Option<Datetime>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> List<'a> {
pub fn new() -> ListBuilder<'a, list_state::Empty> {
ListBuilder::new()
}
}
impl<'a> ListBuilder<'a, list_state::Empty> {
pub fn new() -> Self {
ListBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> ListBuilder<'a, S>
where
S: list_state::State,
S::CreatedAt: list_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ListBuilder<'a, list_state::SetCreatedAt<S>> {
self._fields.0 = Option::Some(value.into());
ListBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: list_state::State> ListBuilder<'a, S> {
pub fn description(mut self, value: impl Into<Option<Document<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<Document<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S> ListBuilder<'a, S>
where
S: list_state::State,
S::Items: list_state::IsUnset,
{
pub fn items(
mut self,
value: impl Into<Vec<ListItemsItem<'a>>>,
) -> ListBuilder<'a, list_state::SetItems<S>> {
self._fields.2 = Option::Some(value.into());
ListBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ListBuilder<'a, S>
where
S: list_state::State,
S::Name: list_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<CowStr<'a>>,
) -> ListBuilder<'a, list_state::SetName<S>> {
self._fields.3 = Option::Some(value.into());
ListBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: list_state::State> ListBuilder<'a, S> {
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<'a, S> ListBuilder<'a, S>
where
S: list_state::State,
S::Name: list_state::IsSet,
S::Items: list_state::IsSet,
S::CreatedAt: list_state::IsSet,
{
pub fn build(self) -> List<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> List<'a> {
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),
}
}
}