#[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};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[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",
rename = "games.firehose.barklesheep.reaction",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Reaction<S: BosStr = DefaultStr> {
pub created_at: Datetime,
pub emoji: S,
pub game_id: 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")]
pub struct ReactionGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Reaction<S>,
}
impl<S: BosStr> Reaction<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, ReactionRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ReactionRecord;
impl XrpcResp for ReactionRecord {
const NSID: &'static str = "games.firehose.barklesheep.reaction";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ReactionGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<ReactionGetRecordOutput<S>> for Reaction<S> {
fn from(output: ReactionGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Reaction<S> {
const NSID: &'static str = "games.firehose.barklesheep.reaction";
type Record = ReactionRecord;
}
impl Collection for ReactionRecord {
const NSID: &'static str = "games.firehose.barklesheep.reaction";
type Record = ReactionRecord;
}
impl<S: BosStr> LexiconSchema for Reaction<S> {
fn nsid() -> &'static str {
"games.firehose.barklesheep.reaction"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_games_firehose_barklesheep_reaction()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.emoji;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 4usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("emoji"),
max: 4usize,
actual: <str>::len(value.as_ref()),
});
}
}
Ok(())
}
}
pub mod reaction_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 CreatedAt;
type GameId;
type Emoji;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type GameId = Unset;
type Emoji = Unset;
}
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 CreatedAt = Set<members::created_at>;
type GameId = St::GameId;
type Emoji = St::Emoji;
}
pub struct SetGameId<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetGameId<St> {}
impl<St: State> State for SetGameId<St> {
type CreatedAt = St::CreatedAt;
type GameId = Set<members::game_id>;
type Emoji = St::Emoji;
}
pub struct SetEmoji<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetEmoji<St> {}
impl<St: State> State for SetEmoji<St> {
type CreatedAt = St::CreatedAt;
type GameId = St::GameId;
type Emoji = Set<members::emoji>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct game_id(());
pub struct emoji(());
}
}
pub struct ReactionBuilder<S: BosStr, St: reaction_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Datetime>, Option<S>, Option<S>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Reaction<S> {
pub fn new() -> ReactionBuilder<S, reaction_state::Empty> {
ReactionBuilder::new()
}
}
impl<S: BosStr> ReactionBuilder<S, reaction_state::Empty> {
pub fn new() -> Self {
ReactionBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ReactionBuilder<S, St>
where
St: reaction_state::State,
St::CreatedAt: reaction_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ReactionBuilder<S, reaction_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
ReactionBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ReactionBuilder<S, St>
where
St: reaction_state::State,
St::Emoji: reaction_state::IsUnset,
{
pub fn emoji(
mut self,
value: impl Into<S>,
) -> ReactionBuilder<S, reaction_state::SetEmoji<St>> {
self._fields.1 = Option::Some(value.into());
ReactionBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ReactionBuilder<S, St>
where
St: reaction_state::State,
St::GameId: reaction_state::IsUnset,
{
pub fn game_id(
mut self,
value: impl Into<S>,
) -> ReactionBuilder<S, reaction_state::SetGameId<St>> {
self._fields.2 = Option::Some(value.into());
ReactionBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ReactionBuilder<S, St>
where
St: reaction_state::State,
St::CreatedAt: reaction_state::IsSet,
St::GameId: reaction_state::IsSet,
St::Emoji: reaction_state::IsSet,
{
pub fn build(self) -> Reaction<S> {
Reaction {
created_at: self._fields.0.unwrap(),
emoji: self._fields.1.unwrap(),
game_id: self._fields.2.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Reaction<S> {
Reaction {
created_at: self._fields.0.unwrap(),
emoji: self._fields.1.unwrap(),
game_id: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_games_firehose_barklesheep_reaction() -> 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("games.firehose.barklesheep.reaction"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static("A reaction in a Barklesheep game")),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![
SmolStr::new_static("gameId"),
SmolStr::new_static("emoji"),
SmolStr::new_static("createdAt"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("emoji"),
LexObjectProperty::String(LexString {
max_length: Some(4usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("gameId"),
LexObjectProperty::String(LexString {
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}