Very sketchy first draft
This commit is contained in:
parent
d8fd952456
commit
93d23e5666
@ -1,7 +1,13 @@
|
|||||||
|
use musichoard::{
|
||||||
|
collection::{album::Album, artist::Artist, musicbrainz::IMusicBrainzRef, Collection},
|
||||||
|
external::musicbrainz::api::{client::MusicBrainzApiClient, MusicBrainzApi},
|
||||||
|
interface::musicbrainz::IMusicBrainz,
|
||||||
|
};
|
||||||
|
|
||||||
use crate::tui::{
|
use crate::tui::{
|
||||||
app::{
|
app::{
|
||||||
machine::{App, AppInner, AppMachine},
|
machine::{App, AppInner, AppMachine},
|
||||||
AppPublic, AppState, IAppInteractInfo,
|
AppPublic, AppState, Category, IAppInteractInfo,
|
||||||
},
|
},
|
||||||
lib::IMusicHoard,
|
lib::IMusicHoard,
|
||||||
};
|
};
|
||||||
@ -39,6 +45,48 @@ impl<MH: IMusicHoard> IAppInteractInfo for AppMachine<MH, AppInfo> {
|
|||||||
AppMachine::browse(self.inner).into()
|
AppMachine::browse(self.inner).into()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn fetch_musicbrainz(self) -> Self::APP {
|
||||||
|
const USER_AGENT: &str = concat!(
|
||||||
|
"MusicHoard/",
|
||||||
|
env!("CARGO_PKG_VERSION"),
|
||||||
|
" ( musichoard@thenineworlds.net )"
|
||||||
|
);
|
||||||
|
|
||||||
|
let client = MusicBrainzApiClient::new(USER_AGENT).expect("failed to create API client");
|
||||||
|
let mut api = MusicBrainzApi::new(client);
|
||||||
|
|
||||||
|
if self.inner.selection.category() == Category::Artist {
|
||||||
|
return AppMachine::error(self.inner, "artist fetch not yet supported").into();
|
||||||
|
}
|
||||||
|
|
||||||
|
let coll: &Collection = self.inner.music_hoard.get_collection();
|
||||||
|
let artist: &Artist = match self.inner.selection.state_artist(coll) {
|
||||||
|
Some(artist_state) => &coll[artist_state.index],
|
||||||
|
None => {
|
||||||
|
return AppMachine::error(self.inner, "cannot fetch: no artist selected").into()
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let arid = match artist.musicbrainz {
|
||||||
|
Some(ref mbid) => mbid.mbid(),
|
||||||
|
None => {
|
||||||
|
return AppMachine::error(self.inner, "cannot fetch: missing artist MBID").into()
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let album: &Album = match self.inner.selection.state_album(coll) {
|
||||||
|
Some(album_state) => &artist.albums[album_state.index],
|
||||||
|
None => {
|
||||||
|
return AppMachine::error(self.inner, "cannot fetch: no album selected").into()
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
match api.search_release_group(arid, album) {
|
||||||
|
Ok(matches) => AppMachine::matches(self.inner, matches).into(),
|
||||||
|
Err(err) => AppMachine::error(self.inner, err.to_string()).into(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn no_op(self) -> Self::APP {
|
fn no_op(self) -> Self::APP {
|
||||||
self.into()
|
self.into()
|
||||||
}
|
}
|
||||||
|
92
src/tui/app/machine/matches.rs
Normal file
92
src/tui/app/machine/matches.rs
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
use std::cmp;
|
||||||
|
|
||||||
|
use musichoard::{collection::album::Album, interface::musicbrainz::Match};
|
||||||
|
|
||||||
|
use crate::tui::{
|
||||||
|
app::{
|
||||||
|
machine::{App, AppInner, AppMachine},
|
||||||
|
AppPublic, AppPublicMatches, AppState, IAppInteractMatches, WidgetState,
|
||||||
|
},
|
||||||
|
lib::IMusicHoard,
|
||||||
|
};
|
||||||
|
|
||||||
|
pub struct AppMatches {
|
||||||
|
matches: Vec<Match<Album>>,
|
||||||
|
state: WidgetState,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<MH: IMusicHoard> AppMachine<MH, AppMatches> {
|
||||||
|
pub fn matches(inner: AppInner<MH>, matches: Vec<Match<Album>>) -> Self {
|
||||||
|
let mut state = WidgetState::default();
|
||||||
|
if !matches.is_empty() {
|
||||||
|
state.list.select(Some(0));
|
||||||
|
}
|
||||||
|
AppMachine {
|
||||||
|
inner,
|
||||||
|
state: AppMatches { matches, state },
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<MH: IMusicHoard> From<AppMachine<MH, AppMatches>> for App<MH> {
|
||||||
|
fn from(machine: AppMachine<MH, AppMatches>) -> Self {
|
||||||
|
AppState::Matches(machine)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a, MH: IMusicHoard> From<&'a mut AppMachine<MH, AppMatches>> for AppPublic<'a> {
|
||||||
|
fn from(machine: &'a mut AppMachine<MH, AppMatches>) -> Self {
|
||||||
|
AppPublic {
|
||||||
|
inner: (&mut machine.inner).into(),
|
||||||
|
state: AppState::Matches(AppPublicMatches {
|
||||||
|
matches: &machine.state.matches,
|
||||||
|
state: &mut machine.state.state,
|
||||||
|
}),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<MH: IMusicHoard> IAppInteractMatches for AppMachine<MH, AppMatches> {
|
||||||
|
type APP = App<MH>;
|
||||||
|
|
||||||
|
fn prev_match(mut self) -> Self::APP {
|
||||||
|
if let Some(index) = self.state.state.list.selected() {
|
||||||
|
let result = index.saturating_sub(1);
|
||||||
|
self.state.state.list.select(Some(result));
|
||||||
|
}
|
||||||
|
|
||||||
|
self.into()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn next_match(mut self) -> Self::APP {
|
||||||
|
if let Some(index) = self.state.state.list.selected() {
|
||||||
|
let result = index.saturating_add(1);
|
||||||
|
let to = cmp::min(result, self.state.matches.len() - 1);
|
||||||
|
self.state.state.list.select(Some(to));
|
||||||
|
}
|
||||||
|
|
||||||
|
self.into()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn abort(self) -> Self::APP {
|
||||||
|
AppMachine::info(self.inner).into()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn no_op(self) -> Self::APP {
|
||||||
|
self.into()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use crate::tui::app::machine::tests::{inner, music_hoard};
|
||||||
|
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn no_op() {
|
||||||
|
let matches = AppMachine::matches(inner(music_hoard(vec![])), vec![]);
|
||||||
|
let app = matches.no_op();
|
||||||
|
app.unwrap_matches();
|
||||||
|
}
|
||||||
|
}
|
@ -2,6 +2,7 @@ mod browse;
|
|||||||
mod critical;
|
mod critical;
|
||||||
mod error;
|
mod error;
|
||||||
mod info;
|
mod info;
|
||||||
|
mod matches;
|
||||||
mod reload;
|
mod reload;
|
||||||
mod search;
|
mod search;
|
||||||
|
|
||||||
@ -14,12 +15,14 @@ use browse::AppBrowse;
|
|||||||
use critical::AppCritical;
|
use critical::AppCritical;
|
||||||
use error::AppError;
|
use error::AppError;
|
||||||
use info::AppInfo;
|
use info::AppInfo;
|
||||||
|
use matches::AppMatches;
|
||||||
use reload::AppReload;
|
use reload::AppReload;
|
||||||
use search::AppSearch;
|
use search::AppSearch;
|
||||||
|
|
||||||
pub type App<MH> = AppState<
|
pub type App<MH> = AppState<
|
||||||
AppMachine<MH, AppBrowse>,
|
AppMachine<MH, AppBrowse>,
|
||||||
AppMachine<MH, AppInfo>,
|
AppMachine<MH, AppInfo>,
|
||||||
|
AppMachine<MH, AppMatches>,
|
||||||
AppMachine<MH, AppReload>,
|
AppMachine<MH, AppReload>,
|
||||||
AppMachine<MH, AppSearch>,
|
AppMachine<MH, AppSearch>,
|
||||||
AppMachine<MH, AppError>,
|
AppMachine<MH, AppError>,
|
||||||
@ -56,6 +59,7 @@ impl<MH: IMusicHoard> App<MH> {
|
|||||||
match self {
|
match self {
|
||||||
AppState::Browse(browse) => &browse.inner,
|
AppState::Browse(browse) => &browse.inner,
|
||||||
AppState::Info(info) => &info.inner,
|
AppState::Info(info) => &info.inner,
|
||||||
|
AppState::Matches(matches) => &matches.inner,
|
||||||
AppState::Reload(reload) => &reload.inner,
|
AppState::Reload(reload) => &reload.inner,
|
||||||
AppState::Search(search) => &search.inner,
|
AppState::Search(search) => &search.inner,
|
||||||
AppState::Error(error) => &error.inner,
|
AppState::Error(error) => &error.inner,
|
||||||
@ -67,6 +71,7 @@ impl<MH: IMusicHoard> App<MH> {
|
|||||||
match self {
|
match self {
|
||||||
AppState::Browse(browse) => &mut browse.inner,
|
AppState::Browse(browse) => &mut browse.inner,
|
||||||
AppState::Info(info) => &mut info.inner,
|
AppState::Info(info) => &mut info.inner,
|
||||||
|
AppState::Matches(matches) => &mut matches.inner,
|
||||||
AppState::Reload(reload) => &mut reload.inner,
|
AppState::Reload(reload) => &mut reload.inner,
|
||||||
AppState::Search(search) => &mut search.inner,
|
AppState::Search(search) => &mut search.inner,
|
||||||
AppState::Error(error) => &mut error.inner,
|
AppState::Error(error) => &mut error.inner,
|
||||||
@ -78,6 +83,7 @@ impl<MH: IMusicHoard> App<MH> {
|
|||||||
impl<MH: IMusicHoard> IAppInteract for App<MH> {
|
impl<MH: IMusicHoard> IAppInteract for App<MH> {
|
||||||
type BS = AppMachine<MH, AppBrowse>;
|
type BS = AppMachine<MH, AppBrowse>;
|
||||||
type IS = AppMachine<MH, AppInfo>;
|
type IS = AppMachine<MH, AppInfo>;
|
||||||
|
type MS = AppMachine<MH, AppMatches>;
|
||||||
type RS = AppMachine<MH, AppReload>;
|
type RS = AppMachine<MH, AppReload>;
|
||||||
type SS = AppMachine<MH, AppSearch>;
|
type SS = AppMachine<MH, AppSearch>;
|
||||||
type ES = AppMachine<MH, AppError>;
|
type ES = AppMachine<MH, AppError>;
|
||||||
@ -92,7 +98,9 @@ impl<MH: IMusicHoard> IAppInteract for App<MH> {
|
|||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
fn state(self) -> AppState<Self::BS, Self::IS, Self::RS, Self::SS, Self::ES, Self::CS> {
|
fn state(
|
||||||
|
self,
|
||||||
|
) -> AppState<Self::BS, Self::IS, Self::MS, Self::RS, Self::SS, Self::ES, Self::CS> {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -102,6 +110,7 @@ impl<MH: IMusicHoard> IAppAccess for App<MH> {
|
|||||||
match self {
|
match self {
|
||||||
AppState::Browse(browse) => browse.into(),
|
AppState::Browse(browse) => browse.into(),
|
||||||
AppState::Info(info) => info.into(),
|
AppState::Info(info) => info.into(),
|
||||||
|
AppState::Matches(matches) => matches.into(),
|
||||||
AppState::Reload(reload) => reload.into(),
|
AppState::Reload(reload) => reload.into(),
|
||||||
AppState::Search(search) => search.into(),
|
AppState::Search(search) => search.into(),
|
||||||
AppState::Error(error) => error.into(),
|
AppState::Error(error) => error.into(),
|
||||||
@ -141,7 +150,7 @@ mod tests {
|
|||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
impl<BS, IS, RS, SS, ES, CS> AppState<BS, IS, RS, SS, ES, CS> {
|
impl<BS, IS, MS, RS, SS, ES, CS> AppState<BS, IS, MS, RS, SS, ES, CS> {
|
||||||
pub fn unwrap_browse(self) -> BS {
|
pub fn unwrap_browse(self) -> BS {
|
||||||
match self {
|
match self {
|
||||||
AppState::Browse(browse) => browse,
|
AppState::Browse(browse) => browse,
|
||||||
@ -156,6 +165,13 @@ mod tests {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn unwrap_matches(self) -> MS {
|
||||||
|
match self {
|
||||||
|
AppState::Matches(matches) => matches,
|
||||||
|
_ => panic!(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub fn unwrap_reload(self) -> RS {
|
pub fn unwrap_reload(self) -> RS {
|
||||||
match self {
|
match self {
|
||||||
AppState::Reload(reload) => reload,
|
AppState::Reload(reload) => reload,
|
||||||
|
@ -4,11 +4,15 @@ mod selection;
|
|||||||
pub use machine::App;
|
pub use machine::App;
|
||||||
pub use selection::{Category, Delta, Selection, WidgetState};
|
pub use selection::{Category, Delta, Selection, WidgetState};
|
||||||
|
|
||||||
use musichoard::collection::Collection;
|
use musichoard::{
|
||||||
|
collection::{album::Album, Collection},
|
||||||
|
interface::musicbrainz::Match,
|
||||||
|
};
|
||||||
|
|
||||||
pub enum AppState<BS, IS, RS, SS, ES, CS> {
|
pub enum AppState<BS, IS, MS, RS, SS, ES, CS> {
|
||||||
Browse(BS),
|
Browse(BS),
|
||||||
Info(IS),
|
Info(IS),
|
||||||
|
Matches(MS),
|
||||||
Reload(RS),
|
Reload(RS),
|
||||||
Search(SS),
|
Search(SS),
|
||||||
Error(ES),
|
Error(ES),
|
||||||
@ -18,6 +22,7 @@ pub enum AppState<BS, IS, RS, SS, ES, CS> {
|
|||||||
pub trait IAppInteract {
|
pub trait IAppInteract {
|
||||||
type BS: IAppInteractBrowse<APP = Self>;
|
type BS: IAppInteractBrowse<APP = Self>;
|
||||||
type IS: IAppInteractInfo<APP = Self>;
|
type IS: IAppInteractInfo<APP = Self>;
|
||||||
|
type MS: IAppInteractMatches<APP = Self>;
|
||||||
type RS: IAppInteractReload<APP = Self>;
|
type RS: IAppInteractReload<APP = Self>;
|
||||||
type SS: IAppInteractSearch<APP = Self>;
|
type SS: IAppInteractSearch<APP = Self>;
|
||||||
type ES: IAppInteractError<APP = Self>;
|
type ES: IAppInteractError<APP = Self>;
|
||||||
@ -27,7 +32,9 @@ pub trait IAppInteract {
|
|||||||
fn force_quit(self) -> Self;
|
fn force_quit(self) -> Self;
|
||||||
|
|
||||||
#[allow(clippy::type_complexity)]
|
#[allow(clippy::type_complexity)]
|
||||||
fn state(self) -> AppState<Self::BS, Self::IS, Self::RS, Self::SS, Self::ES, Self::CS>;
|
fn state(
|
||||||
|
self,
|
||||||
|
) -> AppState<Self::BS, Self::IS, Self::MS, Self::RS, Self::SS, Self::ES, Self::CS>;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait IAppInteractBrowse {
|
pub trait IAppInteractBrowse {
|
||||||
@ -53,6 +60,18 @@ pub trait IAppInteractInfo {
|
|||||||
type APP: IAppInteract;
|
type APP: IAppInteract;
|
||||||
|
|
||||||
fn hide_info_overlay(self) -> Self::APP;
|
fn hide_info_overlay(self) -> Self::APP;
|
||||||
|
fn fetch_musicbrainz(self) -> Self::APP;
|
||||||
|
|
||||||
|
fn no_op(self) -> Self::APP;
|
||||||
|
}
|
||||||
|
|
||||||
|
pub trait IAppInteractMatches {
|
||||||
|
type APP: IAppInteract;
|
||||||
|
|
||||||
|
fn prev_match(self) -> Self::APP;
|
||||||
|
fn next_match(self) -> Self::APP;
|
||||||
|
|
||||||
|
fn abort(self) -> Self::APP;
|
||||||
|
|
||||||
fn no_op(self) -> Self::APP;
|
fn no_op(self) -> Self::APP;
|
||||||
}
|
}
|
||||||
@ -109,9 +128,15 @@ pub struct AppPublicInner<'app> {
|
|||||||
pub selection: &'app mut Selection,
|
pub selection: &'app mut Selection,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub type AppPublicState<'app> = AppState<(), (), (), &'app str, &'app str, &'app str>;
|
pub struct AppPublicMatches<'app> {
|
||||||
|
pub matches: &'app [Match<Album>],
|
||||||
|
pub state: &'app mut WidgetState,
|
||||||
|
}
|
||||||
|
|
||||||
impl<BS, IS, RS, SS, ES, CS> AppState<BS, IS, RS, SS, ES, CS> {
|
pub type AppPublicState<'app> =
|
||||||
|
AppState<(), (), AppPublicMatches<'app>, (), &'app str, &'app str, &'app str>;
|
||||||
|
|
||||||
|
impl<BS, IS, MS, RS, SS, ES, CS> AppState<BS, IS, MS, RS, SS, ES, CS> {
|
||||||
pub fn is_search(&self) -> bool {
|
pub fn is_search(&self) -> bool {
|
||||||
matches!(self, AppState::Search(_))
|
matches!(self, AppState::Search(_))
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@ use mockall::automock;
|
|||||||
use crate::tui::{
|
use crate::tui::{
|
||||||
app::{
|
app::{
|
||||||
AppState, Delta, IAppInteract, IAppInteractBrowse, IAppInteractCritical, IAppInteractError,
|
AppState, Delta, IAppInteract, IAppInteractBrowse, IAppInteractCritical, IAppInteractError,
|
||||||
IAppInteractInfo, IAppInteractReload, IAppInteractSearch,
|
IAppInteractInfo, IAppInteractMatches, IAppInteractReload, IAppInteractSearch,
|
||||||
},
|
},
|
||||||
event::{Event, EventError, EventReceiver},
|
event::{Event, EventError, EventReceiver},
|
||||||
};
|
};
|
||||||
@ -20,6 +20,7 @@ trait IEventHandlerPrivate<APP: IAppInteract> {
|
|||||||
fn handle_key_event(app: APP, key_event: KeyEvent) -> APP;
|
fn handle_key_event(app: APP, key_event: KeyEvent) -> APP;
|
||||||
fn handle_browse_key_event(app: <APP as IAppInteract>::BS, key_event: KeyEvent) -> APP;
|
fn handle_browse_key_event(app: <APP as IAppInteract>::BS, key_event: KeyEvent) -> APP;
|
||||||
fn handle_info_key_event(app: <APP as IAppInteract>::IS, key_event: KeyEvent) -> APP;
|
fn handle_info_key_event(app: <APP as IAppInteract>::IS, key_event: KeyEvent) -> APP;
|
||||||
|
fn handle_matches_key_event(app: <APP as IAppInteract>::MS, key_event: KeyEvent) -> APP;
|
||||||
fn handle_reload_key_event(app: <APP as IAppInteract>::RS, key_event: KeyEvent) -> APP;
|
fn handle_reload_key_event(app: <APP as IAppInteract>::RS, key_event: KeyEvent) -> APP;
|
||||||
fn handle_search_key_event(app: <APP as IAppInteract>::SS, key_event: KeyEvent) -> APP;
|
fn handle_search_key_event(app: <APP as IAppInteract>::SS, key_event: KeyEvent) -> APP;
|
||||||
fn handle_error_key_event(app: <APP as IAppInteract>::ES, key_event: KeyEvent) -> APP;
|
fn handle_error_key_event(app: <APP as IAppInteract>::ES, key_event: KeyEvent) -> APP;
|
||||||
@ -63,6 +64,9 @@ impl<APP: IAppInteract> IEventHandlerPrivate<APP> for EventHandler {
|
|||||||
AppState::Info(info) => {
|
AppState::Info(info) => {
|
||||||
<Self as IEventHandlerPrivate<APP>>::handle_info_key_event(info, key_event)
|
<Self as IEventHandlerPrivate<APP>>::handle_info_key_event(info, key_event)
|
||||||
}
|
}
|
||||||
|
AppState::Matches(matches) => {
|
||||||
|
<Self as IEventHandlerPrivate<APP>>::handle_matches_key_event(matches, key_event)
|
||||||
|
}
|
||||||
AppState::Reload(reload) => {
|
AppState::Reload(reload) => {
|
||||||
<Self as IEventHandlerPrivate<APP>>::handle_reload_key_event(reload, key_event)
|
<Self as IEventHandlerPrivate<APP>>::handle_reload_key_event(reload, key_event)
|
||||||
}
|
}
|
||||||
@ -115,6 +119,19 @@ impl<APP: IAppInteract> IEventHandlerPrivate<APP> for EventHandler {
|
|||||||
| KeyCode::Char('Q')
|
| KeyCode::Char('Q')
|
||||||
| KeyCode::Char('m')
|
| KeyCode::Char('m')
|
||||||
| KeyCode::Char('M') => app.hide_info_overlay(),
|
| KeyCode::Char('M') => app.hide_info_overlay(),
|
||||||
|
KeyCode::Char('f') | KeyCode::Char('F') => app.fetch_musicbrainz(),
|
||||||
|
// Othey keys.
|
||||||
|
_ => app.no_op(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn handle_matches_key_event(app: <APP as IAppInteract>::MS, key_event: KeyEvent) -> APP {
|
||||||
|
match key_event.code {
|
||||||
|
// Abort.
|
||||||
|
KeyCode::Esc | KeyCode::Char('q') | KeyCode::Char('Q') => app.abort(),
|
||||||
|
// Select.
|
||||||
|
KeyCode::Up => app.prev_match(),
|
||||||
|
KeyCode::Down => app.next_match(),
|
||||||
// Othey keys.
|
// Othey keys.
|
||||||
_ => app.no_op(),
|
_ => app.no_op(),
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,14 @@
|
|||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
|
|
||||||
use musichoard::collection::{
|
use musichoard::{
|
||||||
|
collection::{
|
||||||
album::{Album, AlbumDate, AlbumPrimaryType, AlbumSecondaryType, AlbumSeq, AlbumStatus},
|
album::{Album, AlbumDate, AlbumPrimaryType, AlbumSecondaryType, AlbumSeq, AlbumStatus},
|
||||||
artist::Artist,
|
artist::Artist,
|
||||||
musicbrainz::IMusicBrainzRef,
|
musicbrainz::IMusicBrainzRef,
|
||||||
track::{Track, TrackFormat, TrackQuality},
|
track::{Track, TrackFormat, TrackQuality},
|
||||||
Collection,
|
Collection,
|
||||||
|
},
|
||||||
|
interface::musicbrainz::Match,
|
||||||
};
|
};
|
||||||
use ratatui::{
|
use ratatui::{
|
||||||
layout::{Alignment, Rect},
|
layout::{Alignment, Rect},
|
||||||
@ -505,7 +508,14 @@ impl Minibuffer<'_> {
|
|||||||
columns,
|
columns,
|
||||||
},
|
},
|
||||||
AppState::Info(_) => Minibuffer {
|
AppState::Info(_) => Minibuffer {
|
||||||
paragraphs: vec![Paragraph::new("m: hide info overlay")],
|
paragraphs: vec![
|
||||||
|
Paragraph::new("m: hide info overlay"),
|
||||||
|
Paragraph::new("f: fetch musicbrainz"),
|
||||||
|
],
|
||||||
|
columns,
|
||||||
|
},
|
||||||
|
AppState::Matches(_) => Minibuffer {
|
||||||
|
paragraphs: vec![],
|
||||||
columns,
|
columns,
|
||||||
},
|
},
|
||||||
AppState::Reload(_) => Minibuffer {
|
AppState::Reload(_) => Minibuffer {
|
||||||
@ -621,6 +631,18 @@ impl Ui {
|
|||||||
state.height = area.height.saturating_sub(2) as usize;
|
state.height = area.height.saturating_sub(2) as usize;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn render_overlay_list_widget(
|
||||||
|
title: &str,
|
||||||
|
list: List,
|
||||||
|
state: &mut WidgetState,
|
||||||
|
active: bool,
|
||||||
|
area: Rect,
|
||||||
|
frame: &mut Frame,
|
||||||
|
) {
|
||||||
|
frame.render_widget(Clear, area);
|
||||||
|
Self::render_list_widget(title, list, state, active, area, frame);
|
||||||
|
}
|
||||||
|
|
||||||
fn render_info_widget(
|
fn render_info_widget(
|
||||||
title: &str,
|
title: &str,
|
||||||
paragraph: Paragraph,
|
paragraph: Paragraph,
|
||||||
@ -792,6 +814,31 @@ impl Ui {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn render_matches_overlay(
|
||||||
|
matches: &[Match<Album>],
|
||||||
|
state: &mut WidgetState,
|
||||||
|
frame: &mut Frame,
|
||||||
|
) {
|
||||||
|
let area = OverlayBuilder::default().build(frame.size());
|
||||||
|
|
||||||
|
let list = List::new(
|
||||||
|
matches
|
||||||
|
.iter()
|
||||||
|
.map(|m| {
|
||||||
|
ListItem::new(format!(
|
||||||
|
"{:010} | {} [{}] ({}%)",
|
||||||
|
AlbumState::display_album_date(&m.item.date),
|
||||||
|
&m.item.id.title,
|
||||||
|
AlbumState::display_type(&m.item.primary_type, &m.item.secondary_types),
|
||||||
|
m.score,
|
||||||
|
))
|
||||||
|
})
|
||||||
|
.collect::<Vec<ListItem>>(),
|
||||||
|
);
|
||||||
|
|
||||||
|
Self::render_overlay_list_widget("Matches", list, state, true, area, frame)
|
||||||
|
}
|
||||||
|
|
||||||
fn render_reload_overlay(frame: &mut Frame) {
|
fn render_reload_overlay(frame: &mut Frame) {
|
||||||
let area = OverlayBuilder::default()
|
let area = OverlayBuilder::default()
|
||||||
.with_width(OverlaySize::Value(39))
|
.with_width(OverlaySize::Value(39))
|
||||||
@ -827,6 +874,9 @@ impl IUi for Ui {
|
|||||||
Self::render_main_frame(collection, selection, &state, frame);
|
Self::render_main_frame(collection, selection, &state, frame);
|
||||||
match state {
|
match state {
|
||||||
AppState::Info(_) => Self::render_info_overlay(collection, selection, frame),
|
AppState::Info(_) => Self::render_info_overlay(collection, selection, frame),
|
||||||
|
AppState::Matches(public) => {
|
||||||
|
Self::render_matches_overlay(public.matches, public.state, frame)
|
||||||
|
}
|
||||||
AppState::Reload(_) => Self::render_reload_overlay(frame),
|
AppState::Reload(_) => Self::render_reload_overlay(frame),
|
||||||
AppState::Error(msg) => Self::render_error_overlay("Error", msg, frame),
|
AppState::Error(msg) => Self::render_error_overlay("Error", msg, frame),
|
||||||
AppState::Critical(msg) => Self::render_error_overlay("Critical Error", msg, frame),
|
AppState::Critical(msg) => Self::render_error_overlay("Critical Error", msg, frame),
|
||||||
@ -840,7 +890,7 @@ mod tests {
|
|||||||
use musichoard::collection::artist::ArtistId;
|
use musichoard::collection::artist::ArtistId;
|
||||||
|
|
||||||
use crate::tui::{
|
use crate::tui::{
|
||||||
app::{AppPublic, AppPublicInner, Delta},
|
app::{AppPublic, AppPublicInner, AppPublicMatches, Delta},
|
||||||
testmod::COLLECTION,
|
testmod::COLLECTION,
|
||||||
tests::terminal,
|
tests::terminal,
|
||||||
};
|
};
|
||||||
@ -858,6 +908,10 @@ mod tests {
|
|||||||
state: match self.state {
|
state: match self.state {
|
||||||
AppState::Browse(()) => AppState::Browse(()),
|
AppState::Browse(()) => AppState::Browse(()),
|
||||||
AppState::Info(()) => AppState::Info(()),
|
AppState::Info(()) => AppState::Info(()),
|
||||||
|
AppState::Matches(ref mut m) => AppState::Matches(AppPublicMatches {
|
||||||
|
matches: &m.matches,
|
||||||
|
state: &mut m.state,
|
||||||
|
}),
|
||||||
AppState::Reload(()) => AppState::Reload(()),
|
AppState::Reload(()) => AppState::Reload(()),
|
||||||
AppState::Search(s) => AppState::Search(s),
|
AppState::Search(s) => AppState::Search(s),
|
||||||
AppState::Error(s) => AppState::Error(s),
|
AppState::Error(s) => AppState::Error(s),
|
||||||
|
Loading…
Reference in New Issue
Block a user