extern crate self as ftd_rt;
mod condition;
mod dnode;
mod event;
mod html;
mod ui;
#[cfg(feature = "wasm")]
mod wasm;
pub use condition::Condition;
pub use event::{Action, Event};
pub use html::{anchor, color, length, overflow, Node};
pub use ui::{
Anchor, AttributeType, Code, Color, Column, Common, ConditionalAttribute, ConditionalValue,
Container, Element, ExternalFont, FontDisplay, GradientDirection, IFrame, Image, Input, Length,
NamedFont, Overflow, Position, Region, Row, Scene, Style, Text, TextAlign, TextBlock,
TextFormat, Weight,
};
#[derive(serde::Serialize, serde::Deserialize, Eq, PartialEq, Debug, Default, Clone)]
pub struct Rendered {
pub original: String,
pub rendered: String,
}
impl From<&str> for Rendered {
fn from(item: &str) -> Self {
Rendered {
original: item.to_string(),
rendered: item.to_string(),
}
}
}
#[derive(thiserror::Error, Debug)]
pub enum Error {
#[error("invalid input: {message}")]
InvalidInput { message: String, context: String },
}
pub type Map = std::collections::BTreeMap<String, String>;
type Result<T> = std::result::Result<T, Error>;
#[derive(serde::Deserialize)]
#[cfg_attr(
not(feature = "wasm"),
derive(serde::Serialize, PartialEq, Debug, Default, Clone)
)]
pub struct Document {
pub html: String,
pub data: ftd_rt::DataDependenciesMap,
pub external_children: ExternalChildrenDependenciesMap,
}
pub fn e<T, S1, S2>(m: S1, c: S2) -> Result<T>
where
S1: Into<String>,
S2: Into<String>,
{
Err(Error::InvalidInput {
message: m.into(),
context: c.into(),
})
}
pub fn get_name<'a, 'b>(prefix: &'a str, s: &'b str, doc_id: &str) -> ftd_rt::Result<&'b str> {
match s.split_once(' ') {
Some((p1, p2)) => {
if p1 != prefix {
return ftd_rt::e(format!("must start with {}", prefix), doc_id);
}
Ok(p2)
}
None => ftd_rt::e(
format!("{} does not contain space (prefix={})", s, prefix),
doc_id,
),
}
}
pub type DataDependenciesMap = std::collections::BTreeMap<String, Data>;
#[derive(serde::Deserialize)]
#[cfg_attr(
not(feature = "wasm"),
derive(serde::Serialize, PartialEq, Debug, Default, Clone)
)]
pub struct Data {
pub value: String,
pub dependencies: ftd_rt::Map,
}
pub type ExternalChildrenDependenciesMap =
std::collections::BTreeMap<String, Vec<ExternalChildrenCondition>>;
#[derive(serde::Deserialize)]
#[cfg_attr(
not(feature = "wasm"),
derive(serde::Serialize, PartialEq, Debug, Default, Clone)
)]
pub struct ExternalChildrenCondition {
pub condition: Vec<String>,
pub set_at: String,
}
#[derive(serde::Deserialize)]
#[cfg_attr(
not(feature = "wasm"),
derive(PartialEq, Debug, Clone, serde::Serialize)
)]
pub enum DependencyType {
Style,
Visible,
Value,
}
#[derive(serde::Deserialize)]
#[cfg_attr(
not(feature = "wasm"),
derive(serde::Serialize, PartialEq, Debug, Clone)
)]
pub struct Dependencies {
pub dependency_type: DependencyType,
pub condition: Option<String>,
pub parameters: std::collections::BTreeMap<String, ValueWithDefault>,
}
#[derive(serde::Deserialize)]
#[cfg_attr(
not(feature = "wasm"),
derive(serde::Serialize, PartialEq, Debug, Clone)
)]
pub struct ValueWithDefault {
pub value: ConditionalValue,
pub default: Option<ConditionalValue>,
}
#[cfg(test)]
mod test {
#[test]
fn get_name() {
assert_eq!(super::get_name("fn", "fn foo").unwrap(), "foo")
}
}