aboutsummaryrefslogtreecommitdiff
path: root/src/app.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.rs')
-rw-r--r--src/app.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/app.rs b/src/app.rs
index 5ba00bf..5b1fa9d 100644
--- a/src/app.rs
+++ b/src/app.rs
@@ -10,6 +10,7 @@ use cursive::{Printer, Vec2};
10use chrono::NaiveDate; 10use chrono::NaiveDate;
11 11
12use crate::habit::{Bit, Count, Habit, HabitWrapper}; 12use crate::habit::{Bit, Count, Habit, HabitWrapper};
13use crate::Command;
13use crate::CONFIGURATION; 14use crate::CONFIGURATION;
14 15
15use serde::{Deserialize, Serialize}; 16use serde::{Deserialize, Serialize};
@@ -125,6 +126,24 @@ impl App {
125 return serde_json::from_str(&j).unwrap(); 126 return serde_json::from_str(&j).unwrap();
126 } 127 }
127 128
129 pub fn parse_command(&mut self, input: &str) {
130 let c = Command::from_string(input);
131 match c {
132 Command::Add(name, kind, goal) => {
133 if kind == "count" {
134 self.add_habit(Box::new(Count::new(name, goal.unwrap_or(0))));
135 eprintln!("Found COUNT!");
136 } else if kind == "bit" {
137 self.add_habit(Box::new(Bit::new(name)));
138 eprintln!("Found BIT!");
139 }
140 }
141 _ => {
142 eprintln!("UNKNOWN COMMAND!");
143 }
144 }
145 }
146
128 // this function does IO 147 // this function does IO
129 // TODO: convert this into non-blocking async function 148 // TODO: convert this into non-blocking async function
130 fn save_state(&self) { 149 fn save_state(&self) {