#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::UriValue;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::at_inlay::Response;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct Link<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub children: Option<Data<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub decoration: Option<LinkDecoration<S>>,
pub uri: UriValue<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 LinkDecoration<S: BosStr = DefaultStr> {
None,
Underline,
Other(S),
}
impl<S: BosStr> LinkDecoration<S> {
pub fn as_str(&self) -> &str {
match self {
Self::None => "none",
Self::Underline => "underline",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"none" => Self::None,
"underline" => Self::Underline,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for LinkDecoration<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for LinkDecoration<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for LinkDecoration<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 LinkDecoration<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 LinkDecoration<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for LinkDecoration<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = LinkDecoration<S::Output>;
fn into_static(self) -> Self::Output {
match self {
LinkDecoration::None => LinkDecoration::None,
LinkDecoration::Underline => LinkDecoration::Underline,
LinkDecoration::Other(v) => LinkDecoration::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct LinkOutput<S: BosStr = DefaultStr> {
#[serde(flatten)]
pub value: Response<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct LinkResponse;
impl jacquard_common::xrpc::XrpcResp for LinkResponse {
const NSID: &'static str = "org.atsui.Link";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = LinkOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for Link<S> {
const NSID: &'static str = "org.atsui.Link";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = LinkResponse;
}
pub struct LinkRequest;
impl jacquard_common::xrpc::XrpcEndpoint for LinkRequest {
const PATH: &'static str = "/xrpc/org.atsui.Link";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<S: BosStr> = Link<S>;
type Response = LinkResponse;
}
pub mod link_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 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 LinkBuilder<S: BosStr, St: link_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Data<S>>, Option<LinkDecoration<S>>, Option<UriValue<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Link<S> {
pub fn new() -> LinkBuilder<S, link_state::Empty> {
LinkBuilder::new()
}
}
impl<S: BosStr> LinkBuilder<S, link_state::Empty> {
pub fn new() -> Self {
LinkBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: link_state::State> LinkBuilder<S, St> {
pub fn children(mut self, value: impl Into<Option<Data<S>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_children(mut self, value: Option<Data<S>>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St: link_state::State> LinkBuilder<S, St> {
pub fn decoration(mut self, value: impl Into<Option<LinkDecoration<S>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_decoration(mut self, value: Option<LinkDecoration<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> LinkBuilder<S, St>
where
St: link_state::State,
St::Uri: link_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<UriValue<S>>,
) -> LinkBuilder<S, link_state::SetUri<St>> {
self._fields.2 = Option::Some(value.into());
LinkBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> LinkBuilder<S, St>
where
St: link_state::State,
St::Uri: link_state::IsSet,
{
pub fn build(self) -> Link<S> {
Link {
children: self._fields.0,
decoration: self._fields.1,
uri: self._fields.2.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Link<S> {
Link {
children: self._fields.0,
decoration: self._fields.1,
uri: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}