diff options
author | Guillaume Hormiere <[email protected]> | 2020-07-21 23:38:01 +0100 |
---|---|---|
committer | Guillaume Hormiere <[email protected]> | 2020-07-21 23:38:01 +0100 |
commit | 9dfe454cd8bc816522446e7e3b9f45630c886112 (patch) | |
tree | 4b31fbdd318ba58f55b2723fca55dbc4ca10e6a5 /src/main.rs | |
parent | 9102dc72be19f87ec9e2893a35f5020957135c1c (diff) |
Add list command for shell script purpose
Usage dijo -l for printing the habit names list
Add check on habit add to avoid duplicate habits
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index d96119e..050a296 100644 --- a/src/main.rs +++ b/src/main.rs | |||
@@ -33,6 +33,14 @@ fn main() { | |||
33 | .value_name("CMD") | 33 | .value_name("CMD") |
34 | .help("run a dijo command"), | 34 | .help("run a dijo command"), |
35 | ) | 35 | ) |
36 | .arg( | ||
37 | Arg::with_name("list") | ||
38 | .short("l") | ||
39 | .long("list") | ||
40 | .takes_value(false) | ||
41 | .help("list dijo habits") | ||
42 | .conflicts_with("command"), | ||
43 | ) | ||
36 | .get_matches(); | 44 | .get_matches(); |
37 | if let Some(c) = matches.value_of("command") { | 45 | if let Some(c) = matches.value_of("command") { |
38 | let command = Command::from_string(c); | 46 | let command = Command::from_string(c); |
@@ -49,6 +57,12 @@ fn main() { | |||
49 | "Commands other than `track-up` and `track-down` are currently not supported!" | 57 | "Commands other than `track-up` and `track-down` are currently not supported!" |
50 | ), | 58 | ), |
51 | } | 59 | } |
60 | } else if matches.is_present("list") { | ||
61 | let app = App::load_state(); | ||
62 | let _habit_names = app.list_habit(); | ||
63 | for h in _habit_names { | ||
64 | println!("{}", h); | ||
65 | } | ||
52 | } else { | 66 | } else { |
53 | let mut s = termion().unwrap(); | 67 | let mut s = termion().unwrap(); |
54 | let app = App::load_state(); | 68 | let app = App::load_state(); |