summaryrefslogtreecommitdiffstats
path: root/src/state.rs
blob: b979ed78f1736d74c1c3349f4f0b9ce264e7ac43 (plain) (blame)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
use textmode::Textmode as _;

pub struct State {
    readline: crate::readline::Readline,
    history: crate::history::History,
    focus: Focus,
}

impl State {
    pub fn new(actions: async_std::channel::Sender<Action>) -> Self {
        let readline = crate::readline::Readline::new(actions.clone());
        let history = crate::history::History::new(actions);
        let focus = Focus::Readline;
        Self {
            readline,
            history,
            focus,
        }
    }

    pub async fn render(
        &self,
        out: &mut textmode::Output,
    ) -> anyhow::Result<()> {
        out.clear();
        if let Focus::Readline = self.focus {
            self.history.render(out, self.readline.lines()).await?;
            self.readline.render(out).await?;
        } else {
            self.history.render(out, 0).await?;
        }
        out.refresh().await?;
        Ok(())
    }

    pub async fn handle_action(
        &mut self,
        action: Action,
        output: &mut textmode::Output,
    ) {
        match action {
            Action::Render => {
                self.render(output).await.unwrap();
            }
            Action::Run(ref cmd) => {
                self.history.run(cmd).await.unwrap();
            }
            Action::UpdateFocus(new_focus) => {
                self.focus = new_focus;
                self.render(output).await.unwrap();
            }
        }
    }

    pub async fn handle_input(&mut self, key: Option<textmode::Key>) -> bool {
        if let Some(key) = key {
            let quit = match self.focus {
                Focus::Readline => self.readline.handle_key(key).await,
                Focus::History(idx) => {
                    self.history.handle_key(key, idx).await
                }
            };
            if quit {
                return true;
            }
        } else {
            return true;
        }
        false
    }
}

#[derive(Copy, Clone)]
pub enum Focus {
    Readline,
    History(usize),
}

pub enum Action {
    Render,
    Run(String),
    UpdateFocus(Focus),
}