dioxus/examples/calculator.rs

201 lines
7.6 KiB
Rust
Raw Permalink Normal View History

2024-02-14 20:33:07 +00:00
//! Calculator
//!
//! This example is a simple iOS-style calculator. Instead of wrapping the state in a single struct like the
//! `calculate_mutable` example, this example uses several closures to manage actions with the state. Most
//! components will start like this since it's the quickest way to start adding state to your app. The `Signal` type
//! in Dioxus is `Copy` - meaning you don't need to clone it to use it in a closure.
//!
//! Notice how our logic is consolidated into just a few callbacks instead of a single struct. This is a rather organic
//! way to start building state management in Dioxus, and it's a great way to start.
2021-07-02 19:48:19 +00:00
use dioxus::events::*;
use dioxus::html::input_data::keyboard_types::Key;
2021-07-02 19:48:19 +00:00
use dioxus::prelude::*;
const STYLE: &str = asset!("./examples/assets/calculator.css");
2021-09-24 04:05:56 +00:00
fn main() {
LaunchBuilder::desktop()
2024-01-20 08:11:55 +00:00
.with_cfg(desktop!({
use dioxus::desktop::{Config, LogicalSize, WindowBuilder};
2024-01-19 23:48:21 +00:00
Config::new().with_window(
WindowBuilder::default()
.with_title("Calculator")
.with_inner_size(LogicalSize::new(300.0, 525.0)),
2024-01-20 08:11:55 +00:00
)
}))
2024-01-19 23:48:21 +00:00
.launch(app);
2021-07-02 19:48:19 +00:00
}
fn app() -> Element {
let mut val = use_signal(|| String::from("0"));
2021-07-02 19:48:19 +00:00
2024-01-19 23:48:21 +00:00
let mut input_digit = move |num: String| {
if val() == "0" {
2022-03-01 07:50:03 +00:00
val.set(String::new());
2022-01-07 14:17:19 +00:00
}
2024-01-19 23:48:21 +00:00
val.write().push_str(num.as_str());
2022-01-06 18:08:14 +00:00
};
let mut input_operator = move |key: &str| val.write().push_str(key);
2021-07-02 19:48:19 +00:00
2024-01-31 01:59:57 +00:00
let handle_key_down_event = move |evt: KeyboardEvent| match evt.key() {
2022-05-12 11:36:52 +00:00
Key::Backspace => {
2024-01-21 07:32:12 +00:00
if !val().is_empty() {
2024-01-15 21:06:05 +00:00
val.write().pop();
2022-05-12 11:36:52 +00:00
}
}
Key::Character(character) => match character.as_str() {
2024-01-21 07:32:12 +00:00
"+" | "-" | "/" | "*" => input_operator(&character),
2024-01-19 23:48:21 +00:00
"0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" => input_digit(character),
2022-05-12 11:36:52 +00:00
_ => {}
},
_ => {}
};
2024-01-16 19:18:46 +00:00
rsx! {
head::Link { rel: "stylesheet", href: STYLE }
div { id: "wrapper",
div { class: "app",
div { class: "calculator", tabindex: "0", onkeydown: handle_key_down_event,
2024-02-02 22:22:31 +00:00
div { class: "calculator-display",
if val().is_empty() {
"0"
} else {
"{val}"
}
}
div { class: "calculator-keypad",
div { class: "input-keys",
div { class: "function-keys",
button {
class: "calculator-key key-clear",
onclick: move |_| {
2022-03-01 07:50:03 +00:00
val.set(String::new());
if !val.cloned().is_empty() {
2022-03-01 07:50:03 +00:00
val.set("0".into());
}
},
if val.cloned().is_empty() { "C" } else { "AC" }
}
button {
class: "calculator-key key-sign",
onclick: move |_| {
2024-01-21 07:32:12 +00:00
let new_val = calc_val(val.cloned().as_str());
if new_val > 0.0 {
val.set(format!("-{new_val}"));
2022-01-06 23:45:21 +00:00
} else {
2024-01-21 07:32:12 +00:00
val.set(format!("{}", new_val.abs()));
2022-01-06 23:45:21 +00:00
}
},
"±"
}
button {
class: "calculator-key key-percent",
2024-01-21 07:32:12 +00:00
onclick: move |_| val.set(format!("{}", calc_val(val.cloned().as_str()) / 100.0)),
"%"
}
}
div { class: "digit-keys",
button {
class: "calculator-key key-0",
2024-01-19 23:48:21 +00:00
onclick: move |_| input_digit(0.to_string()),
"0"
}
button {
class: "calculator-key key-dot",
onclick: move |_| val.write().push('.'),
""
}
for k in 1..10 {
button {
class: "calculator-key {k}",
name: "key-{k}",
2024-01-19 23:48:21 +00:00
onclick: move |_| input_digit(k.to_string()),
"{k}"
}
}
2021-12-30 02:28:28 +00:00
}
}
div { class: "operator-keys",
2024-01-21 07:32:12 +00:00
for (key, class) in [("/", "key-divide"), ("*", "key-multiply"), ("-", "key-subtract"), ("+", "key-add")] {
button {
class: "calculator-key {class}",
onclick: move |_| input_operator(key),
"{key}"
}
}
2022-12-07 00:37:28 +00:00
button {
class: "calculator-key key-equals",
onclick: move |_| val.set(format!("{}", calc_val(val.cloned().as_str()))),
"="
}
}
2021-12-30 02:28:28 +00:00
}
2021-11-22 20:22:42 +00:00
}
2021-07-02 19:48:19 +00:00
}
}
2024-01-14 05:12:21 +00:00
}
2021-07-02 19:48:19 +00:00
}
2022-01-07 16:16:28 +00:00
2022-03-01 07:50:03 +00:00
fn calc_val(val: &str) -> f64 {
2022-01-07 16:16:28 +00:00
let mut temp = String::new();
let mut operation = "+".to_string();
let mut start_index = 0;
let mut temp_value;
let mut fin_index = 0;
2022-01-07 16:27:58 +00:00
2022-01-07 16:16:28 +00:00
if &val[0..1] == "-" {
temp_value = String::from("-");
fin_index = 1;
start_index += 1;
} else {
temp_value = String::from("");
}
for c in val[fin_index..].chars() {
if c == '+' || c == '-' || c == '*' || c == '/' {
break;
}
temp_value.push(c);
start_index += 1;
}
2022-02-28 07:38:17 +00:00
let mut result = temp_value.parse::<f64>().unwrap();
2022-01-07 16:16:28 +00:00
if start_index + 1 >= val.len() {
return result;
}
for c in val[start_index..].chars() {
if c == '+' || c == '-' || c == '*' || c == '/' {
2022-01-25 00:52:12 +00:00
if !temp.is_empty() {
2022-01-07 16:16:28 +00:00
match &operation as &str {
2022-01-07 16:27:58 +00:00
"+" => result += temp.parse::<f64>().unwrap(),
"-" => result -= temp.parse::<f64>().unwrap(),
"*" => result *= temp.parse::<f64>().unwrap(),
"/" => result /= temp.parse::<f64>().unwrap(),
2022-01-07 16:16:28 +00:00
_ => unreachable!(),
};
}
operation = c.to_string();
temp = String::new();
} else {
temp.push(c);
}
}
2022-01-25 00:52:12 +00:00
if !temp.is_empty() {
2022-01-07 16:16:28 +00:00
match &operation as &str {
2022-01-07 16:27:58 +00:00
"+" => result += temp.parse::<f64>().unwrap(),
"-" => result -= temp.parse::<f64>().unwrap(),
"*" => result *= temp.parse::<f64>().unwrap(),
"/" => result /= temp.parse::<f64>().unwrap(),
2022-01-07 16:16:28 +00:00
_ => unreachable!(),
};
}
result
}