generated from ElnuDev/rust-project
parent
5bdd3f6556
commit
d488b99765
File diff suppressed because it is too large
Load Diff
@ -1,49 +1,22 @@
|
|||||||
mod render;
|
mod render;
|
||||||
pub mod svg;
|
pub mod svg;
|
||||||
|
|
||||||
use svg::{SVGUnit, SVGMeasure};
|
use leptos::*;
|
||||||
use sycamore::{prelude::*, view::ToView, builder::t};
|
use wasm_bindgen::JsCast;
|
||||||
|
|
||||||
#[derive(Clone, Copy, PartialEq, Eq, Default)]
|
#[component]
|
||||||
struct Color {
|
fn App(cx: Scope) -> impl IntoView {
|
||||||
red: u8,
|
let (count, set_count) = create_signal(cx, 0);
|
||||||
green: u8,
|
|
||||||
blue: u8,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<G: Html> ToView<G> for SVGUnit {
|
|
||||||
fn to_view(&self) -> View<G> {
|
|
||||||
t(self.to_string())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[component(inline_props)]
|
|
||||||
fn Slider<'a, G: Html>(cx: Scope<'a>, value: &'a Signal<f64>, unit: Option<SVGUnit>) -> View<G> {
|
|
||||||
view! { cx,
|
view! { cx,
|
||||||
div(class="f-row align-items:center") {
|
<button on:click=move |_| set_count(count.get() + 1)>
|
||||||
span { (value.get())(unit) }
|
"Click me: "
|
||||||
input(type="range", bind:valueAsNumber=value)
|
{move || count.get()}
|
||||||
}
|
</button>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main() {
|
pub fn main() {
|
||||||
sycamore::render_to(
|
let root = document().query_selector("main").unwrap().unwrap();
|
||||||
|cx| {
|
mount_to(root.unchecked_into(), |cx| view! { cx, <App/> });
|
||||||
let x = create_signal(cx, 0.0);
|
}
|
||||||
let y = create_signal(cx, 0.0);
|
|
||||||
let z = create_signal(cx, 0.0);
|
|
||||||
view! { cx,
|
|
||||||
"Total: "(*x.get() + *y.get() + *z.get())
|
|
||||||
Slider(value=x, unit=SVGUnit::Inch)
|
|
||||||
Slider(value=y)
|
|
||||||
Slider(value=z)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
let window = web_sys::window().unwrap();
|
|
||||||
let document = window.document().unwrap();
|
|
||||||
&document.query_selector("main").unwrap().unwrap()
|
|
||||||
},
|
|
||||||
);
|
|
||||||
}
|
|
Loading…
Reference in new issue