2024-01-16 19:18:46 +00:00
|
|
|
//! A tour of the rsx! macro
|
2021-06-20 00:31:25 +00:00
|
|
|
//! ------------------------
|
|
|
|
//!
|
2024-01-16 19:18:46 +00:00
|
|
|
//! This example serves as an informal quick reference of all the things that the rsx! macro can do.
|
2021-06-20 00:31:25 +00:00
|
|
|
//!
|
|
|
|
//! 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
|
2024-06-11 01:47:07 +00:00
|
|
|
//! - Closures can capture their environment with the 'static lifetime
|
2021-06-20 00:31:25 +00:00
|
|
|
//!
|
|
|
|
//!
|
|
|
|
//! ### 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
|
2022-12-09 23:03:56 +00:00
|
|
|
|
2021-06-20 00:31:25 +00:00
|
|
|
fn main() {
|
2024-02-14 22:00:07 +00:00
|
|
|
launch(app)
|
2022-05-10 02:57:44 +00:00
|
|
|
}
|
|
|
|
|
2024-02-14 22:00:07 +00:00
|
|
|
use core::{fmt, str::FromStr};
|
|
|
|
use std::fmt::Display;
|
|
|
|
|
|
|
|
use baller::Baller;
|
|
|
|
use dioxus::prelude::*;
|
|
|
|
|
|
|
|
fn app() -> Element {
|
|
|
|
let formatting = "formatting!";
|
|
|
|
let formatting_tuple = ("a", "b");
|
|
|
|
let lazy_fmt = format_args!("lazily formatted text");
|
|
|
|
let asd = 123;
|
|
|
|
|
|
|
|
rsx! {
|
|
|
|
div {
|
|
|
|
// Elements
|
|
|
|
div {}
|
|
|
|
h1 {"Some text"}
|
|
|
|
h1 {"Some text with {formatting}"}
|
|
|
|
h1 {"Formatting basic expressions {formatting_tuple.0} and {formatting_tuple.1}"}
|
|
|
|
h1 {"Formatting without interpolation " {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
|
2024-07-03 00:09:57 +00:00
|
|
|
class: "{lazy_fmt}",
|
2024-02-14 22:00:07 +00:00
|
|
|
id: format_args!("attributes can be passed lazily with std::fmt::Arguments"),
|
|
|
|
class: "asd",
|
|
|
|
class: "{asd}",
|
|
|
|
// if statements can be used to conditionally render attributes
|
|
|
|
class: if formatting.contains("form") { "{asd}" },
|
2024-07-25 01:56:21 +00:00
|
|
|
// longer if chains also work
|
|
|
|
class: if formatting.contains("form") { "{asd}" } else if formatting.contains("my other form") { "{asd}" },
|
|
|
|
class: if formatting.contains("form") { "{asd}" } else if formatting.contains("my other form") { "{asd}" } else { "{asd}" },
|
2024-02-14 22:00:07 +00:00
|
|
|
div {
|
|
|
|
class: {
|
|
|
|
const WORD: &str = "expressions";
|
|
|
|
format_args!("Arguments can be passed in through curly braces for complex {WORD}")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-07-26 23:29:24 +00:00
|
|
|
|
|
|
|
// dangerous_inner_html for both html and svg
|
|
|
|
div { dangerous_inner_html: "<p>hello dangerous inner html</p>" }
|
|
|
|
svg { dangerous_inner_html: "<circle r='50' cx='50' cy='50' />" }
|
|
|
|
|
|
|
|
// Built-in idents can be used
|
2024-07-23 23:48:40 +00:00
|
|
|
use {}
|
|
|
|
link {
|
|
|
|
as: "asd"
|
|
|
|
}
|
2024-02-14 22:00:07 +00:00
|
|
|
|
|
|
|
// Expressions can be used in element position too:
|
Hotreloading of `for/if/body`, formatted strings, literals, component props, nested rsx, light CLI rewrite, cli TUI (#2258)
Hotreload the contents of for loops, if chains, component bodies, props, attributes, and any literals discovered in rsx!
Add a TUI renderer to the CLI.
Improve the CLI build system to be async and parallel.
Refactor RSX to allow partial expansion of expressions.
Merge autofmt implementations for consistency.
Merge the representation of elements and components under the hood.
Add a diagnostics system for rsx for improved error messages.
Drop interprocess and move to websockets for communication between the CLI and the server.
Assign IDs to nodes and attributes in a stable way to be used in non compiler contexts.
Add hotreloading to any body of component/for loop/if chain/etc.
---------
Co-authored-by: Evan Almloff <evanalmloff@gmail.com>
Co-authored-by: Liam Mitchell <liamkarlmitchell@gmail.com>
2024-07-18 02:11:18 +00:00
|
|
|
{rsx!(p { "More templating!" })}
|
2024-02-14 22:00:07 +00:00
|
|
|
|
|
|
|
// Iterators
|
2024-07-03 00:09:57 +00:00
|
|
|
{(0..10).map(|i| rsx!(li { "{i}" }))}
|
2024-02-14 22:00:07 +00:00
|
|
|
|
|
|
|
// Iterators within expressions
|
|
|
|
{
|
|
|
|
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}" }))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Matching
|
|
|
|
match true {
|
|
|
|
true => rsx!( h1 {"Top text"}),
|
|
|
|
false => rsx!( h1 {"Bottom text"})
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
2024-07-03 00:09:57 +00:00
|
|
|
{true.then(|| rsx!(div {}))}
|
2024-02-14 22:00:07 +00:00
|
|
|
|
|
|
|
// Alternatively, you can use the "if" syntax - but both branches must be resolve to Element
|
|
|
|
if false {
|
|
|
|
h1 {"Top text"}
|
|
|
|
} else {
|
|
|
|
h1 {"Bottom text"}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Using optionals for diverging branches
|
|
|
|
// Note that since this is wrapped in curlies, it's interpreted as an expression
|
|
|
|
{if true {
|
|
|
|
Some(rsx!(h1 {"Top text"}))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}}
|
|
|
|
|
|
|
|
// returning "None" without a diverging branch is a bit noisy... but rare in practice
|
2024-07-03 00:09:57 +00:00
|
|
|
{None as Option<()>}
|
2024-02-14 22:00:07 +00:00
|
|
|
|
|
|
|
// 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 {
|
|
|
|
"E"
|
|
|
|
"F"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Components
|
|
|
|
// Can accept any paths
|
|
|
|
// Notice how you still get syntax highlighting and IDE support :)
|
|
|
|
Baller {}
|
|
|
|
baller::Baller {}
|
|
|
|
crate::baller::Baller {}
|
|
|
|
|
|
|
|
// Can take properties
|
|
|
|
Taller { a: "asd" }
|
|
|
|
|
|
|
|
// Can take optional properties
|
|
|
|
Taller { a: "asd" }
|
|
|
|
|
|
|
|
// Can pass in props directly as an expression
|
|
|
|
{
|
2024-07-02 03:50:36 +00:00
|
|
|
let props = TallerProps {a: "hello", children: VNode::empty() };
|
2024-02-14 22:00:07 +00:00
|
|
|
rsx!(Taller { ..props })
|
|
|
|
}
|
|
|
|
|
|
|
|
// Spreading can also be overridden manually
|
|
|
|
Taller {
|
2024-07-03 00:09:57 +00:00
|
|
|
a: "not ballin!",
|
|
|
|
..TallerProps { a: "ballin!", children: VNode::empty() }
|
2024-02-14 22:00:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Can take children too!
|
|
|
|
Taller { a: "asd", div {"hello world!"} }
|
|
|
|
|
2024-07-03 04:46:11 +00:00
|
|
|
// This component's props are defined *inline* with the `component` macro
|
2024-02-14 22:00:07 +00:00
|
|
|
WithInline { text: "using functionc all syntax" }
|
|
|
|
|
|
|
|
// Components can be generic too
|
|
|
|
// This component takes i32 type to give you typed input
|
|
|
|
TypedInput::<i32> {}
|
|
|
|
|
|
|
|
// Type inference can be used too
|
|
|
|
TypedInput { initial: 10.0 }
|
|
|
|
|
2024-07-03 04:46:11 +00:00
|
|
|
// generic with the `component` macro
|
2024-07-02 03:50:36 +00:00
|
|
|
Label { text: "hello generic world!" }
|
2024-02-14 22:00:07 +00:00
|
|
|
Label { text: 99.9 }
|
|
|
|
|
|
|
|
// Lowercase components work too, as long as they are access using a path
|
|
|
|
baller::lowercase_component {}
|
|
|
|
|
|
|
|
// For in-scope lowercase components, use the `self` keyword
|
|
|
|
self::lowercase_helper {}
|
|
|
|
|
|
|
|
// helper functions
|
|
|
|
// Anything that implements IntoVnode can be dropped directly into Rsx
|
|
|
|
{helper("hello world!")}
|
|
|
|
|
|
|
|
// Strings can be supplied directly
|
|
|
|
{String::from("Hello world!")}
|
|
|
|
|
|
|
|
// So can format_args
|
|
|
|
{format_args!("Hello {}!", "world")}
|
|
|
|
|
|
|
|
// Or we can shell out to a helper function
|
|
|
|
{format_dollars(10, 50)}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn format_dollars(dollars: u32, cents: u32) -> String {
|
|
|
|
format!("${dollars}.{cents:02}")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn helper(text: &str) -> Element {
|
|
|
|
rsx! {
|
|
|
|
p { "{text}" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// no_case_check disables PascalCase checking if you *really* want a snake_case component.
|
|
|
|
// This will likely be deprecated/removed in a future update that will introduce a more polished linting system,
|
|
|
|
// something like Clippy.
|
|
|
|
#[component(no_case_check)]
|
|
|
|
fn lowercase_helper() -> Element {
|
|
|
|
rsx! {
|
|
|
|
"asd"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mod baller {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[component]
|
|
|
|
/// This component totally balls
|
|
|
|
pub fn Baller() -> Element {
|
|
|
|
rsx! { "ballin'" }
|
|
|
|
}
|
|
|
|
|
|
|
|
// no_case_check disables PascalCase checking if you *really* want a snake_case component.
|
|
|
|
// This will likely be deprecated/removed in a future update that will introduce a more polished linting system,
|
|
|
|
// something like Clippy.
|
|
|
|
#[component(no_case_check)]
|
|
|
|
pub fn lowercase_component() -> Element {
|
|
|
|
rsx! { "look ma, no uppercase" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-24 00:49:33 +00:00
|
|
|
/// Documentation for this component is visible within the rsx macro
|
2024-02-14 22:00:07 +00:00
|
|
|
#[component]
|
|
|
|
pub fn Taller(
|
|
|
|
/// Fields are documented and accessible in rsx!
|
|
|
|
a: &'static str,
|
|
|
|
children: Element,
|
|
|
|
) -> Element {
|
|
|
|
rsx! { {&children} }
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Props, Clone, PartialEq, Eq)]
|
|
|
|
pub struct TypedInputProps<T: 'static + Clone + PartialEq> {
|
|
|
|
#[props(optional, default)]
|
|
|
|
initial: Option<T>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
pub fn TypedInput<T>(props: TypedInputProps<T>) -> Element
|
|
|
|
where
|
|
|
|
T: FromStr + fmt::Display + PartialEq + Clone + 'static,
|
|
|
|
<T as FromStr>::Err: std::fmt::Display,
|
|
|
|
{
|
|
|
|
if let Some(props) = props.initial {
|
|
|
|
return rsx! { "{props}" };
|
|
|
|
}
|
|
|
|
|
2024-07-02 03:50:36 +00:00
|
|
|
VNode::empty()
|
2024-02-14 22:00:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[component]
|
|
|
|
fn WithInline(text: String) -> Element {
|
|
|
|
rsx! {
|
|
|
|
p { "{text}" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[component]
|
2024-05-20 18:01:04 +00:00
|
|
|
fn Label<T: Clone + PartialEq + Display + 'static>(text: T) -> Element {
|
2024-02-14 22:00:07 +00:00
|
|
|
rsx! {
|
|
|
|
p { "{text}" }
|
|
|
|
}
|
|
|
|
}
|