spotify-tui 0.25.0

A terminal user interface for Spotify
use super::{
  super::app::{ActiveBlock, App},
  common_key_events,
};
use crate::event::Key;
use crate::network::IoEvent;

pub fn handler(key: Key, app: &mut App) {
  match key {
    Key::Esc => {
      app.set_current_route_state(Some(ActiveBlock::Library), None);
    }
    k if common_key_events::down_event(k) => {
      match &app.devices {
        Some(p) => {
          if let Some(selected_device_index) = app.selected_device_index {
            let next_index =
              common_key_events::on_down_press_handler(&p.devices, Some(selected_device_index));
            app.selected_device_index = Some(next_index);
          }
        }
        None => {}
      };
    }
    k if common_key_events::up_event(k) => {
      match &app.devices {
        Some(p) => {
          if let Some(selected_device_index) = app.selected_device_index {
            let next_index =
              common_key_events::on_up_press_handler(&p.devices, Some(selected_device_index));
            app.selected_device_index = Some(next_index);
          }
        }
        None => {}
      };
    }
    k if common_key_events::high_event(k) => {
      match &app.devices {
        Some(_p) => {
          if let Some(_selected_device_index) = app.selected_device_index {
            let next_index = common_key_events::on_high_press_handler();
            app.selected_device_index = Some(next_index);
          }
        }
        None => {}
      };
    }
    k if common_key_events::middle_event(k) => {
      match &app.devices {
        Some(p) => {
          if let Some(_selected_device_index) = app.selected_device_index {
            let next_index = common_key_events::on_middle_press_handler(&p.devices);
            app.selected_device_index = Some(next_index);
          }
        }
        None => {}
      };
    }
    k if common_key_events::low_event(k) => {
      match &app.devices {
        Some(p) => {
          if let Some(_selected_device_index) = app.selected_device_index {
            let next_index = common_key_events::on_low_press_handler(&p.devices);
            app.selected_device_index = Some(next_index);
          }
        }
        None => {}
      };
    }
    Key::Enter => {
      if let (Some(devices), Some(index)) = (app.devices.clone(), app.selected_device_index) {
        if let Some(device) = &devices.devices.get(index) {
          app.dispatch(IoEvent::TransferPlaybackToDevice(device.id.clone()));
        }
      };
    }
    _ => {}
  }
}