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
45
46
47
48
49
50
51
52
|
mod db;
mod deck;
mod gui;
mod model;
mod space_repetition;
mod util;
use crate::util::event::Events;
use anyhow::Result;
use rusqlite::Connection;
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 conn = db::init(db_path(&deck_path))?;
let deck_name = deck::pp_from_path(&deck_path).unwrap_or_else(|| "Deck".to_string());
let mut term = gui::terminal()?;
let events = Events::new();
match run_tui(conn, &deck_path, &deck_name, &mut term, &events) {
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 run_tui(
conn: Connection,
deck_path: &str,
deck_name: &str,
term: &mut gui::Term,
events: &Events,
) -> Result<()> {
gui::synchronize(&conn, term, &events, &deck_path, &deck_name)?;
gui::start(&conn, term, &events, &deck_name)
}
fn db_path(deck_path: &str) -> String {
let mut path = PathBuf::from(deck_path);
path.set_extension("db");
path.to_string_lossy().to_string()
}
|