Browse Source

Add stylance

biblius 1 week ago
parent
commit
d0b87a934b
5 changed files with 91 additions and 146 deletions
  1. 7 1
      Cargo.toml
  2. 11 8
      index.html
  3. 20 34
      src/app.rs
  4. 31 0
      src/styles/header.module.css
  5. 22 103
      styles.css

+ 7 - 1
Cargo.toml

@@ -12,7 +12,13 @@ js-sys = "0.3"
 serde = { version = "1", features = ["derive"] }
 serde-wasm-bindgen = "0.6"
 console_error_panic_hook = "0.1.7"
-log = "0.4.27"
+stylance = "0.5.5"
 
 [workspace]
 members = ["src-tauri"]
+
+[package.metadata.stylance]
+# folders in which stylance cli will look for css module files.
+# defaults to ["./src/"]
+folders = ["src"]
+output_file = "styles.css"

+ 11 - 8
index.html

@@ -1,11 +1,14 @@
 <!doctype html>
 <html>
-  <head>
-    <meta charset="utf-8" />
-    <title>Tauri + Leptos App</title>
-    <link data-trunk rel="css" href="styles.css" />
-    <link data-trunk rel="copy-dir" href="public" />
-    <link data-trunk rel="rust" data-wasm-opt="z" />
-  </head>
-  <body></body>
+
+<head>
+  <meta charset="utf-8" />
+  <title>rested</title>
+  <link data-trunk rel="css" href="styles.css" />
+  <link data-trunk rel="copy-dir" href="public" />
+  <link data-trunk rel="rust" data-wasm-opt="z" />
+</head>
+
+<body></body>
+
 </html>

+ 20 - 34
src/app.rs

@@ -3,6 +3,9 @@ use leptos::{ev::SubmitEvent, prelude::*};
 use serde::{Deserialize, Serialize};
 use wasm_bindgen::prelude::*;
 
+// Import a css file's classes:
+stylance::import_crate_style!(header_styles, "src/styles/header.module.css");
+
 #[wasm_bindgen]
 extern "C" {
     #[wasm_bindgen(js_namespace = ["window", "__TAURI__", "core"])]
@@ -32,6 +35,8 @@ pub fn App() -> impl IntoView {
         set_name.set(v);
     };
 
+    leptos::logging::log!("hello world!");
+
     let greet = move |ev: SubmitEvent| {
         ev.prevent_default();
         spawn_local(async move {
@@ -39,49 +44,16 @@ pub fn App() -> impl IntoView {
             if name.is_empty() {
                 return;
             }
-
             let args = serde_wasm_bindgen::to_value(&GreetArgs { name: &name }).unwrap();
             // Learn more about Tauri commands at https://tauri.app/develop/calling-rust/
             let new_msg = invoke("greet", args).await.as_string().unwrap();
-            let foogazi = "foobar";
-            // invoke(
-            //     "eval",
-            //     serde_wasm_bindgen::to_value(&Eval {
-            //         str: &format!(
-            //             "console.log(this); this.requestContext = {{ request: \"{foogazi}\" }}"
-            //         ),
-            //     })
-            //     .unwrap(),
-            // )
-            // .await;
-            dbg!(
-                invoke(
-                    "eval",
-                    serde_wasm_bindgen::to_value(&Eval {
-                        str: "return { foo: \"bar\"; baz: 4 }"
-                    })
-                    .unwrap(),
-                )
-                .await
-            );
             set_greet_msg.set(new_msg);
         });
     };
 
     view! {
+        <Header />
         <main class="container">
-            <h1>"Welcome to Tauri + Leptos"</h1>
-
-            <div class="row">
-                <a href="https://tauri.app" target="_blank">
-                    <img src="public/tauri.svg" class="logo tauri" alt="Tauri logo"/>
-                </a>
-                <a href="https://docs.rs/leptos/" target="_blank">
-                    <img src="public/leptos.svg" class="logo leptos" alt="Leptos logo"/>
-                </a>
-            </div>
-            <p>"Click on the Tauri and Leptos logos to learn more."</p>
-
             <form class="row" on:submit=greet>
                 <input
                     id="greet-input"
@@ -94,3 +66,17 @@ pub fn App() -> impl IntoView {
         </main>
     }
 }
+
+#[component]
+pub fn Header() -> impl IntoView {
+    view! {
+        <header class=header_styles::header>
+            <h1 class=header_styles::title>"rested"</h1>
+
+            <nav class=header_styles::nav>
+                <a href="#">"Home"</a>
+                <a href="#">"Settings"</a>
+            </nav>
+        </header>
+    }
+}

+ 31 - 0
src/styles/header.module.css

@@ -0,0 +1,31 @@
+.header {
+	display: flex;
+	align-items: center;
+	justify-content: space-between;
+	padding: 0.75rem 1rem;
+	background-color: #1f2937;
+	/* dark gray */
+	color: white;
+	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+	background-color: blue;
+}
+
+.title {
+	font-size: 1.25rem;
+	font-weight: 600;
+}
+
+.nav {
+	display: flex;
+	gap: 1rem;
+}
+
+.nav a {
+	text-decoration: none;
+	color: inherit;
+	font-size: 0.95rem;
+}
+
+.nav a:hover {
+	text-decoration: underline;
+}

+ 22 - 103
styles.css

@@ -1,112 +1,31 @@
-.logo.leptos:hover {
-  filter: drop-shadow(0 0 2em #a82e20);
+.header-e928854 {
+	display: flex;
+	align-items: center;
+	justify-content: space-between;
+	padding: 0.75rem 1rem;
+	background-color: #1f2937;
+	/* dark gray */
+	color: white;
+	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+	background-color: blue;
 }
-:root {
-  font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
-  font-size: 16px;
-  line-height: 24px;
-  font-weight: 400;
 
-  color: #0f0f0f;
-  background-color: #f6f6f6;
-
-  font-synthesis: none;
-  text-rendering: optimizeLegibility;
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-  -webkit-text-size-adjust: 100%;
-}
-
-.container {
-  margin: 0;
-  padding-top: 10vh;
-  display: flex;
-  flex-direction: column;
-  justify-content: center;
-  text-align: center;
-}
-
-.logo {
-  height: 6em;
-  padding: 1.5em;
-  will-change: filter;
-  transition: 0.75s;
-}
-
-.logo.tauri:hover {
-  filter: drop-shadow(0 0 2em #24c8db);
-}
-
-.row {
-  display: flex;
-  justify-content: center;
-}
-
-a {
-  font-weight: 500;
-  color: #646cff;
-  text-decoration: inherit;
-}
-
-a:hover {
-  color: #535bf2;
-}
-
-h1 {
-  text-align: center;
-}
-
-input,
-button {
-  border-radius: 8px;
-  border: 1px solid transparent;
-  padding: 0.6em 1.2em;
-  font-size: 1em;
-  font-weight: 500;
-  font-family: inherit;
-  color: #0f0f0f;
-  background-color: #ffffff;
-  transition: border-color 0.25s;
-  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
-}
-
-button {
-  cursor: pointer;
-}
-
-button:hover {
-  border-color: #396cd8;
-}
-button:active {
-  border-color: #396cd8;
-  background-color: #e8e8e8;
+.title-e928854 {
+	font-size: 1.25rem;
+	font-weight: 600;
 }
 
-input,
-button {
-  outline: none;
+.nav-e928854 {
+	display: flex;
+	gap: 1rem;
 }
 
-#greet-input {
-  margin-right: 5px;
+.nav-e928854 a {
+	text-decoration: none;
+	color: inherit;
+	font-size: 0.95rem;
 }
 
-@media (prefers-color-scheme: dark) {
-  :root {
-    color: #f6f6f6;
-    background-color: #2f2f2f;
-  }
-
-  a:hover {
-    color: #24c8db;
-  }
-
-  input,
-  button {
-    color: #ffffff;
-    background-color: #0f0f0f98;
-  }
-  button:active {
-    background-color: #0f0f0f69;
-  }
+.nav-e928854 a:hover {
+	text-decoration: underline;
 }