2021-09-24 04:05:56 +00:00
|
|
|
|
/*
|
|
|
|
|
This example is a simple iOS-style calculator. This particular example can run any platform - Web, Mobile, Desktop.
|
|
|
|
|
This calculator version uses React-style state management. All state is held as individual use_states.
|
|
|
|
|
*/
|
2021-07-02 19:48:19 +00:00
|
|
|
|
|
2021-10-04 14:22:20 +00:00
|
|
|
|
use dioxus::events::*;
|
2021-07-02 19:48:19 +00:00
|
|
|
|
use dioxus::prelude::*;
|
|
|
|
|
|
2021-09-24 04:05:56 +00:00
|
|
|
|
fn main() {
|
2022-01-03 05:42:17 +00:00
|
|
|
|
use dioxus::desktop::tao::dpi::LogicalSize;
|
|
|
|
|
dioxus::desktop::launch_cfg(app, |cfg| {
|
|
|
|
|
cfg.with_window(|w| {
|
|
|
|
|
w.with_title("Calculator Demo")
|
|
|
|
|
.with_resizable(false)
|
|
|
|
|
.with_inner_size(LogicalSize::new(320.0, 530.0))
|
|
|
|
|
})
|
|
|
|
|
});
|
2021-07-02 19:48:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-30 02:28:28 +00:00
|
|
|
|
fn app(cx: Scope) -> Element {
|
2022-03-01 07:50:03 +00:00
|
|
|
|
let val = use_state(&cx, || String::from("0"));
|
2021-07-02 19:48:19 +00:00
|
|
|
|
|
2022-01-06 18:08:14 +00:00
|
|
|
|
let input_digit = move |num: u8| {
|
2022-03-01 07:50:03 +00:00
|
|
|
|
if val.get() == "0" {
|
|
|
|
|
val.set(String::new());
|
2022-01-07 14:17:19 +00:00
|
|
|
|
}
|
2022-03-01 07:50:03 +00:00
|
|
|
|
val.make_mut().push_str(num.to_string().as_str());
|
2022-01-06 18:08:14 +00:00
|
|
|
|
};
|
|
|
|
|
|
2022-03-01 07:50:03 +00:00
|
|
|
|
let input_operator = move |key: &str| val.make_mut().push_str(key);
|
2021-07-02 19:48:19 +00:00
|
|
|
|
|
2021-12-30 02:28:28 +00:00
|
|
|
|
cx.render(rsx!(
|
2021-12-30 08:14:47 +00:00
|
|
|
|
style { [include_str!("./assets/calculator.css")] }
|
2022-01-03 05:42:17 +00:00
|
|
|
|
div { id: "wrapper",
|
|
|
|
|
div { class: "app",
|
|
|
|
|
div { class: "calculator",
|
|
|
|
|
onkeydown: move |evt| match evt.key_code {
|
2022-01-06 18:08:14 +00:00
|
|
|
|
KeyCode::Add => input_operator("+"),
|
|
|
|
|
KeyCode::Subtract => input_operator("-"),
|
|
|
|
|
KeyCode::Divide => input_operator("/"),
|
|
|
|
|
KeyCode::Multiply => input_operator("*"),
|
2022-01-03 05:42:17 +00:00
|
|
|
|
KeyCode::Num0 => input_digit(0),
|
|
|
|
|
KeyCode::Num1 => input_digit(1),
|
|
|
|
|
KeyCode::Num2 => input_digit(2),
|
|
|
|
|
KeyCode::Num3 => input_digit(3),
|
|
|
|
|
KeyCode::Num4 => input_digit(4),
|
|
|
|
|
KeyCode::Num5 => input_digit(5),
|
|
|
|
|
KeyCode::Num6 => input_digit(6),
|
|
|
|
|
KeyCode::Num7 => input_digit(7),
|
|
|
|
|
KeyCode::Num8 => input_digit(8),
|
|
|
|
|
KeyCode::Num9 => input_digit(9),
|
|
|
|
|
KeyCode::Backspace => {
|
2022-03-01 07:50:03 +00:00
|
|
|
|
if !val.len() != 0 {
|
|
|
|
|
val.make_mut().pop();
|
2021-12-30 02:28:28 +00:00
|
|
|
|
}
|
2022-01-03 05:42:17 +00:00
|
|
|
|
}
|
|
|
|
|
_ => {}
|
|
|
|
|
},
|
2022-03-01 07:50:03 +00:00
|
|
|
|
div { class: "calculator-display", [val.to_string()] }
|
2022-01-03 05:42:17 +00:00
|
|
|
|
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.is_empty(){
|
|
|
|
|
val.set("0".into());
|
2022-01-03 05:42:17 +00:00
|
|
|
|
}
|
|
|
|
|
},
|
2022-03-01 07:50:03 +00:00
|
|
|
|
[if val.is_empty() { "C" } else { "AC" }]
|
2022-01-03 05:42:17 +00:00
|
|
|
|
}
|
|
|
|
|
button {
|
|
|
|
|
class: "calculator-key key-sign",
|
|
|
|
|
onclick: move |_| {
|
2022-03-01 07:50:03 +00:00
|
|
|
|
let temp = calc_val(val.as_str());
|
2022-01-06 23:45:21 +00:00
|
|
|
|
if temp > 0.0 {
|
2022-03-01 07:50:03 +00:00
|
|
|
|
val.set(format!("-{}", temp));
|
2022-01-06 23:45:21 +00:00
|
|
|
|
} else {
|
2022-03-01 07:50:03 +00:00
|
|
|
|
val.set(format!("{}", temp.abs()));
|
2022-01-06 23:45:21 +00:00
|
|
|
|
}
|
2022-01-03 05:42:17 +00:00
|
|
|
|
},
|
|
|
|
|
"±"
|
|
|
|
|
}
|
|
|
|
|
button {
|
|
|
|
|
class: "calculator-key key-percent",
|
|
|
|
|
onclick: move |_| {
|
2022-03-01 07:50:03 +00:00
|
|
|
|
val.set(
|
|
|
|
|
format!("{}", calc_val(val.as_str()) / 100.0)
|
2022-01-07 14:17:19 +00:00
|
|
|
|
);
|
2022-01-03 05:42:17 +00:00
|
|
|
|
},
|
|
|
|
|
"%"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
div { class: "digit-keys",
|
|
|
|
|
button { class: "calculator-key key-0", onclick: move |_| input_digit(0),
|
|
|
|
|
"0"
|
|
|
|
|
}
|
2022-03-01 07:50:03 +00:00
|
|
|
|
button { class: "calculator-key key-dot", onclick: move |_| val.make_mut().push('.'),
|
2022-01-03 05:42:17 +00:00
|
|
|
|
"●"
|
|
|
|
|
}
|
|
|
|
|
(1..10).map(|k| rsx!{
|
|
|
|
|
button {
|
|
|
|
|
class: "calculator-key {k}",
|
|
|
|
|
name: "key-{k}",
|
|
|
|
|
onclick: move |_| input_digit(k),
|
|
|
|
|
"{k}"
|
|
|
|
|
}
|
|
|
|
|
}),
|
2021-12-30 02:28:28 +00:00
|
|
|
|
}
|
2021-12-30 08:14:47 +00:00
|
|
|
|
}
|
2022-01-03 05:42:17 +00:00
|
|
|
|
div { class: "operator-keys",
|
2022-03-01 07:50:03 +00:00
|
|
|
|
button { class: "calculator-key key-divide", onclick: move |_| input_operator("/"),
|
2022-01-03 05:42:17 +00:00
|
|
|
|
"÷"
|
|
|
|
|
}
|
2022-03-01 07:50:03 +00:00
|
|
|
|
button { class: "calculator-key key-multiply", onclick: move |_| input_operator("*"),
|
2022-01-03 05:42:17 +00:00
|
|
|
|
"×"
|
|
|
|
|
}
|
2022-03-01 07:50:03 +00:00
|
|
|
|
button { class: "calculator-key key-subtract", onclick: move |_| input_operator("-"),
|
2022-01-03 05:42:17 +00:00
|
|
|
|
"−"
|
|
|
|
|
}
|
2022-03-01 07:50:03 +00:00
|
|
|
|
button { class: "calculator-key key-add", onclick: move |_| input_operator("+"),
|
2022-01-03 05:42:17 +00:00
|
|
|
|
"+"
|
2021-12-30 02:28:28 +00:00
|
|
|
|
}
|
2022-01-03 05:42:17 +00:00
|
|
|
|
button { class: "calculator-key key-equals",
|
|
|
|
|
onclick: move |_| {
|
2022-03-01 07:50:03 +00:00
|
|
|
|
val.set(format!("{}", calc_val(val.as_str())));
|
2022-01-03 05:42:17 +00:00
|
|
|
|
},
|
|
|
|
|
"="
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-30 02:28:28 +00:00
|
|
|
|
}
|
2021-11-22 20:22:42 +00:00
|
|
|
|
}
|
2021-07-02 19:48:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-03 05:42:17 +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
|
|
|
|
|
}
|