#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::AtUri;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct ProfileTab<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_profile_tab_limit")]
pub limit: Option<i64>,
#[serde(skip_serializing_if = "Option::is_none")]
pub tab: Option<ProfileTabTab<S>>,
pub uri: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum ProfileTabTab<S: BosStr = DefaultStr> {
PostsAndAuthorThreads,
PostsAndReplies,
Other(S),
}
impl<S: BosStr> ProfileTabTab<S> {
pub fn as_str(&self) -> &str {
match self {
Self::PostsAndAuthorThreads => "posts_and_author_threads",
Self::PostsAndReplies => "posts_and_replies",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"posts_and_author_threads" => Self::PostsAndAuthorThreads,
"posts_and_replies" => Self::PostsAndReplies,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for ProfileTabTab<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for ProfileTabTab<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for ProfileTabTab<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for ProfileTabTab<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for ProfileTabTab<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for ProfileTabTab<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = ProfileTabTab<S::Output>;
fn into_static(self) -> Self::Output {
match self {
ProfileTabTab::PostsAndAuthorThreads => ProfileTabTab::PostsAndAuthorThreads,
ProfileTabTab::PostsAndReplies => ProfileTabTab::PostsAndReplies,
ProfileTabTab::Other(v) => ProfileTabTab::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct ProfileTabOutput<S: BosStr = DefaultStr> {
#[serde(flatten)]
pub value: Data<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct ProfileTabResponse;
impl jacquard_common::xrpc::XrpcResp for ProfileTabResponse {
const NSID: &'static str = "mov.danabra.ProfileTab";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ProfileTabOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for ProfileTab<S> {
const NSID: &'static str = "mov.danabra.ProfileTab";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Response = ProfileTabResponse;
}
pub struct ProfileTabRequest;
impl jacquard_common::xrpc::XrpcEndpoint for ProfileTabRequest {
const PATH: &'static str = "/xrpc/mov.danabra.ProfileTab";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Request<S: BosStr> = ProfileTab<S>;
type Response = ProfileTabResponse;
}
fn _default_profile_tab_limit() -> Option<i64> {
Some(10i64)
}
pub mod profile_tab_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 Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
}
pub struct SetUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUri<St> {}
impl<St: State> State for SetUri<St> {
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
}
}
pub struct ProfileTabBuilder<S: BosStr, St: profile_tab_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<i64>, Option<ProfileTabTab<S>>, Option<AtUri<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> ProfileTab<S> {
pub fn new() -> ProfileTabBuilder<S, profile_tab_state::Empty> {
ProfileTabBuilder::new()
}
}
impl<S: BosStr> ProfileTabBuilder<S, profile_tab_state::Empty> {
pub fn new() -> Self {
ProfileTabBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: profile_tab_state::State> ProfileTabBuilder<S, St> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St: profile_tab_state::State> ProfileTabBuilder<S, St> {
pub fn tab(mut self, value: impl Into<Option<ProfileTabTab<S>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_tab(mut self, value: Option<ProfileTabTab<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> ProfileTabBuilder<S, St>
where
St: profile_tab_state::State,
St::Uri: profile_tab_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<S>>,
) -> ProfileTabBuilder<S, profile_tab_state::SetUri<St>> {
self._fields.2 = Option::Some(value.into());
ProfileTabBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ProfileTabBuilder<S, St>
where
St: profile_tab_state::State,
St::Uri: profile_tab_state::IsSet,
{
pub fn build(self) -> ProfileTab<S> {
ProfileTab {
limit: self._fields.0.or_else(|| Some(10i64)),
tab: self._fields.1,
uri: self._fields.2.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> ProfileTab<S> {
ProfileTab {
limit: self._fields.0.or_else(|| Some(10i64)),
tab: self._fields.1,
uri: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}