1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- #![allow(non_snake_case)]
- use dioxus_core as dioxus;
- use dioxus::{events::on::MouseEvent, prelude::*};
- use dioxus_web::WebsysRenderer;
- fn main() {
- wasm_logger::init(wasm_logger::Config::new(log::Level::Trace));
- console_error_panic_hook::set_once();
-
- wasm_bindgen_futures::spawn_local(async {
- let props = ExampleProps { initial_name: "..?"};
- WebsysRenderer::new_with_props(Example, props)
- .run()
- .await
- .unwrap()
- });
- }
- #[derive(PartialEq, Props)]
- struct ExampleProps {
- initial_name: &'static str,
- }
- static Example: FC<ExampleProps> = |ctx| {
- let name = use_state_new(&ctx, move || ctx.initial_name);
- ctx.render(rsx! {
- div {
- class: "py-12 px-4 text-center w-full max-w-2xl mx-auto"
- span {
- class: "text-sm font-semibold"
- "Dioxus Example: Jack and Jill"
- }
- h2 {
- class: "text-5xl mt-2 mb-6 leading-tight font-semibold font-heading"
- "Hello, {name}"
- }
-
- CustomButton { name: "Jack!", handler: move |_| name.set("Jack") }
- CustomButton { name: "Jill!", handler: move |_| name.set("Jill") }
- CustomButton { name: "Bob!", handler: move |_| name.set("Bob")}
- Placeholder {val: name}
- Placeholder {val: name}
- }
- })
- };
- #[derive(Props)]
- struct ButtonProps<'src, F: Fn(MouseEvent)> {
- name: &'src str,
- handler: F
- }
- fn CustomButton<'a, F: Fn(MouseEvent)>(ctx: Context<'a, ButtonProps<'a, F>>) -> VNode {
- ctx.render(rsx!{
- button {
- class: "inline-block py-4 px-8 mr-6 leading-none text-white bg-indigo-600 hover:bg-indigo-900 font-semibold rounded shadow"
- onmouseover: {&ctx.handler}
- "{ctx.name}"
- }
- })
- }
- impl<F: Fn(MouseEvent)> PartialEq for ButtonProps<'_, F> {
- fn eq(&self, other: &Self) -> bool {
- false
- }
- }
- #[derive(Props, PartialEq)]
- struct PlaceholderProps {
- val: &'static str
- }
- fn Placeholder(ctx: Context<PlaceholderProps>) -> VNode {
- ctx.render(rsx!{
- div {
- "child: {ctx.val}"
- }
- })
- }
|