use std::{fmt::Display, sync::Mutex};
use crossterm::event::{KeyCode, KeyEvent, MouseButton, MouseEvent, MouseEventKind};
use mecomp_core::format_duration;
use mecomp_storage::db::schemas::playlist::Playlist;
use ratatui::{
layout::{Alignment, Constraint, Direction, Layout, Margin, Position, Rect},
style::{Style, Stylize},
text::{Line, Span},
widgets::{Block, Borders, Paragraph, Scrollbar, ScrollbarOrientation},
};
use tokio::sync::mpsc::UnboundedSender;
use crate::{
state::action::{Action, LibraryAction},
ui::{
colors::{
BORDER_FOCUSED, BORDER_UNFOCUSED, TEXT_HIGHLIGHT, TEXT_HIGHLIGHT_ALT, TEXT_NORMAL,
},
components::{content_view::ActiveView, Component, ComponentRender, RenderProps},
widgets::{
input_box::{self, InputBox},
tree::{state::CheckTreeState, CheckTree},
},
AppState,
},
};
use super::{
checktree_utils::{
construct_add_to_playlist_action, construct_add_to_queue_action,
construct_start_radio_action, create_playlist_tree_leaf, create_song_tree_leaf,
get_checked_things_from_tree_state, get_selected_things_from_tree_state,
},
PlaylistViewProps,
};
#[allow(clippy::module_name_repetitions)]
pub struct PlaylistView {
pub action_tx: UnboundedSender<Action>,
pub props: Option<PlaylistViewProps>,
tree_state: Mutex<CheckTreeState<String>>,
sort_mode: super::song::SortMode,
}
impl Component for PlaylistView {
fn new(state: &AppState, action_tx: UnboundedSender<Action>) -> Self
where
Self: Sized,
{
Self {
action_tx,
props: state.additional_view_data.playlist.clone(),
tree_state: Mutex::new(CheckTreeState::default()),
sort_mode: super::song::SortMode::default(),
}
}
fn move_with_state(self, state: &AppState) -> Self
where
Self: Sized,
{
if let Some(props) = &state.additional_view_data.playlist {
let mut props = props.clone();
self.sort_mode.sort_songs(&mut props.songs);
Self {
props: Some(props),
tree_state: Mutex::new(CheckTreeState::default()),
..self
}
} else {
self
}
}
fn name(&self) -> &str {
"Playlist View"
}
fn handle_key_event(&mut self, key: KeyEvent) {
match key.code {
KeyCode::PageUp => {
self.tree_state.lock().unwrap().select_relative(|current| {
current.map_or(
self.props
.as_ref()
.map_or(0, |p| p.songs.len().saturating_sub(1)),
|c| c.saturating_sub(10),
)
});
}
KeyCode::Up => {
self.tree_state.lock().unwrap().key_up();
}
KeyCode::PageDown => {
self.tree_state
.lock()
.unwrap()
.select_relative(|current| current.map_or(0, |c| c.saturating_add(10)));
}
KeyCode::Down => {
self.tree_state.lock().unwrap().key_down();
}
KeyCode::Left => {
self.tree_state.lock().unwrap().key_left();
}
KeyCode::Right => {
self.tree_state.lock().unwrap().key_right();
}
KeyCode::Char(' ') => {
self.tree_state.lock().unwrap().key_space();
}
KeyCode::Char('s') => {
self.sort_mode = self.sort_mode.next();
if let Some(props) = &mut self.props {
self.sort_mode.sort_songs(&mut props.songs);
}
}
KeyCode::Char('S') => {
self.sort_mode = self.sort_mode.prev();
if let Some(props) = &mut self.props {
self.sort_mode.sort_songs(&mut props.songs);
}
}
KeyCode::Enter => {
if self.tree_state.lock().unwrap().toggle_selected() {
let selected_things =
get_selected_things_from_tree_state(&self.tree_state.lock().unwrap());
if let Some(thing) = selected_things {
self.action_tx
.send(Action::SetCurrentView(thing.into()))
.unwrap();
}
}
}
KeyCode::Char('q') => {
let checked_things =
get_checked_things_from_tree_state(&self.tree_state.lock().unwrap());
if let Some(action) = construct_add_to_queue_action(
checked_things,
self.props.as_ref().map(|p| &p.id),
) {
self.action_tx.send(action).unwrap();
}
}
KeyCode::Char('r') => {
let checked_things =
get_checked_things_from_tree_state(&self.tree_state.lock().unwrap());
if let Some(action) =
construct_start_radio_action(checked_things, self.props.as_ref().map(|p| &p.id))
{
self.action_tx.send(action).unwrap();
}
}
KeyCode::Char('p') => {
let checked_things =
get_checked_things_from_tree_state(&self.tree_state.lock().unwrap());
if let Some(action) = construct_add_to_playlist_action(
checked_things,
self.props.as_ref().map(|p| &p.id),
) {
self.action_tx.send(action).unwrap();
}
}
KeyCode::Char('d') => {
let things = get_checked_things_from_tree_state(&self.tree_state.lock().unwrap());
if let Some(action) = self.props.as_ref().and_then(|props| {
let id = props.id.clone();
if things.is_empty() {
get_selected_things_from_tree_state(&self.tree_state.lock().unwrap())
.map(|thing| LibraryAction::RemoveSongsFromPlaylist(id, vec![thing]))
} else {
Some(LibraryAction::RemoveSongsFromPlaylist(id, things))
}
}) {
self.action_tx.send(Action::Library(action)).unwrap();
}
}
_ => {}
}
}
fn handle_mouse_event(&mut self, mouse: MouseEvent, area: Rect) {
let MouseEvent {
kind, column, row, ..
} = mouse;
let mouse_position = Position::new(column, row);
let area = area.inner(Margin::new(1, 1));
let [_, content_area] = split_area(area);
let content_area = content_area.inner(Margin::new(0, 1));
match kind {
MouseEventKind::Down(MouseButton::Left) if content_area.contains(mouse_position) => {
let selected_things =
get_selected_things_from_tree_state(&self.tree_state.lock().unwrap());
self.tree_state.lock().unwrap().mouse_click(mouse_position);
if selected_things
== get_selected_things_from_tree_state(&self.tree_state.lock().unwrap())
{
if let Some(thing) = selected_things {
self.action_tx
.send(Action::SetCurrentView(thing.into()))
.unwrap();
}
}
}
MouseEventKind::ScrollDown if content_area.contains(mouse_position) => {
self.tree_state.lock().unwrap().key_down();
}
MouseEventKind::ScrollUp if content_area.contains(mouse_position) => {
self.tree_state.lock().unwrap().key_up();
}
_ => {}
}
}
}
fn split_area(area: Rect) -> [Rect; 2] {
let [info_area, content_area] = *Layout::default()
.direction(Direction::Vertical)
.constraints([Constraint::Length(3), Constraint::Min(4)])
.split(area)
else {
panic!("Failed to split playlist view area")
};
[info_area, content_area]
}
impl ComponentRender<RenderProps> for PlaylistView {
fn render_border(&self, frame: &mut ratatui::Frame, props: RenderProps) -> RenderProps {
let border_style = if props.is_focused {
Style::default().fg(BORDER_FOCUSED.into())
} else {
Style::default().fg(BORDER_UNFOCUSED.into())
};
let area = if let Some(state) = &self.props {
let border = Block::bordered()
.title_top(Line::from(vec![
Span::styled("Playlist View".to_string(), Style::default().bold()),
Span::raw(" sorted by: "),
Span::styled(self.sort_mode.to_string(), Style::default().italic()),
]))
.title_bottom(" \u{23CE} : Open | ←/↑/↓/→: Navigate | \u{2423} Check")
.border_style(border_style);
frame.render_widget(&border, props.area);
let content_area = border.inner(props.area);
let [info_area, content_area] = split_area(content_area);
frame.render_widget(
Paragraph::new(vec![
Line::from(Span::styled(
state.playlist.name.to_string(),
Style::default().bold(),
)),
Line::from(vec![
Span::raw("Songs: "),
Span::styled(
state.playlist.song_count.to_string(),
Style::default().italic(),
),
Span::raw(" Duration: "),
Span::styled(
format_duration(&state.playlist.runtime),
Style::default().italic(),
),
]),
])
.alignment(Alignment::Center),
info_area,
);
let border = Block::default()
.borders(Borders::TOP | Borders::BOTTOM)
.title_top("q: add to queue | r: start radio | p: add to playlist")
.title_bottom("s/S: change sort | d: remove selected")
.border_style(border_style);
frame.render_widget(&border, content_area);
let content_area = border.inner(content_area);
let border = Block::default()
.borders(Borders::TOP)
.title_top(Line::from(vec![
Span::raw("Performing operations on "),
Span::raw(
if get_checked_things_from_tree_state(&self.tree_state.lock().unwrap())
.is_empty()
{
"entire playlist"
} else {
"checked items"
},
)
.fg(TEXT_HIGHLIGHT),
]))
.italic()
.border_style(border_style);
frame.render_widget(&border, content_area);
border.inner(content_area)
} else {
let border = Block::bordered()
.title_top("Playlist View")
.border_style(border_style);
frame.render_widget(&border, props.area);
border.inner(props.area)
};
RenderProps { area, ..props }
}
fn render_content(&self, frame: &mut ratatui::Frame, props: RenderProps) {
if let Some(state) = &self.props {
let items = state
.songs
.iter()
.map(|song| create_song_tree_leaf(song))
.collect::<Vec<_>>();
frame.render_stateful_widget(
CheckTree::new(&items)
.unwrap()
.highlight_style(Style::default().fg(TEXT_HIGHLIGHT.into()).bold())
.experimental_scrollbar(Some(Scrollbar::new(
ScrollbarOrientation::VerticalRight,
))),
props.area,
&mut self.tree_state.lock().unwrap(),
);
} else {
let text = "No active playlist";
frame.render_widget(
Line::from(text)
.style(Style::default().fg(TEXT_NORMAL.into()))
.alignment(Alignment::Center),
props.area,
);
}
}
}
pub struct LibraryPlaylistsView {
pub action_tx: UnboundedSender<Action>,
props: Props,
tree_state: Mutex<CheckTreeState<String>>,
input_box: InputBox,
input_box_visible: bool,
}
#[derive(Debug)]
pub struct Props {
pub playlists: Box<[Playlist]>,
sort_mode: SortMode,
}
impl From<&AppState> for Props {
fn from(state: &AppState) -> Self {
let mut playlists = state.library.playlists.clone();
let sort_mode = SortMode::default();
sort_mode.sort_playlists(&mut playlists);
Self {
playlists,
sort_mode,
}
}
}
#[derive(Default, Clone, Copy, PartialEq, Eq, Debug)]
pub enum SortMode {
#[default]
Name,
}
impl Display for SortMode {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::Name => write!(f, "Name"),
}
}
}
impl SortMode {
#[must_use]
pub const fn next(&self) -> Self {
match self {
Self::Name => Self::Name,
}
}
#[must_use]
pub const fn prev(&self) -> Self {
match self {
Self::Name => Self::Name,
}
}
#[allow(clippy::unused_self)]
pub fn sort_playlists(&self, playlists: &mut [Playlist]) {
fn key<T: AsRef<str>>(input: T) -> String {
input
.as_ref()
.to_lowercase() .trim_start_matches(|c: char| !c.is_alphanumeric()) .trim_start_matches("the ") .to_owned()
}
playlists.sort_by_key(|playlist| key(&playlist.name));
}
}
impl Component for LibraryPlaylistsView {
fn new(state: &AppState, action_tx: UnboundedSender<Action>) -> Self
where
Self: Sized,
{
Self {
input_box: InputBox::new(state, action_tx.clone()),
input_box_visible: false,
action_tx,
props: Props::from(state),
tree_state: Mutex::new(CheckTreeState::default()),
}
}
fn move_with_state(self, state: &AppState) -> Self
where
Self: Sized,
{
let tree_state = if state.active_view == ActiveView::Playlists {
self.tree_state
} else {
Mutex::new(CheckTreeState::default())
};
Self {
props: Props::from(state),
tree_state,
..self
}
}
fn name(&self) -> &str {
"Library Playlists View"
}
fn handle_key_event(&mut self, key: KeyEvent) {
if self.input_box_visible {
match key.code {
KeyCode::Enter => {
let name = self.input_box.text();
if !name.is_empty() {
self.action_tx
.send(Action::Library(LibraryAction::CreatePlaylist(
name.to_string(),
)))
.unwrap();
}
self.input_box_visible = false;
}
_ => {
self.input_box.handle_key_event(key);
}
}
} else {
match key.code {
KeyCode::PageUp => {
self.tree_state.lock().unwrap().select_relative(|current| {
current.map_or(self.props.playlists.len() - 1, |c| c.saturating_sub(10))
});
}
KeyCode::Up => {
self.tree_state.lock().unwrap().key_up();
}
KeyCode::PageDown => {
self.tree_state
.lock()
.unwrap()
.select_relative(|current| current.map_or(0, |c| c.saturating_add(10)));
}
KeyCode::Down => {
self.tree_state.lock().unwrap().key_down();
}
KeyCode::Left => {
self.tree_state.lock().unwrap().key_left();
}
KeyCode::Right => {
self.tree_state.lock().unwrap().key_right();
}
KeyCode::Enter => {
if self.tree_state.lock().unwrap().toggle_selected() {
let things =
get_selected_things_from_tree_state(&self.tree_state.lock().unwrap());
if let Some(thing) = things {
self.action_tx
.send(Action::SetCurrentView(thing.into()))
.unwrap();
}
}
}
KeyCode::Char('s') => {
self.props.sort_mode = self.props.sort_mode.next();
self.props
.sort_mode
.sort_playlists(&mut self.props.playlists);
}
KeyCode::Char('S') => {
self.props.sort_mode = self.props.sort_mode.prev();
self.props
.sort_mode
.sort_playlists(&mut self.props.playlists);
}
KeyCode::Char('n') => {
self.input_box_visible = true;
}
KeyCode::Char('d') => {
let things =
get_selected_things_from_tree_state(&self.tree_state.lock().unwrap());
if let Some(thing) = things {
self.action_tx
.send(Action::Library(LibraryAction::RemovePlaylist(thing)))
.unwrap();
}
}
_ => {}
}
}
}
fn handle_mouse_event(&mut self, mouse: MouseEvent, area: Rect) {
let MouseEvent {
kind, column, row, ..
} = mouse;
let mouse_position = Position::new(column, row);
let area = area.inner(Margin::new(1, 1));
if self.input_box_visible {
let [input_box_area, content_area] = lib_split_area(area);
let content_area = Rect {
y: content_area.y + 1,
height: content_area.height - 1,
..content_area
};
if input_box_area.contains(mouse_position) {
self.input_box.handle_mouse_event(mouse, input_box_area);
} else if content_area.contains(mouse_position)
&& kind == MouseEventKind::Down(MouseButton::Left)
{
self.input_box_visible = false;
}
} else {
let area = Rect {
y: area.y + 1,
height: area.height - 1,
..area
};
match kind {
MouseEventKind::Down(MouseButton::Left) if area.contains(mouse_position) => {
let selected_things =
get_selected_things_from_tree_state(&self.tree_state.lock().unwrap());
self.tree_state.lock().unwrap().mouse_click(mouse_position);
if selected_things
== get_selected_things_from_tree_state(&self.tree_state.lock().unwrap())
{
if let Some(thing) = selected_things {
self.action_tx
.send(Action::SetCurrentView(thing.into()))
.unwrap();
}
}
}
MouseEventKind::ScrollDown if area.contains(mouse_position) => {
self.tree_state.lock().unwrap().key_down();
}
MouseEventKind::ScrollUp if area.contains(mouse_position) => {
self.tree_state.lock().unwrap().key_up();
}
_ => {}
}
}
}
}
fn lib_split_area(area: Rect) -> [Rect; 2] {
let [input_box_area, content_area] = *Layout::default()
.direction(Direction::Vertical)
.constraints([Constraint::Length(3), Constraint::Min(1)])
.split(area)
else {
panic!("Failed to split library playlists view area");
};
[input_box_area, content_area]
}
impl ComponentRender<RenderProps> for LibraryPlaylistsView {
fn render_border(&self, frame: &mut ratatui::Frame, props: RenderProps) -> RenderProps {
let border_style = if props.is_focused {
Style::default().fg(BORDER_FOCUSED.into())
} else {
Style::default().fg(BORDER_UNFOCUSED.into())
};
let border = Block::bordered()
.title_top(Line::from(vec![
Span::styled("Library Playlists".to_string(), Style::default().bold()),
Span::raw(" sorted by: "),
Span::styled(self.props.sort_mode.to_string(), Style::default().italic()),
]))
.title_bottom(if self.input_box_visible {
""
} else {
" \u{23CE} : Open | ←/↑/↓/→: Navigate | s/S: change sort"
})
.border_style(border_style);
let content_area = border.inner(props.area);
frame.render_widget(border, props.area);
let content_area = if self.input_box_visible {
let [input_box_area, content_area] = lib_split_area(content_area);
self.input_box.render(
frame,
input_box::RenderProps {
area: input_box_area,
text_color: TEXT_HIGHLIGHT_ALT.into(),
border: Block::bordered()
.title("Enter Name:")
.border_style(Style::default().fg(BORDER_FOCUSED.into())),
show_cursor: self.input_box_visible,
},
);
content_area
} else {
content_area
};
let border = Block::new()
.borders(Borders::TOP)
.title_top(if self.input_box_visible {
" \u{23CE} : Create (cancel if empty)"
} else {
"n: new playlist | d: delete playlist"
})
.border_style(border_style);
let area = border.inner(content_area);
frame.render_widget(border, content_area);
RenderProps { area, ..props }
}
fn render_content(&self, frame: &mut ratatui::Frame, props: RenderProps) {
let items = self
.props
.playlists
.iter()
.map(|playlist| create_playlist_tree_leaf(playlist))
.collect::<Vec<_>>();
frame.render_stateful_widget(
CheckTree::new(&items)
.unwrap()
.highlight_style(Style::default().fg(TEXT_HIGHLIGHT.into()).bold())
.node_unchecked_symbol("▪ ")
.node_checked_symbol("▪ ")
.experimental_scrollbar(Some(Scrollbar::new(ScrollbarOrientation::VerticalRight))),
props.area,
&mut self.tree_state.lock().unwrap(),
);
}
}
#[cfg(test)]
mod sort_mode_tests {
use super::*;
use pretty_assertions::assert_eq;
use rstest::rstest;
use std::time::Duration;
#[rstest]
#[case(SortMode::Name, SortMode::Name)]
fn test_sort_mode_next_prev(#[case] mode: SortMode, #[case] expected: SortMode) {
assert_eq!(mode.next(), expected);
assert_eq!(mode.next().prev(), mode);
}
#[rstest]
#[case(SortMode::Name, "Name")]
fn test_sort_mode_display(#[case] mode: SortMode, #[case] expected: &str) {
assert_eq!(mode.to_string(), expected);
}
#[rstest]
fn test_sort_playlists() {
let mut songs = vec![
Playlist {
id: Playlist::generate_id(),
name: "C".into(),
song_count: 0,
runtime: Duration::from_secs(0),
},
Playlist {
id: Playlist::generate_id(),
name: "A".into(),
song_count: 0,
runtime: Duration::from_secs(0),
},
Playlist {
id: Playlist::generate_id(),
name: "B".into(),
song_count: 0,
runtime: Duration::from_secs(0),
},
];
SortMode::Name.sort_playlists(&mut songs);
assert_eq!(songs[0].name, "A".into());
assert_eq!(songs[1].name, "B".into());
assert_eq!(songs[2].name, "C".into());
}
}
#[cfg(test)]
mod item_view_tests {
use super::*;
use crate::{
state::action::{AudioAction, PopupAction, QueueAction},
test_utils::{assert_buffer_eq, item_id, setup_test_terminal, state_with_everything},
ui::{
components::content_view::{views::RADIO_SIZE, ActiveView},
widgets::popups::PopupType,
},
};
use anyhow::Result;
use crossterm::event::KeyModifiers;
use pretty_assertions::assert_eq;
use ratatui::buffer::Buffer;
#[test]
fn test_new() {
let (tx, _) = tokio::sync::mpsc::unbounded_channel();
let state = state_with_everything();
let view = PlaylistView::new(&state, tx);
assert_eq!(view.name(), "Playlist View");
assert_eq!(
view.props,
Some(state.additional_view_data.playlist.unwrap())
);
}
#[test]
fn test_move_with_state() {
let (tx, _) = tokio::sync::mpsc::unbounded_channel();
let state = AppState::default();
let new_state = state_with_everything();
let view = PlaylistView::new(&state, tx).move_with_state(&new_state);
assert_eq!(
view.props,
Some(new_state.additional_view_data.playlist.unwrap())
);
}
#[test]
fn test_render_no_song() -> Result<()> {
let (tx, _) = tokio::sync::mpsc::unbounded_channel();
let view = PlaylistView::new(&AppState::default(), tx);
let (mut terminal, area) = setup_test_terminal(20, 3);
let props = RenderProps {
area,
is_focused: true,
};
let buffer = terminal
.draw(|frame| view.render(frame, props))
.unwrap()
.buffer
.clone();
#[rustfmt::skip]
let expected = Buffer::with_lines([
"┌Playlist View─────┐",
"│No active playlist│",
"└──────────────────┘",
]);
assert_buffer_eq(&buffer, &expected);
Ok(())
}
#[test]
fn test_render() -> Result<()> {
let (tx, _) = tokio::sync::mpsc::unbounded_channel();
let view = PlaylistView::new(&state_with_everything(), tx);
let (mut terminal, area) = setup_test_terminal(60, 9);
let props = RenderProps {
area,
is_focused: true,
};
let buffer = terminal
.draw(|frame| view.render(frame, props))
.unwrap()
.buffer
.clone();
let expected = Buffer::with_lines([
"┌Playlist View sorted by: Artist───────────────────────────┐",
"│ Test Playlist │",
"│ Songs: 1 Duration: 00:03:00.00 │",
"│ │",
"│q: add to queue | r: start radio | p: add to playlist─────│",
"│Performing operations on entire playlist──────────────────│",
"│☐ Test Song Test Artist │",
"│s/S: change sort | d: remove selected─────────────────────│",
"└ ⏎ : Open | ←/↑/↓/→: Navigate | ␣ Check───────────────────┘",
]);
assert_buffer_eq(&buffer, &expected);
Ok(())
}
#[test]
fn test_render_with_checked() -> Result<()> {
let (tx, _) = tokio::sync::mpsc::unbounded_channel();
let mut view = PlaylistView::new(&state_with_everything(), tx);
let (mut terminal, area) = setup_test_terminal(60, 9);
let props = RenderProps {
area,
is_focused: true,
};
let buffer = terminal
.draw(|frame| view.render(frame, props))
.unwrap()
.buffer
.clone();
let expected = Buffer::with_lines([
"┌Playlist View sorted by: Artist───────────────────────────┐",
"│ Test Playlist │",
"│ Songs: 1 Duration: 00:03:00.00 │",
"│ │",
"│q: add to queue | r: start radio | p: add to playlist─────│",
"│Performing operations on entire playlist──────────────────│",
"│☐ Test Song Test Artist │",
"│s/S: change sort | d: remove selected─────────────────────│",
"└ ⏎ : Open | ←/↑/↓/→: Navigate | ␣ Check───────────────────┘",
]);
assert_buffer_eq(&buffer, &expected);
view.handle_key_event(KeyEvent::from(KeyCode::Down));
view.handle_key_event(KeyEvent::from(KeyCode::Char(' ')));
let buffer = terminal
.draw(|frame| view.render(frame, props))
.unwrap()
.buffer
.clone();
let expected = Buffer::with_lines([
"┌Playlist View sorted by: Artist───────────────────────────┐",
"│ Test Playlist │",
"│ Songs: 1 Duration: 00:03:00.00 │",
"│ │",
"│q: add to queue | r: start radio | p: add to playlist─────│",
"│Performing operations on checked items────────────────────│",
"│☑ Test Song Test Artist │",
"│s/S: change sort | d: remove selected─────────────────────│",
"└ ⏎ : Open | ←/↑/↓/→: Navigate | ␣ Check───────────────────┘",
]);
assert_buffer_eq(&buffer, &expected);
Ok(())
}
#[test]
fn smoke_navigation() {
let (tx, _) = tokio::sync::mpsc::unbounded_channel();
let mut view = PlaylistView::new(&state_with_everything(), tx);
view.handle_key_event(KeyEvent::from(KeyCode::Up));
view.handle_key_event(KeyEvent::from(KeyCode::PageUp));
view.handle_key_event(KeyEvent::from(KeyCode::Down));
view.handle_key_event(KeyEvent::from(KeyCode::PageDown));
view.handle_key_event(KeyEvent::from(KeyCode::Left));
view.handle_key_event(KeyEvent::from(KeyCode::Right));
}
#[test]
fn test_actions() {
let (tx, mut rx) = tokio::sync::mpsc::unbounded_channel();
let mut view = PlaylistView::new(&state_with_everything(), tx);
let (mut terminal, area) = setup_test_terminal(60, 9);
let props = RenderProps {
area,
is_focused: true,
};
let _frame = terminal.draw(|frame| view.render(frame, props)).unwrap();
view.handle_key_event(KeyEvent::from(KeyCode::Char('q')));
assert_eq!(
rx.blocking_recv().unwrap(),
Action::Audio(AudioAction::Queue(QueueAction::Add(vec![(
"playlist",
item_id()
)
.into()])))
);
view.handle_key_event(KeyEvent::from(KeyCode::Char('r')));
assert_eq!(
rx.blocking_recv().unwrap(),
Action::SetCurrentView(ActiveView::Radio(
vec![("playlist", item_id()).into()],
RADIO_SIZE
))
);
view.handle_key_event(KeyEvent::from(KeyCode::Char('p')));
assert_eq!(
rx.blocking_recv().unwrap(),
Action::Popup(PopupAction::Open(PopupType::Playlist(vec![(
"playlist",
item_id()
)
.into()])))
);
view.handle_key_event(KeyEvent::from(KeyCode::Char('d')));
view.handle_key_event(KeyEvent::from(KeyCode::Up));
let _frame = terminal.draw(|frame| view.render(frame, props)).unwrap();
view.handle_key_event(KeyEvent::from(KeyCode::Enter));
assert_eq!(
rx.blocking_recv().unwrap(),
Action::SetCurrentView(ActiveView::Song(item_id()))
);
view.handle_key_event(KeyEvent::from(KeyCode::Char(' ')));
view.handle_key_event(KeyEvent::from(KeyCode::Char('q')));
assert_eq!(
rx.blocking_recv().unwrap(),
Action::Audio(AudioAction::Queue(QueueAction::Add(vec![(
"song",
item_id()
)
.into()])))
);
view.handle_key_event(KeyEvent::from(KeyCode::Char('r')));
assert_eq!(
rx.blocking_recv().unwrap(),
Action::SetCurrentView(ActiveView::Radio(
vec![("song", item_id()).into()],
RADIO_SIZE
))
);
view.handle_key_event(KeyEvent::from(KeyCode::Char('p')));
assert_eq!(
rx.blocking_recv().unwrap(),
Action::Popup(PopupAction::Open(PopupType::Playlist(vec![(
"song",
item_id()
)
.into()])))
);
view.handle_key_event(KeyEvent::from(KeyCode::Char('d')));
assert_eq!(
rx.blocking_recv().unwrap(),
Action::Library(LibraryAction::RemoveSongsFromPlaylist(
("playlist", item_id()).into(),
vec![("song", item_id()).into()]
))
);
}
#[test]
fn test_mouse_event() {
let (tx, mut rx) = tokio::sync::mpsc::unbounded_channel();
let mut view = PlaylistView::new(&state_with_everything(), tx);
let (mut terminal, area) = setup_test_terminal(60, 9);
let props = RenderProps {
area,
is_focused: true,
};
let buffer = terminal
.draw(|frame| view.render(frame, props))
.unwrap()
.buffer
.clone();
let expected = Buffer::with_lines([
"┌Playlist View sorted by: Artist───────────────────────────┐",
"│ Test Playlist │",
"│ Songs: 1 Duration: 00:03:00.00 │",
"│ │",
"│q: add to queue | r: start radio | p: add to playlist─────│",
"│Performing operations on entire playlist──────────────────│",
"│☐ Test Song Test Artist │",
"│s/S: change sort | d: remove selected─────────────────────│",
"└ ⏎ : Open | ←/↑/↓/→: Navigate | ␣ Check───────────────────┘",
]);
assert_buffer_eq(&buffer, &expected);
view.handle_mouse_event(
MouseEvent {
kind: MouseEventKind::Down(MouseButton::Left),
column: 2,
row: 6,
modifiers: KeyModifiers::empty(),
},
area,
);
let buffer = terminal
.draw(|frame| view.render(frame, props))
.unwrap()
.buffer
.clone();
let expected = Buffer::with_lines([
"┌Playlist View sorted by: Artist───────────────────────────┐",
"│ Test Playlist │",
"│ Songs: 1 Duration: 00:03:00.00 │",
"│ │",
"│q: add to queue | r: start radio | p: add to playlist─────│",
"│Performing operations on checked items────────────────────│",
"│☑ Test Song Test Artist │",
"│s/S: change sort | d: remove selected─────────────────────│",
"└ ⏎ : Open | ←/↑/↓/→: Navigate | ␣ Check───────────────────┘",
]);
assert_buffer_eq(&buffer, &expected);
view.handle_mouse_event(
MouseEvent {
kind: MouseEventKind::Down(MouseButton::Left),
column: 2,
row: 6,
modifiers: KeyModifiers::empty(),
},
area,
);
assert_eq!(
rx.blocking_recv().unwrap(),
Action::SetCurrentView(ActiveView::Song(item_id()))
);
let expected = Buffer::with_lines([
"┌Playlist View sorted by: Artist───────────────────────────┐",
"│ Test Playlist │",
"│ Songs: 1 Duration: 00:03:00.00 │",
"│ │",
"│q: add to queue | r: start radio | p: add to playlist─────│",
"│Performing operations on entire playlist──────────────────│",
"│☐ Test Song Test Artist │",
"│s/S: change sort | d: remove selected─────────────────────│",
"└ ⏎ : Open | ←/↑/↓/→: Navigate | ␣ Check───────────────────┘",
]);
let buffer = terminal
.draw(|frame| view.render(frame, props))
.unwrap()
.buffer
.clone();
assert_buffer_eq(&buffer, &expected);
view.handle_mouse_event(
MouseEvent {
kind: MouseEventKind::ScrollDown,
column: 2,
row: 6,
modifiers: KeyModifiers::empty(),
},
area,
);
let buffer = terminal
.draw(|frame| view.render(frame, props))
.unwrap()
.buffer
.clone();
assert_buffer_eq(&buffer, &expected);
view.handle_mouse_event(
MouseEvent {
kind: MouseEventKind::ScrollUp,
column: 2,
row: 7,
modifiers: KeyModifiers::empty(),
},
area,
);
let buffer = terminal
.draw(|frame| view.render(frame, props))
.unwrap()
.buffer
.clone();
assert_buffer_eq(&buffer, &expected);
}
}
#[cfg(test)]
mod library_view_tests {
use super::*;
use crate::{
test_utils::{assert_buffer_eq, item_id, setup_test_terminal, state_with_everything},
ui::components::content_view::ActiveView,
};
use anyhow::Result;
use crossterm::event::KeyModifiers;
use pretty_assertions::assert_eq;
use ratatui::buffer::Buffer;
#[test]
fn test_new() {
let (tx, _) = tokio::sync::mpsc::unbounded_channel();
let state = state_with_everything();
let view = LibraryPlaylistsView::new(&state, tx);
assert_eq!(view.name(), "Library Playlists View");
assert_eq!(view.props.playlists, state.library.playlists);
}
#[test]
fn test_move_with_state() {
let (tx, _) = tokio::sync::mpsc::unbounded_channel();
let state = AppState::default();
let new_state = state_with_everything();
let view = LibraryPlaylistsView::new(&state, tx).move_with_state(&new_state);
assert_eq!(view.props.playlists, new_state.library.playlists);
}
#[test]
fn test_render() -> Result<()> {
let (tx, _) = tokio::sync::mpsc::unbounded_channel();
let view = LibraryPlaylistsView::new(&state_with_everything(), tx);
let (mut terminal, area) = setup_test_terminal(60, 6);
let props = RenderProps {
area,
is_focused: true,
};
let buffer = terminal
.draw(|frame| view.render(frame, props))
.unwrap()
.buffer
.clone();
let expected = Buffer::with_lines([
"┌Library Playlists sorted by: Name─────────────────────────┐",
"│n: new playlist | d: delete playlist──────────────────────│",
"│▪ Test Playlist │",
"│ │",
"│ │",
"└ ⏎ : Open | ←/↑/↓/→: Navigate | s/S: change sort──────────┘",
]);
assert_buffer_eq(&buffer, &expected);
Ok(())
}
#[test]
fn test_render_input_box() -> Result<()> {
let (tx, _) = tokio::sync::mpsc::unbounded_channel();
let mut view = LibraryPlaylistsView::new(&state_with_everything(), tx);
view.handle_key_event(KeyEvent::from(KeyCode::Char('n')));
let (mut terminal, area) = setup_test_terminal(60, 7);
let props = RenderProps {
area,
is_focused: true,
};
let buffer = terminal
.draw(|frame| view.render(frame, props))
.unwrap()
.buffer
.clone();
let expected = Buffer::with_lines([
"┌Library Playlists sorted by: Name─────────────────────────┐",
"│┌Enter Name:─────────────────────────────────────────────┐│",
"││ ││",
"│└────────────────────────────────────────────────────────┘│",
"│ ⏎ : Create (cancel if empty)─────────────────────────────│",
"│▪ Test Playlist │",
"└──────────────────────────────────────────────────────────┘",
]);
assert_buffer_eq(&buffer, &expected);
Ok(())
}
#[test]
fn test_sort_keys() {
let (tx, _) = tokio::sync::mpsc::unbounded_channel();
let mut view = LibraryPlaylistsView::new(&state_with_everything(), tx);
assert_eq!(view.props.sort_mode, SortMode::Name);
view.handle_key_event(KeyEvent::from(KeyCode::Char('s')));
assert_eq!(view.props.sort_mode, SortMode::Name);
view.handle_key_event(KeyEvent::from(KeyCode::Char('S')));
assert_eq!(view.props.sort_mode, SortMode::Name);
}
#[test]
fn smoke_navigation() {
let (tx, _) = tokio::sync::mpsc::unbounded_channel();
let mut view = LibraryPlaylistsView::new(&state_with_everything(), tx);
view.handle_key_event(KeyEvent::from(KeyCode::Up));
view.handle_key_event(KeyEvent::from(KeyCode::PageUp));
view.handle_key_event(KeyEvent::from(KeyCode::Down));
view.handle_key_event(KeyEvent::from(KeyCode::PageDown));
view.handle_key_event(KeyEvent::from(KeyCode::Left));
view.handle_key_event(KeyEvent::from(KeyCode::Right));
}
#[test]
fn test_actions() {
let (tx, mut rx) = tokio::sync::mpsc::unbounded_channel();
let mut view = LibraryPlaylistsView::new(&state_with_everything(), tx);
let (mut terminal, area) = setup_test_terminal(60, 9);
let props = RenderProps {
area,
is_focused: true,
};
terminal.draw(|frame| view.render(frame, props)).unwrap();
view.handle_key_event(KeyEvent::from(KeyCode::Down));
view.handle_key_event(KeyEvent::from(KeyCode::Enter));
assert_eq!(
rx.blocking_recv().unwrap(),
Action::SetCurrentView(ActiveView::Playlist(item_id()))
);
view.handle_key_event(KeyEvent::from(KeyCode::Char('n')));
assert_eq!(view.input_box_visible, true);
view.handle_key_event(KeyEvent::from(KeyCode::Char('a')));
view.handle_key_event(KeyEvent::from(KeyCode::Char('b')));
view.handle_key_event(KeyEvent::from(KeyCode::Enter));
assert_eq!(view.input_box_visible, false);
assert_eq!(
rx.blocking_recv().unwrap(),
Action::Library(LibraryAction::CreatePlaylist("ab".to_string()))
);
view.handle_key_event(KeyEvent::from(KeyCode::Char('d')));
assert_eq!(
rx.blocking_recv().unwrap(),
Action::Library(LibraryAction::RemovePlaylist(
("playlist", item_id()).into()
))
);
}
#[test]
fn test_mouse_event() {
let (tx, mut rx) = tokio::sync::mpsc::unbounded_channel();
let mut view = LibraryPlaylistsView::new(&state_with_everything(), tx);
let (mut terminal, area) = setup_test_terminal(60, 9);
let props = RenderProps {
area,
is_focused: true,
};
let buffer = terminal
.draw(|frame| view.render(frame, props))
.unwrap()
.buffer
.clone();
let expected = Buffer::with_lines([
"┌Library Playlists sorted by: Name─────────────────────────┐",
"│n: new playlist | d: delete playlist──────────────────────│",
"│▪ Test Playlist │",
"│ │",
"│ │",
"│ │",
"│ │",
"│ │",
"└ ⏎ : Open | ←/↑/↓/→: Navigate | s/S: change sort──────────┘",
]);
assert_buffer_eq(&buffer, &expected);
view.handle_mouse_event(
MouseEvent {
kind: MouseEventKind::ScrollDown,
column: 2,
row: 2,
modifiers: KeyModifiers::empty(),
},
area,
);
view.handle_mouse_event(
MouseEvent {
kind: MouseEventKind::Down(MouseButton::Left),
column: 2,
row: 3,
modifiers: KeyModifiers::empty(),
},
area,
);
assert_eq!(
rx.blocking_recv().unwrap(),
Action::SetCurrentView(ActiveView::Playlist(item_id()))
);
let buffer = terminal
.draw(|frame| view.render(frame, props))
.unwrap()
.buffer
.clone();
assert_buffer_eq(&buffer, &expected);
view.handle_mouse_event(
MouseEvent {
kind: MouseEventKind::ScrollUp,
column: 2,
row: 3,
modifiers: KeyModifiers::empty(),
},
area,
);
}
}