dioxus/examples/rsx_usage.rs

202 lines
6.6 KiB
Rust
Raw Normal View History

2021-06-20 00:31:25 +00:00
//! A tour of the rsx! macro
//! ------------------------
//!
//! This example serves as an informal quick reference of all the things that the rsx! macro can do.
//!
//! A full in-depth reference guide is available at: https://www.notion.so/rsx-macro-basics-ef6e367dec124f4784e736d91b0d0b19
//!
//! ### Elements
//! - Create any element from its tag
//! - Accept compile-safe attributes for each tag
//! - Display documentation for elements
//! - Arguments instead of String
//! - Text
//! - Inline Styles
//!
//! ## General Concepts
//! - Iterators
//! - Keys
//! - Match statements
//! - Conditional Rendering
//!
//! ### Events
//! - Handle events with the "onXYZ" syntax
//! - Closures can capture their environment with the 'a lifetime
//!
//!
//! ### Components
//! - Components can be made by specifying the name
//! - Components can be referenced by path
//! - Components may have optional parameters
//! - Components may have their properties specified by spread syntax
//! - Components may accept child nodes
//! - Components that accept "onXYZ" get those closures bump allocated
//!
//! ### Fragments
//! - Allow fragments using the built-in `Fragment` component
//! - Accept a list of vnodes as children for a Fragment component
//! - Allow keyed fragments in iterators
//! - Allow top-level fragments
//!
fn main() {
2021-07-08 13:29:12 +00:00
dioxus::desktop::launch(Example, |c| c);
2021-06-20 00:31:25 +00:00
}
2021-06-24 15:09:38 +00:00
/// When trying to return "nothing" to Dioxus, you'll need to specify the type parameter or Rust will be sad.
/// This type alias specifices the type for you so you don't need to write "None as Option<()>"
const NONE_ELEMENT: Option<()> = None;
2021-06-20 00:31:25 +00:00
use baller::Baller;
2021-07-07 20:19:10 +00:00
use dioxus::prelude::*;
2021-06-20 00:31:25 +00:00
2021-10-16 21:37:28 +00:00
pub static Example: FC<()> = |(cx, props)| {
2021-06-24 15:09:38 +00:00
let formatting = "formatting!";
let formatting_tuple = ("a", "b");
let lazy_fmt = format_args!("lazily formatted text");
cx.render(rsx! {
2021-06-20 00:31:25 +00:00
div {
// Elements
2021-06-24 15:09:38 +00:00
div {}
h1 {"Some text"}
h1 {"Some text with {formatting}"}
h1 {"Formatting basic expressions {formatting_tuple.0} and {formatting_tuple.1}"}
h2 {
"Multiple"
"Text"
"Blocks"
"Use comments as separators in html"
}
div {
h1 {"multiple"}
h2 {"nested"}
h3 {"elements"}
}
div {
class: "my special div"
h1 {"Headers and attributes!"}
}
div {
// pass simple rust expressions in
class: lazy_fmt,
id: format_args!("attributes can be passed lazily with std::fmt::Arguments"),
div {
class: {
const WORD: &str = "expressions";
format_args!("Arguments can be passed in through curly braces for complex {}", WORD)
}
}
}
// Expressions can be used in element position too:
{rsx!(p { "More templating!" })}
2021-07-13 04:56:39 +00:00
// {html!(<p>"Even HTML templating!!"</p>)}
2021-06-24 15:09:38 +00:00
// Iterators
{(0..10).map(|i| rsx!(li { "{i}" }))}
{{
let data = std::collections::HashMap::<&'static str, &'static str>::new();
// Iterators *should* have keys when you can provide them.
// Keys make your app run faster. Make sure your keys are stable, unique, and predictable.
// Using an "ID" associated with your data is a good idea.
data.into_iter().map(|(k, v)| rsx!(li { key: "{k}" "{v}" }))
}}
2021-06-20 00:31:25 +00:00
2021-06-24 15:09:38 +00:00
// Matching
// Matching will throw a Rust error about "no two closures are the same type"
// To fix this, call "render" method or use the "in" syntax to produce VNodes.
// There's nothing we can do about it, sorry :/ (unless you want *really* unhygenic macros)
{match true {
2021-09-16 17:20:04 +00:00
true => rsx!(cx, h1 {"Top text"}),
2021-06-24 15:09:38 +00:00
false => cx.render(rsx!( h1 {"Bottom text"}))
}}
2021-06-20 00:31:25 +00:00
2021-06-24 15:09:38 +00:00
// Conditional rendering
// Dioxus conditional rendering is based around None/Some. We have no special syntax for conditionals.
// You can convert a bool condition to rsx! with .then and .or
{true.then(|| rsx!(div {}))}
2021-06-20 00:31:25 +00:00
2021-06-24 15:09:38 +00:00
// True conditions need to be rendered (same reasons as matching)
{if true {
2021-09-16 17:20:04 +00:00
rsx!(cx, h1 {"Top text"})
2021-06-24 15:09:38 +00:00
} else {
2021-09-16 17:20:04 +00:00
rsx!(cx, h1 {"Bottom text"})
2021-06-24 15:09:38 +00:00
}}
2021-06-20 00:31:25 +00:00
2021-06-24 15:09:38 +00:00
// returning "None" is a bit noisy... but rare in practice
{None as Option<()>}
// Use the Dioxus type-alias for less noise
{NONE_ELEMENT}
// can also just use empty fragments
Fragment {}
// Fragments let you insert groups of nodes without a parent.
// This lets you make components that insert elements as siblings without a container.
div {"A"}
Fragment {
div {"B"}
div {"C"}
Fragment {
"D"
Fragment {
"heavily nested fragments is an antipattern"
"they cause Dioxus to do unnecessary work"
"don't use them carelessly if you can help it"
}
}
}
// Components
2021-06-20 00:31:25 +00:00
// Can accept any paths
2021-06-24 15:09:38 +00:00
// Notice how you still get syntax highlighting and IDE support :)
Baller {}
2021-06-20 00:31:25 +00:00
baller::Baller { }
2021-06-24 15:09:38 +00:00
crate::baller::Baller {}
2021-06-17 22:00:32 +00:00
2021-06-20 00:31:25 +00:00
// Can take properties
Taller { a: "asd" }
2021-06-17 22:00:32 +00:00
2021-06-20 00:31:25 +00:00
// Can take optional properties
Taller { a: "asd" }
2021-06-25 13:31:13 +00:00
// Can pass in props directly as an expression
2021-06-24 15:09:38 +00:00
{{
let props = TallerProps {a: "hello"};
2021-06-25 13:31:13 +00:00
rsx!(Taller { ..props })
2021-06-24 15:09:38 +00:00
}}
2021-06-20 00:31:25 +00:00
2021-07-02 05:30:52 +00:00
// Spreading can also be overridden manually
Taller {
..TallerProps { a: "ballin!" }
a: "not ballin!"
}
// Can take children too!
2021-06-24 15:09:38 +00:00
Taller { a: "asd", div {"hello world!"} }
2021-06-17 22:00:32 +00:00
}
2021-06-20 00:31:25 +00:00
})
};
2021-06-17 22:00:32 +00:00
2021-06-20 00:31:25 +00:00
mod baller {
use super::*;
2021-09-21 17:42:52 +00:00
#[derive(PartialEq, Props)]
2021-06-20 00:31:25 +00:00
pub struct BallerProps {}
2021-06-17 22:00:32 +00:00
2021-06-24 15:09:38 +00:00
/// This component totally balls
2021-10-16 21:37:28 +00:00
pub fn Baller(_: Component<BallerProps>) -> DomTree {
2021-06-17 22:00:32 +00:00
todo!()
}
}
2021-06-20 00:31:25 +00:00
#[derive(Debug, PartialEq, Props)]
pub struct TallerProps {
a: &'static str,
}
2021-06-24 15:09:38 +00:00
/// This component is taller than most :)
2021-10-16 21:37:28 +00:00
pub fn Taller(_: Component<TallerProps>) -> DomTree {
2021-06-20 00:31:25 +00:00
let b = true;
todo!()
}