pub mod closed;
pub mod open;
#[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};
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 = "sh.tangled.repo.issue.state",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct State<S: BosStr = DefaultStr> {
pub issue: AtUri<S>,
pub state: StateState<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 StateState<S: BosStr = DefaultStr> {
ShTangledRepoIssueStateOpen,
ShTangledRepoIssueStateClosed,
Other(S),
}
impl<S: BosStr> StateState<S> {
pub fn as_str(&self) -> &str {
match self {
Self::ShTangledRepoIssueStateOpen => "sh.tangled.repo.issue.state.open",
Self::ShTangledRepoIssueStateClosed => "sh.tangled.repo.issue.state.closed",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"sh.tangled.repo.issue.state.open" => Self::ShTangledRepoIssueStateOpen,
"sh.tangled.repo.issue.state.closed" => Self::ShTangledRepoIssueStateClosed,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for StateState<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for StateState<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for StateState<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 StateState<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 StateState<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for StateState<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = StateState<S::Output>;
fn into_static(self) -> Self::Output {
match self {
StateState::ShTangledRepoIssueStateOpen => StateState::ShTangledRepoIssueStateOpen,
StateState::ShTangledRepoIssueStateClosed => StateState::ShTangledRepoIssueStateClosed,
StateState::Other(v) => StateState::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct StateGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: State<S>,
}
impl<S: BosStr> State<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, StateRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct StateRecord;
impl XrpcResp for StateRecord {
const NSID: &'static str = "sh.tangled.repo.issue.state";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = StateGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<StateGetRecordOutput<S>> for State<S> {
fn from(output: StateGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for State<S> {
const NSID: &'static str = "sh.tangled.repo.issue.state";
type Record = StateRecord;
}
impl Collection for StateRecord {
const NSID: &'static str = "sh.tangled.repo.issue.state";
type Record = StateRecord;
}
impl<S: BosStr> LexiconSchema for State<S> {
fn nsid() -> &'static str {
"sh.tangled.repo.issue.state"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_sh_tangled_repo_issue_state()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod state_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 Issue;
type State;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Issue = Unset;
type State = Unset;
}
pub struct SetIssue<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetIssue<St> {}
impl<St: State> State for SetIssue<St> {
type Issue = Set<members::issue>;
type State = St::State;
}
pub struct SetState<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetState<St> {}
impl<St: State> State for SetState<St> {
type Issue = St::Issue;
type State = Set<members::state>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct issue(());
pub struct state(());
}
}
pub struct StateBuilder<S: BosStr, St: state_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<AtUri<S>>, Option<StateState<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> State<S> {
pub fn new() -> StateBuilder<S, state_state::Empty> {
StateBuilder::new()
}
}
impl<S: BosStr> StateBuilder<S, state_state::Empty> {
pub fn new() -> Self {
StateBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> StateBuilder<S, St>
where
St: state_state::State,
St::Issue: state_state::IsUnset,
{
pub fn issue(
mut self,
value: impl Into<AtUri<S>>,
) -> StateBuilder<S, state_state::SetIssue<St>> {
self._fields.0 = Option::Some(value.into());
StateBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> StateBuilder<S, St>
where
St: state_state::State,
St::State: state_state::IsUnset,
{
pub fn state(
mut self,
value: impl Into<StateState<S>>,
) -> StateBuilder<S, state_state::SetState<St>> {
self._fields.1 = Option::Some(value.into());
StateBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> StateBuilder<S, St>
where
St: state_state::State,
St::Issue: state_state::IsSet,
St::State: state_state::IsSet,
{
pub fn build(self) -> State<S> {
State {
issue: self._fields.0.unwrap(),
state: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> State<S> {
State {
issue: self._fields.0.unwrap(),
state: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_sh_tangled_repo_issue_state() -> 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("sh.tangled.repo.issue.state"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![
SmolStr::new_static("issue"),
SmolStr::new_static("state"),
]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("issue"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("state"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("state of the issue")),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}