main
Elnu 10 months ago
parent 5bdd3f6556
commit d488b99765

1688
Cargo.lock generated

File diff suppressed because it is too large Load Diff

@ -8,9 +8,9 @@ askama = "0.12.0"
derive_more = "0.99.17"
kle-serial = "0.2.2"
lazy_static = "1.4.0"
leptos = { version = "0.4.8", features = ["csr", "nightly"] }
regex = "1.9.3"
serde_json = "1.0.105"
strum = "0.25.0"
strum_macros = "0.25.2"
sycamore = "0.9.0-beta.1"
web-sys = "0.3.64"
wasm-bindgen = "0.2.87"

@ -1,49 +1,22 @@
mod render;
pub mod svg;
use svg::{SVGUnit, SVGMeasure};
use sycamore::{prelude::*, view::ToView, builder::t};
use leptos::*;
use wasm_bindgen::JsCast;
#[derive(Clone, Copy, PartialEq, Eq, Default)]
struct Color {
red: u8,
green: u8,
blue: u8,
}
#[component]
fn App(cx: Scope) -> impl IntoView {
let (count, set_count) = create_signal(cx, 0);
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,
div(class="f-row align-items:center") {
span { (value.get())(unit) }
input(type="range", bind:valueAsNumber=value)
}
<button on:click=move |_| set_count(count.get() + 1)>
"Click me: "
{move || count.get()}
</button>
}
}
fn main() {
sycamore::render_to(
|cx| {
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()
},
);
}
pub fn main() {
let root = document().query_selector("main").unwrap().unwrap();
mount_to(root.unchecked_into(), |cx| view! { cx, <App/> });
}

@ -38,7 +38,9 @@ Updating `cargoHash`:
in {
devShells.${system}.default = with pkgs; mkShell {
packages = [
(pkgs.rust-bin.stable.latest.default.override {
# nightly is required for function signal syntax in leptos
# https://leptos-rs.github.io/leptos/02_getting_started.html
(pkgs.rust-bin.nightly.latest.default.override {
targets = [ "wasm32-unknown-unknown" ];
extensions = [ "rust-src" ];
})
@ -53,7 +55,7 @@ Updating `cargoHash`:
version = "0.1.0";
buildAndTestSubdir = "dyesub-tool";
buildInputs = with pkgs; [ trunk ];
cargoHash = "sha256-Nh+XIRDru7wMnEqXP1V1zMK7B4uDQqT9Fg18BZtGEYQ=";
cargoHash = "sha256-Bxc2koMKq8cGFiJtA0qL1geWQls1k2PgtByg7LZwdlc=";
meta = meta // {
description = "A tool for generating dye sublimation transfer sheet SVGs for Japanese thumb shift keycaps.";
};

Loading…
Cancel
Save