#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
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::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::{Serialize, Deserialize};
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "coop.hypha.spores.content.text",
tag = "$type"
)]
pub struct Text<'a> {
#[serde(borrow)]
pub content: CowStr<'a>,
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub format: Option<TextFormat<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub title: Option<CowStr<'a>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum TextFormat<'a> {
Markdown,
Html,
Text,
Other(CowStr<'a>),
}
impl<'a> TextFormat<'a> {
pub fn as_str(&self) -> &str {
match self {
Self::Markdown => "markdown",
Self::Html => "html",
Self::Text => "text",
Self::Other(s) => s.as_ref(),
}
}
}
impl<'a> From<&'a str> for TextFormat<'a> {
fn from(s: &'a str) -> Self {
match s {
"markdown" => Self::Markdown,
"html" => Self::Html,
"text" => Self::Text,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> From<String> for TextFormat<'a> {
fn from(s: String) -> Self {
match s.as_str() {
"markdown" => Self::Markdown,
"html" => Self::Html,
"text" => Self::Text,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> core::fmt::Display for TextFormat<'a> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<'a> AsRef<str> for TextFormat<'a> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<'a> serde::Serialize for TextFormat<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, 'a> serde::Deserialize<'de> for TextFormat<'a>
where
'de: 'a,
{
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = <&'de str>::deserialize(deserializer)?;
Ok(Self::from(s))
}
}
impl<'a> Default for TextFormat<'a> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl jacquard_common::IntoStatic for TextFormat<'_> {
type Output = TextFormat<'static>;
fn into_static(self) -> Self::Output {
match self {
TextFormat::Markdown => TextFormat::Markdown,
TextFormat::Html => TextFormat::Html,
TextFormat::Text => TextFormat::Text,
TextFormat::Other(v) => TextFormat::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct TextGetRecordOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cid: Option<Cid<'a>>,
#[serde(borrow)]
pub uri: AtUri<'a>,
#[serde(borrow)]
pub value: Text<'a>,
}
impl<'a> Text<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, TextRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct TextRecord;
impl XrpcResp for TextRecord {
const NSID: &'static str = "coop.hypha.spores.content.text";
const ENCODING: &'static str = "application/json";
type Output<'de> = TextGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<TextGetRecordOutput<'_>> for Text<'_> {
fn from(output: TextGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Text<'_> {
const NSID: &'static str = "coop.hypha.spores.content.text";
type Record = TextRecord;
}
impl Collection for TextRecord {
const NSID: &'static str = "coop.hypha.spores.content.text";
type Record = TextRecord;
}
impl<'a> LexiconSchema for Text<'a> {
fn nsid() -> &'static str {
"coop.hypha.spores.content.text"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_coop_hypha_spores_content_text()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.content;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 500000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("content"),
max: 500000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.content;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 50000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("content"),
max: 50000usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.title {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 2000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("title"),
max: 2000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.title {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 200usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("title"),
max: 200usize,
actual: count,
});
}
}
}
Ok(())
}
}
pub mod text_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 CreatedAt;
type Content;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type Content = Unset;
}
pub struct SetCreatedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCreatedAt<S> {}
impl<S: State> State for SetCreatedAt<S> {
type CreatedAt = Set<members::created_at>;
type Content = S::Content;
}
pub struct SetContent<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetContent<S> {}
impl<S: State> State for SetContent<S> {
type CreatedAt = S::CreatedAt;
type Content = Set<members::content>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct content(());
}
}
pub struct TextBuilder<'a, S: text_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<CowStr<'a>>,
Option<Datetime>,
Option<TextFormat<'a>>,
Option<CowStr<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Text<'a> {
pub fn new() -> TextBuilder<'a, text_state::Empty> {
TextBuilder::new()
}
}
impl<'a> TextBuilder<'a, text_state::Empty> {
pub fn new() -> Self {
TextBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> TextBuilder<'a, S>
where
S: text_state::State,
S::Content: text_state::IsUnset,
{
pub fn content(
mut self,
value: impl Into<CowStr<'a>>,
) -> TextBuilder<'a, text_state::SetContent<S>> {
self._fields.0 = Option::Some(value.into());
TextBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> TextBuilder<'a, S>
where
S: text_state::State,
S::CreatedAt: text_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> TextBuilder<'a, text_state::SetCreatedAt<S>> {
self._fields.1 = Option::Some(value.into());
TextBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: text_state::State> TextBuilder<'a, S> {
pub fn format(mut self, value: impl Into<Option<TextFormat<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_format(mut self, value: Option<TextFormat<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: text_state::State> TextBuilder<'a, S> {
pub fn title(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_title(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S> TextBuilder<'a, S>
where
S: text_state::State,
S::CreatedAt: text_state::IsSet,
S::Content: text_state::IsSet,
{
pub fn build(self) -> Text<'a> {
Text {
content: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
format: self._fields.2,
title: self._fields.3,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Text<'a> {
Text {
content: self._fields.0.unwrap(),
created_at: self._fields.1.unwrap(),
format: self._fields.2,
title: self._fields.3,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_coop_hypha_spores_content_text() -> LexiconDoc<'static> {
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
use alloc::collections::BTreeMap;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("coop.hypha.spores.content.text"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"Custom content block for spores.garden sites",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("content"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("content"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Block content")),
max_length: Some(500000usize),
max_graphemes: Some(50000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Creation timestamp")),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("format"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Content format")),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
description: Some(CowStr::new_static("Block title")),
max_length: Some(2000usize),
max_graphemes: Some(200usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}