2022-03-19 02:11:30 +00:00
|
|
|
use dioxus::prelude::*;
|
|
|
|
|
|
|
|
fn main() {
|
2022-07-09 19:15:20 +00:00
|
|
|
dioxus_desktop::launch(app);
|
2022-03-19 02:11:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn app(cx: Scope) -> Element {
|
2023-10-23 20:26:10 +00:00
|
|
|
let future = use_future(cx, (), |_| async move {
|
|
|
|
let eval = eval(
|
|
|
|
r#"
|
2023-07-21 22:36:25 +00:00
|
|
|
dioxus.send("Hi from JS!");
|
|
|
|
let msg = await dioxus.recv();
|
|
|
|
console.log(msg);
|
|
|
|
return "hello world";
|
|
|
|
"#,
|
2023-10-23 20:26:10 +00:00
|
|
|
)
|
|
|
|
.unwrap();
|
2023-07-21 22:36:25 +00:00
|
|
|
|
2023-10-23 20:26:10 +00:00
|
|
|
eval.send("Hi from Rust!".into()).unwrap();
|
|
|
|
let res = eval.recv().await.unwrap();
|
|
|
|
println!("{:?}", eval.await);
|
|
|
|
res
|
2023-07-21 22:36:25 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
match future.value() {
|
|
|
|
Some(v) => cx.render(rsx!(
|
|
|
|
p { "{v}" }
|
|
|
|
)),
|
|
|
|
_ => cx.render(rsx!(
|
|
|
|
p { "hello" }
|
|
|
|
)),
|
|
|
|
}
|
2022-03-19 02:11:30 +00:00
|
|
|
}
|