1234567891011121314151617181920212223242526272829303132333435 |
- use crate::{
- app::{App, AppResult},
- backend::event::BackendEvent,
- };
- use crossterm::event::{KeyCode, KeyEvent, KeyModifiers};
- /// Handles the key events and updates the state of [`App`].
- pub fn handle_key_events(key_event: KeyEvent, app: &mut App) -> AppResult<()> {
- match key_event.code {
- // Exit application on `ESC` or `q`
- KeyCode::Esc | KeyCode::Char('q') => {
- app.quit();
- }
- // Exit application on `Ctrl-C`
- KeyCode::Char('c') | KeyCode::Char('C') => {
- if key_event.modifiers == KeyModifiers::CONTROL {
- app.quit();
- }
- }
- // Counter handlers
- KeyCode::Right => {
- app.increment_counter();
- }
- KeyCode::Left => {
- app.decrement_counter();
- }
- // Other handlers you could add here.
- _ => {}
- }
- Ok(())
- }
- pub fn handle_backend_events(_backend_event: BackendEvent, _app: &mut App) -> AppResult<()> {
- return Ok(());
- }
|