#[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::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::app_rocksky::feed::SearchResultsView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct Search<S: BosStr = DefaultStr> {
pub query: S,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct SearchOutput<S: BosStr = DefaultStr> {
#[serde(flatten)]
pub value: SearchResultsView<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct SearchResponse;
impl jacquard_common::xrpc::XrpcResp for SearchResponse {
const NSID: &'static str = "app.rocksky.feed.search";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = SearchOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for Search<S> {
const NSID: &'static str = "app.rocksky.feed.search";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = SearchResponse;
}
pub struct SearchRequest;
impl jacquard_common::xrpc::XrpcEndpoint for SearchRequest {
const PATH: &'static str = "/xrpc/app.rocksky.feed.search";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = Search<S>;
type Response = SearchResponse;
}
pub mod search_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 Query;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Query = Unset;
}
pub struct SetQuery<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetQuery<St> {}
impl<St: State> State for SetQuery<St> {
type Query = Set<members::query>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct query(());
}
}
pub struct SearchBuilder<S: BosStr, St: search_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Search<S> {
pub fn new() -> SearchBuilder<S, search_state::Empty> {
SearchBuilder::new()
}
}
impl<S: BosStr> SearchBuilder<S, search_state::Empty> {
pub fn new() -> Self {
SearchBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> SearchBuilder<S, St>
where
St: search_state::State,
St::Query: search_state::IsUnset,
{
pub fn query(
mut self,
value: impl Into<S>,
) -> SearchBuilder<S, search_state::SetQuery<St>> {
self._fields.0 = Option::Some(value.into());
SearchBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> SearchBuilder<S, St>
where
St: search_state::State,
St::Query: search_state::IsSet,
{
pub fn build(self) -> Search<S> {
Search {
query: self._fields.0.unwrap(),
}
}
}