dioxus/packages/core-macro/examples/rsxt.rs

126 lines
3.2 KiB
Rust
Raw Normal View History

2021-03-02 05:14:28 +00:00
pub mod dioxus {
pub mod builder {
pub struct Builder;
2021-03-02 03:55:20 +00:00
2021-03-02 05:14:28 +00:00
struct AttrVal;
impl Into<AttrVal> for &'static str {
fn into(self) -> AttrVal {
todo!()
}
}
impl Into<AttrVal> for String {
fn into(self) -> AttrVal {
todo!()
}
}
// impl<T> From<T> for AttrVal {
// fn from(_: T) -> Self {
// todo!()
// }
// }
2021-03-02 03:55:20 +00:00
2021-03-02 05:14:28 +00:00
impl Builder {
// fn attr<T>(mut self, key: &str, value: impl Into<AttrVal>) -> Self {
2021-03-11 00:42:31 +00:00
pub fn attr<T>(self, _key: &str, _value: T) -> Self {
2021-03-02 05:14:28 +00:00
Self
2021-03-02 03:55:20 +00:00
}
2021-03-11 00:42:31 +00:00
pub fn on<T>(self, _key: &str, _value: T) -> Self {
2021-03-02 05:14:28 +00:00
Self
2021-03-02 03:55:20 +00:00
}
2021-03-02 05:14:28 +00:00
2021-03-11 00:42:31 +00:00
pub fn finish(self) {
2021-03-02 05:14:28 +00:00
// Self
2021-03-02 03:55:20 +00:00
}
}
2021-03-02 05:14:28 +00:00
pub struct Bump;
2021-03-11 00:42:31 +00:00
pub fn div(_bump: &Bump) -> Builder {
2021-03-02 05:14:28 +00:00
todo!()
}
2021-03-11 00:42:31 +00:00
pub fn h1(_bump: &Bump) -> Builder {
2021-03-02 05:14:28 +00:00
todo!()
}
2021-03-11 00:42:31 +00:00
pub fn h2(_bump: &Bump) -> Builder {
2021-03-02 05:14:28 +00:00
todo!()
}
}
}
2021-03-11 00:42:31 +00:00
2021-03-02 05:14:28 +00:00
pub fn main() {
// render(rsx! {
// div { // we can actually support just a list of nodes too
// h1 {"Hello Dioxus"}
// p {"This is a beautful app you're building"}
// section {
// "custom section to the rescue",
// class: "abc123"
// }
// span {
// class: "abc123"
// "Try backwards too."
// "Anything goes!"
// "As long as it's within the rules"
// {0..10.map(|f| rsx!{
// div {
// h3 {"totally okay to drop in iterators and expressions"}
// p {"however, debug information is lost"}
// }
// })}
// }
// span {
// "Feel free"
// class: "abc123"
// "To mix to your heart's content"
// }
// span { class: "some-very-long-and-tedious-class-name-is-now-separated"
// "Very ergonomic"
// }
// span { "Innovative design 🛠"
// class: "some-very-long-and-tedious-class-name-is-now-separated"
// }
// }
// });
2021-03-11 00:42:31 +00:00
let _g = String::from("asd");
2021-03-02 05:14:28 +00:00
// let lazy = rsx! {
// div {
// a: "asd",
// a: "asd",
// a: "asd",
// a: "asd",
// a: "asd",
// // a: {rsx!{ h1 {"hello world"} }}, // include
// a: {&g},
// b: {1 + 2},
// onclick: {move |e: ()| {
// println!("hello world!")
// }},
// div {
// a: "asd"
// div {
// div {
// div {
// }
// }
// }
// }
// h1 {
// }
// h2 {
// "child"
// }
// "Childnode"
// }
// };
// render(lazy);
2021-03-02 03:55:20 +00:00
}
2021-03-11 00:42:31 +00:00
fn render(_f: impl Fn(&dioxus::builder::Bump)) {}