2022-01-25 00:52:12 +00:00
|
|
|
|
#![allow(non_snake_case)]
|
|
|
|
|
|
2021-07-02 19:48:19 +00:00
|
|
|
|
//! Example: Calculator
|
|
|
|
|
//! -------------------
|
|
|
|
|
//!
|
|
|
|
|
//! Some components benefit through the use of "Models". Models are a single block of encapsulated state that allow mutative
|
|
|
|
|
//! methods to be performed on them. Dioxus exposes the ability to use the model pattern through the "use_model" hook.
|
|
|
|
|
//!
|
2021-07-05 05:11:49 +00:00
|
|
|
|
//! Models are commonly used in the "Model-View-Component" approach for building UI state.
|
|
|
|
|
//!
|
2021-07-02 19:48:19 +00:00
|
|
|
|
//! `use_model` is basically just a fancy wrapper around set_state, but saves a "working copy" of the new state behind a
|
2021-07-05 05:11:49 +00:00
|
|
|
|
//! RefCell. To modify the working copy, you need to call "get_mut" which returns the RefMut. This makes it easy to write
|
2021-07-02 19:48:19 +00:00
|
|
|
|
//! fully encapsulated apps that retain a certain feel of native Rusty-ness. A calculator app is a good example of when this
|
|
|
|
|
//! is useful.
|
2021-07-05 05:11:49 +00:00
|
|
|
|
//!
|
|
|
|
|
//! Do note that "get_mut" returns a `RefMut` (a lock over a RefCell). If two `RefMut`s are held at the same time (ie in a loop)
|
|
|
|
|
//! the RefCell will panic and crash. You can use `try_get_mut` or `.modify` to avoid this problem, or just not hold two
|
|
|
|
|
//! RefMuts at the same time.
|
2021-07-02 19:48:19 +00:00
|
|
|
|
|
2021-12-15 20:56:53 +00:00
|
|
|
|
use dioxus::events::*;
|
2022-07-09 19:15:20 +00:00
|
|
|
|
use dioxus::html::input_data::keyboard_types::Key;
|
2021-07-02 19:48:19 +00:00
|
|
|
|
use dioxus::prelude::*;
|
2022-07-09 19:15:20 +00:00
|
|
|
|
use dioxus_desktop::wry::application::dpi::LogicalSize;
|
2022-09-13 23:22:27 +00:00
|
|
|
|
use dioxus_desktop::{Config, WindowBuilder};
|
2021-07-02 19:48:19 +00:00
|
|
|
|
|
|
|
|
|
fn main() {
|
2022-09-13 23:22:27 +00:00
|
|
|
|
let cfg = Config::new().with_window(
|
|
|
|
|
WindowBuilder::new()
|
|
|
|
|
.with_title("Calculator Demo")
|
|
|
|
|
.with_resizable(false)
|
|
|
|
|
.with_inner_size(LogicalSize::new(320.0, 530.0)),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
dioxus_desktop::launch_cfg(app, cfg);
|
2021-07-08 13:29:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-30 08:14:47 +00:00
|
|
|
|
fn app(cx: Scope) -> Element {
|
2022-01-25 00:52:12 +00:00
|
|
|
|
let state = use_ref(&cx, Calculator::new);
|
2021-07-02 19:48:19 +00:00
|
|
|
|
|
2022-01-03 05:42:17 +00:00
|
|
|
|
cx.render(rsx! {
|
2022-09-13 21:57:23 +00:00
|
|
|
|
style { include_str!("./assets/calculator.css") }
|
2022-01-02 23:35:38 +00:00
|
|
|
|
div { id: "wrapper",
|
2022-01-03 05:42:17 +00:00
|
|
|
|
div { class: "app",
|
2022-01-02 23:35:38 +00:00
|
|
|
|
div { class: "calculator", onkeypress: move |evt| state.write().handle_keydown(evt),
|
2022-09-13 21:57:23 +00:00
|
|
|
|
div { class: "calculator-display", state.read().formatted_display() }
|
2022-01-02 23:35:38 +00:00
|
|
|
|
div { class: "calculator-keypad",
|
|
|
|
|
div { class: "input-keys",
|
|
|
|
|
div { class: "function-keys",
|
2022-01-03 05:42:17 +00:00
|
|
|
|
CalculatorKey {
|
|
|
|
|
name: "key-clear",
|
|
|
|
|
onclick: move |_| state.write().clear_display(),
|
2022-09-13 21:57:23 +00:00
|
|
|
|
if state.read().display_value == "0" { "C" } else { "AC" }
|
2022-01-03 05:42:17 +00:00
|
|
|
|
}
|
|
|
|
|
CalculatorKey {
|
|
|
|
|
name: "key-sign",
|
|
|
|
|
onclick: move |_| state.write().toggle_sign(),
|
|
|
|
|
"±"
|
|
|
|
|
}
|
|
|
|
|
CalculatorKey {
|
|
|
|
|
name: "key-percent",
|
|
|
|
|
onclick: move |_| state.write().toggle_percent(),
|
|
|
|
|
"%"
|
|
|
|
|
}
|
2022-01-02 23:35:38 +00:00
|
|
|
|
}
|
|
|
|
|
div { class: "digit-keys",
|
2022-01-03 05:42:17 +00:00
|
|
|
|
CalculatorKey {
|
|
|
|
|
name: "key-0",
|
|
|
|
|
onclick: move |_| state.write().input_digit(0),
|
|
|
|
|
"0"
|
|
|
|
|
}
|
|
|
|
|
CalculatorKey {
|
|
|
|
|
name: "key-dot",
|
|
|
|
|
onclick: move |_| state.write().input_dot(),
|
|
|
|
|
"●"
|
|
|
|
|
}
|
2022-01-02 23:35:38 +00:00
|
|
|
|
(1..10).map(move |k| rsx!{
|
2022-01-03 05:42:17 +00:00
|
|
|
|
CalculatorKey {
|
|
|
|
|
key: "{k}",
|
|
|
|
|
name: "key-{k}",
|
|
|
|
|
onclick: move |_| state.write().input_digit(k),
|
|
|
|
|
"{k}"
|
|
|
|
|
}
|
2022-01-02 23:35:38 +00:00
|
|
|
|
})
|
|
|
|
|
}
|
2021-07-08 13:29:12 +00:00
|
|
|
|
}
|
2022-01-02 23:35:38 +00:00
|
|
|
|
div { class: "operator-keys",
|
2022-01-03 05:42:17 +00:00
|
|
|
|
CalculatorKey {
|
|
|
|
|
name: "key-divide",
|
|
|
|
|
onclick: move |_| state.write().set_operator(Operator::Div),
|
|
|
|
|
"÷"
|
|
|
|
|
}
|
|
|
|
|
CalculatorKey {
|
|
|
|
|
name: "key-multiply",
|
|
|
|
|
onclick: move |_| state.write().set_operator(Operator::Mul),
|
|
|
|
|
"×"
|
|
|
|
|
}
|
|
|
|
|
CalculatorKey {
|
|
|
|
|
name: "key-subtract",
|
|
|
|
|
onclick: move |_| state.write().set_operator(Operator::Sub),
|
|
|
|
|
"−"
|
|
|
|
|
}
|
|
|
|
|
CalculatorKey {
|
|
|
|
|
name: "key-add",
|
|
|
|
|
onclick: move |_| state.write().set_operator(Operator::Add),
|
|
|
|
|
"+"
|
|
|
|
|
}
|
|
|
|
|
CalculatorKey {
|
|
|
|
|
name: "key-equals",
|
|
|
|
|
onclick: move |_| state.write().perform_operation(),
|
|
|
|
|
"="
|
|
|
|
|
}
|
2021-07-08 13:29:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-07-02 19:48:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
2021-12-30 08:14:47 +00:00
|
|
|
|
}
|
2021-07-02 19:48:19 +00:00
|
|
|
|
|
2021-07-06 19:18:36 +00:00
|
|
|
|
#[derive(Props)]
|
|
|
|
|
struct CalculatorKeyProps<'a> {
|
2022-01-05 22:30:12 +00:00
|
|
|
|
name: &'a str,
|
2022-01-07 16:51:25 +00:00
|
|
|
|
onclick: EventHandler<'a, MouseEvent>,
|
2021-12-25 22:18:05 +00:00
|
|
|
|
children: Element<'a>,
|
2021-07-06 19:18:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-12-25 22:18:05 +00:00
|
|
|
|
fn CalculatorKey<'a>(cx: Scope<'a, CalculatorKeyProps<'a>>) -> Element {
|
2021-07-06 19:18:36 +00:00
|
|
|
|
cx.render(rsx! {
|
|
|
|
|
button {
|
2021-12-30 08:14:47 +00:00
|
|
|
|
class: "calculator-key {cx.props.name}",
|
2022-01-07 16:51:25 +00:00
|
|
|
|
onclick: move |e| cx.props.onclick.call(e),
|
2021-12-30 08:14:47 +00:00
|
|
|
|
&cx.props.children
|
2021-07-06 19:18:36 +00:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-12 06:23:46 +00:00
|
|
|
|
struct Calculator {
|
|
|
|
|
display_value: String,
|
|
|
|
|
operator: Option<Operator>,
|
|
|
|
|
waiting_for_operand: bool,
|
|
|
|
|
cur_val: f64,
|
|
|
|
|
}
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
|
enum Operator {
|
|
|
|
|
Add,
|
|
|
|
|
Sub,
|
|
|
|
|
Mul,
|
|
|
|
|
Div,
|
2021-07-02 19:48:19 +00:00
|
|
|
|
}
|
2021-07-12 06:23:46 +00:00
|
|
|
|
impl Calculator {
|
|
|
|
|
fn new() -> Self {
|
|
|
|
|
Calculator {
|
|
|
|
|
display_value: "0".to_string(),
|
|
|
|
|
operator: None,
|
|
|
|
|
waiting_for_operand: false,
|
|
|
|
|
cur_val: 0.0,
|
2021-07-02 19:48:19 +00:00
|
|
|
|
}
|
2021-07-12 06:23:46 +00:00
|
|
|
|
}
|
|
|
|
|
fn formatted_display(&self) -> String {
|
|
|
|
|
use separator::Separatable;
|
|
|
|
|
self.display_value
|
|
|
|
|
.parse::<f64>()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.separated_string()
|
|
|
|
|
}
|
|
|
|
|
fn clear_display(&mut self) {
|
|
|
|
|
self.display_value = "0".to_string();
|
|
|
|
|
}
|
|
|
|
|
fn input_digit(&mut self, digit: u8) {
|
|
|
|
|
let content = digit.to_string();
|
|
|
|
|
if self.waiting_for_operand || self.display_value == "0" {
|
|
|
|
|
self.waiting_for_operand = false;
|
|
|
|
|
self.display_value = content;
|
|
|
|
|
} else {
|
|
|
|
|
self.display_value.push_str(content.as_str());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
fn input_dot(&mut self) {
|
2022-01-25 00:52:12 +00:00
|
|
|
|
if !self.display_value.contains('.') {
|
|
|
|
|
self.display_value.push('.');
|
2021-07-12 06:23:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
fn perform_operation(&mut self) {
|
|
|
|
|
if let Some(op) = &self.operator {
|
|
|
|
|
let rhs = self.display_value.parse::<f64>().unwrap();
|
|
|
|
|
let new_val = match op {
|
|
|
|
|
Operator::Add => self.cur_val + rhs,
|
|
|
|
|
Operator::Sub => self.cur_val - rhs,
|
|
|
|
|
Operator::Mul => self.cur_val * rhs,
|
|
|
|
|
Operator::Div => self.cur_val / rhs,
|
|
|
|
|
};
|
|
|
|
|
self.cur_val = new_val;
|
|
|
|
|
self.display_value = new_val.to_string();
|
|
|
|
|
self.operator = None;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
fn toggle_sign(&mut self) {
|
2022-01-25 00:52:12 +00:00
|
|
|
|
if self.display_value.starts_with('-') {
|
|
|
|
|
self.display_value = self.display_value.trim_start_matches('-').to_string();
|
2021-07-12 06:23:46 +00:00
|
|
|
|
} else {
|
|
|
|
|
self.display_value = format!("-{}", self.display_value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
fn toggle_percent(&mut self) {
|
|
|
|
|
self.display_value = (self.display_value.parse::<f64>().unwrap() / 100.0).to_string();
|
|
|
|
|
}
|
|
|
|
|
fn backspace(&mut self) {
|
|
|
|
|
if !self.display_value.as_str().eq("0") {
|
|
|
|
|
self.display_value.pop();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
fn set_operator(&mut self, operator: Operator) {
|
|
|
|
|
self.operator = Some(operator);
|
|
|
|
|
self.cur_val = self.display_value.parse::<f64>().unwrap();
|
|
|
|
|
self.waiting_for_operand = true;
|
|
|
|
|
}
|
2022-01-05 22:30:12 +00:00
|
|
|
|
fn handle_keydown(&mut self, evt: KeyboardEvent) {
|
2022-05-12 12:00:43 +00:00
|
|
|
|
match evt.key() {
|
|
|
|
|
Key::Backspace => self.backspace(),
|
|
|
|
|
Key::Character(c) => match c.as_str() {
|
|
|
|
|
"0" => self.input_digit(0),
|
|
|
|
|
"1" => self.input_digit(1),
|
|
|
|
|
"2" => self.input_digit(2),
|
|
|
|
|
"3" => self.input_digit(3),
|
|
|
|
|
"4" => self.input_digit(4),
|
|
|
|
|
"5" => self.input_digit(5),
|
|
|
|
|
"6" => self.input_digit(6),
|
|
|
|
|
"7" => self.input_digit(7),
|
|
|
|
|
"8" => self.input_digit(8),
|
|
|
|
|
"9" => self.input_digit(9),
|
|
|
|
|
"+" => self.operator = Some(Operator::Add),
|
|
|
|
|
"-" => self.operator = Some(Operator::Sub),
|
|
|
|
|
"/" => self.operator = Some(Operator::Div),
|
|
|
|
|
"*" => self.operator = Some(Operator::Mul),
|
|
|
|
|
_ => {}
|
|
|
|
|
},
|
|
|
|
|
|
2021-07-12 06:23:46 +00:00
|
|
|
|
_ => {}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-07-02 19:48:19 +00:00
|
|
|
|
}
|