#[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};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Deck<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub card_refs: Option<Vec<AtUri<'a>>>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub language: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub license: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub source_refs: Option<Vec<AtUri<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub tags: Option<Vec<CowStr<'a>>>,
#[serde(borrow)]
pub title: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
pub updated_at: Option<Datetime>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub visibility: Option<DeckVisibility<'a>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum DeckVisibility<'a> {
Private,
Unlisted,
Public,
Other(CowStr<'a>),
}
impl<'a> DeckVisibility<'a> {
pub fn as_str(&self) -> &str {
match self {
Self::Private => "private",
Self::Unlisted => "unlisted",
Self::Public => "public",
Self::Other(s) => s.as_ref(),
}
}
}
impl<'a> From<&'a str> for DeckVisibility<'a> {
fn from(s: &'a str) -> Self {
match s {
"private" => Self::Private,
"unlisted" => Self::Unlisted,
"public" => Self::Public,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> From<String> for DeckVisibility<'a> {
fn from(s: String) -> Self {
match s.as_str() {
"private" => Self::Private,
"unlisted" => Self::Unlisted,
"public" => Self::Public,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> core::fmt::Display for DeckVisibility<'a> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<'a> AsRef<str> for DeckVisibility<'a> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<'a> serde::Serialize for DeckVisibility<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, 'a> serde::Deserialize<'de> for DeckVisibility<'a>
where
'de: 'a,
{
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = <&'de str>::deserialize(deserializer)?;
Ok(Self::from(s))
}
}
impl<'a> Default for DeckVisibility<'a> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl jacquard_common::IntoStatic for DeckVisibility<'_> {
type Output = DeckVisibility<'static>;
fn into_static(self) -> Self::Output {
match self {
DeckVisibility::Private => DeckVisibility::Private,
DeckVisibility::Unlisted => DeckVisibility::Unlisted,
DeckVisibility::Public => DeckVisibility::Public,
DeckVisibility::Other(v) => DeckVisibility::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct DeckGetRecordOutput<'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: Deck<'a>,
}
impl<'a> Deck<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, DeckRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct DeckRecord;
impl XrpcResp for DeckRecord {
const NSID: &'static str = "org.stormlightlabs.malfestio.deck";
const ENCODING: &'static str = "application/json";
type Output<'de> = DeckGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<DeckGetRecordOutput<'_>> for Deck<'_> {
fn from(output: DeckGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Deck<'_> {
const NSID: &'static str = "org.stormlightlabs.malfestio.deck";
type Record = DeckRecord;
}
impl Collection for DeckRecord {
const NSID: &'static str = "org.stormlightlabs.malfestio.deck";
type Record = DeckRecord;
}
impl<'a> LexiconSchema for Deck<'a> {
fn nsid() -> &'static str {
"org.stormlightlabs.malfestio.deck"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_org_stormlightlabs_malfestio_deck()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 3000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 3000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.language {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 20usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("language"),
max: 20usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.license {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 500usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("license"),
max: 500usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.tags {
#[allow(unused_comparisons)]
if value.len() > 64usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("tags"),
max: 64usize,
actual: value.len(),
});
}
}
{
let value = &self.title;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 300usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("title"),
max: 300usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.visibility {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 100usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("visibility"),
max: 100usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod deck_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 Title;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Title = Unset;
type CreatedAt = Unset;
}
pub struct SetTitle<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetTitle<S> {}
impl<S: State> State for SetTitle<S> {
type Title = Set<members::title>;
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 Title = S::Title;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct title(());
pub struct created_at(());
}
}
pub struct DeckBuilder<'a, S: deck_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<Vec<AtUri<'a>>>,
Option<Datetime>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<Vec<AtUri<'a>>>,
Option<Vec<CowStr<'a>>>,
Option<CowStr<'a>>,
Option<Datetime>,
Option<DeckVisibility<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Deck<'a> {
pub fn new() -> DeckBuilder<'a, deck_state::Empty> {
DeckBuilder::new()
}
}
impl<'a> DeckBuilder<'a, deck_state::Empty> {
pub fn new() -> Self {
DeckBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: deck_state::State> DeckBuilder<'a, S> {
pub fn card_refs(mut self, value: impl Into<Option<Vec<AtUri<'a>>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_card_refs(mut self, value: Option<Vec<AtUri<'a>>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> DeckBuilder<'a, S>
where
S: deck_state::State,
S::CreatedAt: deck_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> DeckBuilder<'a, deck_state::SetCreatedAt<S>> {
self._fields.1 = Option::Some(value.into());
DeckBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: deck_state::State> DeckBuilder<'a, S> {
pub fn description(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: deck_state::State> DeckBuilder<'a, S> {
pub fn language(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_language(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: deck_state::State> DeckBuilder<'a, S> {
pub fn license(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_license(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S: deck_state::State> DeckBuilder<'a, S> {
pub fn source_refs(mut self, value: impl Into<Option<Vec<AtUri<'a>>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_source_refs(mut self, value: Option<Vec<AtUri<'a>>>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S: deck_state::State> DeckBuilder<'a, S> {
pub fn tags(mut self, value: impl Into<Option<Vec<CowStr<'a>>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_tags(mut self, value: Option<Vec<CowStr<'a>>>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S> DeckBuilder<'a, S>
where
S: deck_state::State,
S::Title: deck_state::IsUnset,
{
pub fn title(
mut self,
value: impl Into<CowStr<'a>>,
) -> DeckBuilder<'a, deck_state::SetTitle<S>> {
self._fields.7 = Option::Some(value.into());
DeckBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: deck_state::State> DeckBuilder<'a, S> {
pub fn updated_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_updated_at(mut self, value: Option<Datetime>) -> Self {
self._fields.8 = value;
self
}
}
impl<'a, S: deck_state::State> DeckBuilder<'a, S> {
pub fn visibility(mut self, value: impl Into<Option<DeckVisibility<'a>>>) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_visibility(mut self, value: Option<DeckVisibility<'a>>) -> Self {
self._fields.9 = value;
self
}
}
impl<'a, S> DeckBuilder<'a, S>
where
S: deck_state::State,
S::Title: deck_state::IsSet,
S::CreatedAt: deck_state::IsSet,
{
pub fn build(self) -> Deck<'a> {
Deck {
card_refs: self._fields.0,
created_at: self._fields.1.unwrap(),
description: self._fields.2,
language: self._fields.3,
license: self._fields.4,
source_refs: self._fields.5,
tags: self._fields.6,
title: self._fields.7.unwrap(),
updated_at: self._fields.8,
visibility: self._fields.9,
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>,
>,
) -> Deck<'a> {
Deck {
card_refs: self._fields.0,
created_at: self._fields.1.unwrap(),
description: self._fields.2,
language: self._fields.3,
license: self._fields.4,
source_refs: self._fields.5,
tags: self._fields.6,
title: self._fields.7.unwrap(),
updated_at: self._fields.8,
visibility: self._fields.9,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_org_stormlightlabs_malfestio_deck() -> 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("org.stormlightlabs.malfestio.deck"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static("A collection of flashcards and sources."),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("title"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cardRefs"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"Ordered list of references to cards in this deck.",
),
),
items: LexArrayItem::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Description of the deck context."),
),
max_length: Some(3000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("language"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Language code for the deck content (e.g., 'en', 'es', 'fr').",
),
),
max_length: Some(20usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("license"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("License for the deck content."),
),
max_length: Some(500usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("sourceRefs"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"References to source materials (articles, lectures) used in this deck.",
),
),
items: LexArrayItem::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tags"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::String(LexString {
max_length: Some(100usize),
..Default::default()
}),
max_length: Some(64usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Title of the deck.")),
max_length: Some(300usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("updatedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Timestamp of last update."),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("visibility"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Visibility setting for the deck."),
),
max_length: Some(100usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}