blob: a791f29d539e08a28ccd26dab28c68231026447e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
mod db;
mod deck;
mod gui;
mod model;
mod space_repetition;
mod sync;
mod util;
use crate::util::event::Events;
use anyhow::Result;
use std::path::PathBuf;
use structopt::StructOpt;
#[derive(StructOpt)]
#[structopt()]
struct Opt {
#[structopt(long, default_value = "deck.deck")]
deck: String,
}
fn main() -> Result<()> {
let deck_path = Opt::from_args().deck;
let mut conn = db::init(db_path(&deck_path))?;
let deck_name = deck::pp_from_path(&deck_path).unwrap_or_else(|| "Deck".to_string());
sync::run(&mut conn, &deck_path)?;
let mut term = gui::terminal()?;
let events = Events::new();
match gui::start(&conn, &mut term, &events, &deck_name) {
Ok(()) => Ok(()),
Err(msg) => {
// Show errors in TUI, otherwise they are hidden
gui::message::show(&mut term, &events, &deck_name, &format!("{msg}"), true)?;
Err(msg)
}
}
}
fn db_path(deck_path: &str) -> String {
let mut path = PathBuf::from(deck_path);
path.set_extension("db");
path.to_string_lossy().to_string()
}
|