summaryrefslogtreecommitdiffstats
path: root/src/event_dispatch.rs
blob: 4ff6ac75d9e40ccab4d598391059431a1b867452 (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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
use tuikit::prelude::{Event, Key, MouseButton};

use crate::config::Colors;
use crate::event_exec::EventExec;
use crate::fm_error::FmResult;
use crate::keybindings::Bindings;
use crate::mode::{InputSimple, MarkAction, Mode, Navigate};
use crate::status::Status;

/// Struct which mutates `tabs.selected()..
/// Holds a mapping which can't be static since it's read from a config file.
/// All keys are mapped to relevent events on tabs.selected().
/// Keybindings are read from `Config`.
pub struct EventDispatcher {
    binds: Bindings,
}

impl EventDispatcher {
    /// Creates a map of configurable keybindings to `EventChar`
    /// The `EventChar` is then associated to a `tabs.selected(). method.
    pub fn new(binds: Bindings) -> Self {
        Self { binds }
    }

    /// Reaction to received events.
    /// Only non keyboard events are dealt here directly.
    /// Keyboard events are configurable and are sent to specific functions
    /// which needs to know those keybindings.
    pub fn dispatch(&self, status: &mut Status, ev: Event, colors: &Colors) -> FmResult<()> {
        match ev {
            Event::Key(Key::WheelUp(_, col, _)) => {
                EventExec::event_select_pane(status, col)?;
                EventExec::event_move_up(status, colors)
            }
            Event::Key(Key::WheelDown(_, col, _)) => {
                EventExec::event_select_pane(status, col)?;
                EventExec::event_move_down(status, colors)
            }
            Event::Key(Key::SingleClick(MouseButton::Left, row, col)) => {
                EventExec::event_select_pane(status, col)?;
                EventExec::event_select_row(status, row, colors)
            }
            Event::Key(Key::SingleClick(MouseButton::Right, row, col))
            | Event::Key(Key::DoubleClick(MouseButton::Left, row, col)) => {
                EventExec::event_select_pane(status, col)?;
                EventExec::event_select_row(status, row, colors)?;
                EventExec::event_right_click(status, colors)
            }
            Event::User(_) => EventExec::refresh_status(status, colors),
            Event::Resize { width, height } => EventExec::resize(status, width, height, colors),
            Event::Key(Key::Char(c)) => self.char(status, Key::Char(c), colors),
            Event::Key(key) => self.key_matcher(status, key, colors),
            _ => Ok(()),
        }
    }

    fn key_matcher(&self, status: &mut Status, key: Key, colors: &Colors) -> FmResult<()> {
        match self.binds.get(&key) {
            Some(action) => action.matcher(status, colors),
            None => Ok(()),
        }
    }

    fn char(&self, status: &mut Status, key_char: Key, colors: &Colors) -> FmResult<()> {
        match key_char {
            Key::Char(c) => match status.selected_non_mut().mode {
                Mode::InputSimple(InputSimple::Marks(MarkAction::Jump)) => {
                    EventExec::exec_marks_jump(status, c, colors)
                }
                Mode::InputSimple(InputSimple::Marks(MarkAction::New)) => {
                    EventExec::exec_marks_new(status, c, colors)
                }
                Mode::InputSimple(InputSimple::Sort) => {
                    EventExec::event_leave_sort(status, c, colors)
                }
                Mode::InputSimple(InputSimple::RegexMatch) => {
                    EventExec::event_text_insertion(status.selected(), c);
                    status.select_from_regex()?;
                    Ok(())
                }
                Mode::InputSimple(_) => {
                    EventExec::event_text_insertion(status.selected(), c);
                    Ok(())
                }
                Mode::InputCompleted(_) => {
                    EventExec::event_text_insert_and_complete(status.selected(), c)
                }
                Mode::Normal | Mode::Tree => match self.binds.get(&key_char) {
                    Some(event_char) => event_char.matcher(status, colors),
                    None => Ok(()),
                },
                Mode::NeedConfirmation(confirmed_action) => {
                    if c == 'y' {
                        let _ = EventExec::exec_confirmed_action(status, confirmed_action, colors);
                    }
                    EventExec::event_leave_need_confirmation(status.selected());
                    Ok(())
                }
                Mode::Navigate(Navigate::Trash) if c == 'x' => {
                    EventExec::event_trash_remove_file(status)
                }
                Mode::Navigate(Navigate::EncryptedDrive) if c == 'm' => {
                    EventExec::event_mount_encrypted_drive(status)
                }
                Mode::Navigate(Navigate::EncryptedDrive) if c == 'g' => {
                    EventExec::event_move_to_encrypted_drive(status)
                }
                Mode::Navigate(Navigate::EncryptedDrive) if c == 'u' => {
                    EventExec::event_umount_encrypted_drive(status)
                }
                Mode::Preview | Mode::Navigate(_) => {
                    status.selected().set_mode(Mode::Normal);
                    EventExec::event_normal(status.selected())
                }
            },
            _ => Ok(()),
        }
    }
}