Simplify matches structures
This commit is contained in:
parent
6333b7a131
commit
006a981347
@ -3,9 +3,9 @@ use std::{sync::mpsc, thread, time};
|
|||||||
use musichoard::collection::musicbrainz::IMusicBrainzRef;
|
use musichoard::collection::musicbrainz::IMusicBrainzRef;
|
||||||
|
|
||||||
use crate::tui::app::{
|
use crate::tui::app::{
|
||||||
machine::{matches::AppMatchesInfo, App, AppInner, AppMachine},
|
machine::{App, AppInner, AppMachine},
|
||||||
selection::{Delta, ListSelection},
|
selection::{Delta, ListSelection},
|
||||||
AppPublic, AppState, IAppInteractBrowse,
|
AppMatchesInfo, AppPublic, AppState, IAppInteractBrowse,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub struct AppBrowse;
|
pub struct AppBrowse;
|
||||||
@ -139,8 +139,8 @@ mod tests {
|
|||||||
use crate::tui::{
|
use crate::tui::{
|
||||||
app::{
|
app::{
|
||||||
machine::tests::{inner, inner_with_mb, music_hoard},
|
machine::tests::{inner, inner_with_mb, music_hoard},
|
||||||
AppPublicAlbumMatches, AppPublicArtistMatches, AppPublicMatchesInfo, Category,
|
AppAlbumMatches, AppArtistMatches, AppMatchesInfo, Category, IAppAccess, IAppInteract,
|
||||||
IAppAccess, IAppInteract, IAppInteractMatches,
|
IAppInteractMatches,
|
||||||
},
|
},
|
||||||
lib::interface::musicbrainz::{self, Match, MockIMusicBrainz},
|
lib::interface::musicbrainz::{self, Match, MockIMusicBrainz},
|
||||||
testmod::COLLECTION,
|
testmod::COLLECTION,
|
||||||
@ -263,11 +263,11 @@ mod tests {
|
|||||||
|
|
||||||
let public_matches = public.state.unwrap_matches();
|
let public_matches = public.state.unwrap_matches();
|
||||||
|
|
||||||
let expected = Some(AppPublicMatchesInfo::Album(AppPublicAlbumMatches {
|
let expected = Some(AppMatchesInfo::Album(AppAlbumMatches {
|
||||||
matching: &album_1,
|
matching: album_1.clone(),
|
||||||
list: &matches_1,
|
list: matches_1.clone(),
|
||||||
}));
|
}));
|
||||||
assert_eq!(public_matches.matches, expected);
|
assert_eq!(public_matches.matches, expected.as_ref());
|
||||||
|
|
||||||
let mut app = app.unwrap_matches().select();
|
let mut app = app.unwrap_matches().select();
|
||||||
|
|
||||||
@ -276,11 +276,11 @@ mod tests {
|
|||||||
|
|
||||||
let public_matches = public.state.unwrap_matches();
|
let public_matches = public.state.unwrap_matches();
|
||||||
|
|
||||||
let expected = Some(AppPublicMatchesInfo::Album(AppPublicAlbumMatches {
|
let expected = Some(AppMatchesInfo::Album(AppAlbumMatches {
|
||||||
matching: &album_4,
|
matching: album_4.clone(),
|
||||||
list: &matches_4,
|
list: matches_4.clone(),
|
||||||
}));
|
}));
|
||||||
assert_eq!(public_matches.matches, expected);
|
assert_eq!(public_matches.matches, expected.as_ref());
|
||||||
|
|
||||||
let app = app.unwrap_matches().select();
|
let app = app.unwrap_matches().select();
|
||||||
app.unwrap_browse();
|
app.unwrap_browse();
|
||||||
@ -324,11 +324,11 @@ mod tests {
|
|||||||
|
|
||||||
let public_matches = public.state.unwrap_matches();
|
let public_matches = public.state.unwrap_matches();
|
||||||
|
|
||||||
let expected = Some(AppPublicMatchesInfo::Artist(AppPublicArtistMatches {
|
let expected = Some(AppMatchesInfo::Artist(AppArtistMatches {
|
||||||
matching: &artist,
|
matching: artist.clone(),
|
||||||
list: &matches,
|
list: matches.clone(),
|
||||||
}));
|
}));
|
||||||
assert_eq!(public_matches.matches, expected);
|
assert_eq!(public_matches.matches, expected.as_ref());
|
||||||
|
|
||||||
let app = app.unwrap_matches().select();
|
let app = app.unwrap_matches().select();
|
||||||
app.unwrap_browse();
|
app.unwrap_browse();
|
||||||
|
@ -1,23 +1,12 @@
|
|||||||
use std::{cmp, sync::mpsc};
|
use std::{cmp, sync::mpsc};
|
||||||
|
|
||||||
use musichoard::collection::{album::Album, artist::Artist};
|
use crate::tui::app::{
|
||||||
|
|
||||||
use crate::tui::{
|
|
||||||
app::{
|
|
||||||
machine::{App, AppInner, AppMachine},
|
machine::{App, AppInner, AppMachine},
|
||||||
AppPublic, AppPublicAlbumMatches, AppPublicArtistMatches, AppPublicMatches,
|
AppAlbumMatches, AppArtistMatches, AppMatchesInfo, AppPublic, AppPublicMatches, AppState,
|
||||||
AppPublicMatchesInfo, AppState, IAppInteractMatches, WidgetState,
|
IAppInteractMatches, WidgetState,
|
||||||
},
|
|
||||||
lib::interface::musicbrainz::Match,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
impl AppArtistMatches {
|
||||||
pub struct AppArtistMatchesInfo {
|
|
||||||
pub matching: Artist,
|
|
||||||
pub list: Vec<Match<Artist>>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl AppArtistMatchesInfo {
|
|
||||||
fn is_empty(&self) -> bool {
|
fn is_empty(&self) -> bool {
|
||||||
self.list.is_empty()
|
self.list.is_empty()
|
||||||
}
|
}
|
||||||
@ -27,22 +16,7 @@ impl AppArtistMatchesInfo {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'app> From<&'app AppArtistMatchesInfo> for AppPublicArtistMatches<'app> {
|
impl AppAlbumMatches {
|
||||||
fn from(value: &'app AppArtistMatchesInfo) -> Self {
|
|
||||||
AppPublicArtistMatches {
|
|
||||||
matching: &value.matching,
|
|
||||||
list: &value.list,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
|
||||||
pub struct AppAlbumMatchesInfo {
|
|
||||||
pub matching: Album,
|
|
||||||
pub list: Vec<Match<Album>>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl AppAlbumMatchesInfo {
|
|
||||||
fn is_empty(&self) -> bool {
|
fn is_empty(&self) -> bool {
|
||||||
self.list.is_empty()
|
self.list.is_empty()
|
||||||
}
|
}
|
||||||
@ -52,21 +26,6 @@ impl AppAlbumMatchesInfo {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'app> From<&'app AppAlbumMatchesInfo> for AppPublicAlbumMatches<'app> {
|
|
||||||
fn from(value: &'app AppAlbumMatchesInfo) -> Self {
|
|
||||||
AppPublicAlbumMatches {
|
|
||||||
matching: &value.matching,
|
|
||||||
list: &value.list,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
|
||||||
pub enum AppMatchesInfo {
|
|
||||||
Artist(AppArtistMatchesInfo),
|
|
||||||
Album(AppAlbumMatchesInfo),
|
|
||||||
}
|
|
||||||
|
|
||||||
impl AppMatchesInfo {
|
impl AppMatchesInfo {
|
||||||
fn is_empty(&self) -> bool {
|
fn is_empty(&self) -> bool {
|
||||||
match self {
|
match self {
|
||||||
@ -81,23 +40,6 @@ impl AppMatchesInfo {
|
|||||||
Self::Album(a) => a.len(),
|
Self::Album(a) => a.len(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn artist(matching: Artist, list: Vec<Match<Artist>>) -> Self {
|
|
||||||
AppMatchesInfo::Artist(AppArtistMatchesInfo { matching, list })
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn album(matching: Album, list: Vec<Match<Album>>) -> Self {
|
|
||||||
AppMatchesInfo::Album(AppAlbumMatchesInfo { matching, list })
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'app> From<&'app AppMatchesInfo> for AppPublicMatchesInfo<'app> {
|
|
||||||
fn from(value: &'app AppMatchesInfo) -> Self {
|
|
||||||
match value {
|
|
||||||
AppMatchesInfo::Artist(a) => AppPublicMatchesInfo::Artist(a.into()),
|
|
||||||
AppMatchesInfo::Album(a) => AppPublicMatchesInfo::Album(a.into()),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct AppMatches {
|
pub struct AppMatches {
|
||||||
@ -209,13 +151,16 @@ impl IAppInteractMatchesPrivate for AppMatches {
|
|||||||
mod tests {
|
mod tests {
|
||||||
use mpsc::Receiver;
|
use mpsc::Receiver;
|
||||||
use musichoard::collection::{
|
use musichoard::collection::{
|
||||||
album::{AlbumDate, AlbumId, AlbumPrimaryType, AlbumSecondaryType},
|
album::{Album, AlbumDate, AlbumId, AlbumPrimaryType, AlbumSecondaryType},
|
||||||
artist::ArtistId,
|
artist::{Artist, ArtistId},
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::tui::app::{
|
use crate::tui::{
|
||||||
|
app::{
|
||||||
machine::tests::{inner, music_hoard},
|
machine::tests::{inner, music_hoard},
|
||||||
IAppAccess,
|
IAppAccess,
|
||||||
|
},
|
||||||
|
lib::interface::musicbrainz::Match,
|
||||||
};
|
};
|
||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
@ -322,7 +267,7 @@ mod tests {
|
|||||||
let public = app.get();
|
let public = app.get();
|
||||||
let public_matches = public.state.unwrap_matches();
|
let public_matches = public.state.unwrap_matches();
|
||||||
|
|
||||||
assert_eq!(public_matches.matches, Some((&matches_info_vec[0]).into()));
|
assert_eq!(public_matches.matches, Some(&matches_info_vec[0]));
|
||||||
assert_eq!(public_matches.state, &widget_state);
|
assert_eq!(public_matches.state, &widget_state);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -129,26 +129,36 @@ pub struct AppPublicInner<'app> {
|
|||||||
pub selection: &'app mut Selection,
|
pub selection: &'app mut Selection,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Eq)]
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||||
pub struct AppPublicArtistMatches<'app> {
|
pub struct AppArtistMatches {
|
||||||
pub matching: &'app Artist,
|
pub matching: Artist,
|
||||||
pub list: &'app [Match<Artist>],
|
pub list: Vec<Match<Artist>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Eq)]
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||||
pub struct AppPublicAlbumMatches<'app> {
|
pub struct AppAlbumMatches {
|
||||||
pub matching: &'app Album,
|
pub matching: Album,
|
||||||
pub list: &'app [Match<Album>],
|
pub list: Vec<Match<Album>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Eq)]
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||||
pub enum AppPublicMatchesInfo<'app> {
|
pub enum AppMatchesInfo {
|
||||||
Artist(AppPublicArtistMatches<'app>),
|
Artist(AppArtistMatches),
|
||||||
Album(AppPublicAlbumMatches<'app>),
|
Album(AppAlbumMatches),
|
||||||
|
}
|
||||||
|
|
||||||
|
impl AppMatchesInfo {
|
||||||
|
pub fn artist(matching: Artist, list: Vec<Match<Artist>>) -> Self {
|
||||||
|
AppMatchesInfo::Artist(AppArtistMatches { matching, list })
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn album(matching: Album, list: Vec<Match<Album>>) -> Self {
|
||||||
|
AppMatchesInfo::Album(AppAlbumMatches { matching, list })
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct AppPublicMatches<'app> {
|
pub struct AppPublicMatches<'app> {
|
||||||
pub matches: Option<AppPublicMatchesInfo<'app>>,
|
pub matches: Option<&'app AppMatchesInfo>,
|
||||||
pub state: &'app mut WidgetState,
|
pub state: &'app mut WidgetState,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ use musichoard::collection::{
|
|||||||
track::{TrackFormat, TrackQuality},
|
track::{TrackFormat, TrackQuality},
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::tui::{app::AppPublicMatchesInfo, lib::interface::musicbrainz::Match};
|
use crate::tui::{app::AppMatchesInfo, lib::interface::musicbrainz::Match};
|
||||||
|
|
||||||
pub struct UiDisplay;
|
pub struct UiDisplay;
|
||||||
|
|
||||||
@ -114,11 +114,11 @@ impl UiDisplay {
|
|||||||
"Matching nothing"
|
"Matching nothing"
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn display_matching_info(matches: Option<&AppPublicMatchesInfo>) -> String {
|
pub fn display_matching_info(matches: Option<&AppMatchesInfo>) -> String {
|
||||||
match matches.as_ref() {
|
match matches.as_ref() {
|
||||||
Some(kind) => match kind {
|
Some(kind) => match kind {
|
||||||
AppPublicMatchesInfo::Artist(m) => UiDisplay::display_artist_matching(m.matching),
|
AppMatchesInfo::Artist(m) => UiDisplay::display_artist_matching(&m.matching),
|
||||||
AppPublicMatchesInfo::Album(m) => UiDisplay::display_album_matching(m.matching),
|
AppMatchesInfo::Album(m) => UiDisplay::display_album_matching(&m.matching),
|
||||||
},
|
},
|
||||||
None => UiDisplay::display_nothing_matching().to_string(),
|
None => UiDisplay::display_nothing_matching().to_string(),
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@ use musichoard::collection::{album::Album, artist::Artist};
|
|||||||
use ratatui::widgets::{List, ListItem};
|
use ratatui::widgets::{List, ListItem};
|
||||||
|
|
||||||
use crate::tui::{
|
use crate::tui::{
|
||||||
app::{AppPublicMatchesInfo, WidgetState},
|
app::{AppMatchesInfo, WidgetState},
|
||||||
lib::interface::musicbrainz::Match,
|
lib::interface::musicbrainz::Match,
|
||||||
ui::display::UiDisplay,
|
ui::display::UiDisplay,
|
||||||
};
|
};
|
||||||
@ -14,11 +14,11 @@ pub struct MatchesState<'a, 'b> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<'a, 'b> MatchesState<'a, 'b> {
|
impl<'a, 'b> MatchesState<'a, 'b> {
|
||||||
pub fn new(matches: Option<AppPublicMatchesInfo>, state: &'b mut WidgetState) -> Self {
|
pub fn new(matches: Option<&AppMatchesInfo>, state: &'b mut WidgetState) -> Self {
|
||||||
match matches {
|
match matches {
|
||||||
Some(info) => match info {
|
Some(info) => match info {
|
||||||
AppPublicMatchesInfo::Artist(m) => Self::artists(m.matching, m.list, state),
|
AppMatchesInfo::Artist(m) => Self::artists(&m.matching, &m.list, state),
|
||||||
AppPublicMatchesInfo::Album(m) => Self::albums(m.matching, m.list, state),
|
AppMatchesInfo::Album(m) => Self::albums(&m.matching, &m.list, state),
|
||||||
},
|
},
|
||||||
None => Self::empty(state),
|
None => Self::empty(state),
|
||||||
}
|
}
|
||||||
|
@ -59,7 +59,7 @@ impl Minibuffer<'_> {
|
|||||||
},
|
},
|
||||||
AppState::Matches(public) => Minibuffer {
|
AppState::Matches(public) => Minibuffer {
|
||||||
paragraphs: vec![
|
paragraphs: vec![
|
||||||
Paragraph::new(UiDisplay::display_matching_info(public.matches.as_ref())),
|
Paragraph::new(UiDisplay::display_matching_info(public.matches)),
|
||||||
Paragraph::new("q: abort"),
|
Paragraph::new("q: abort"),
|
||||||
],
|
],
|
||||||
columns: 2,
|
columns: 2,
|
||||||
|
@ -14,10 +14,7 @@ use ratatui::{layout::Rect, widgets::Paragraph, Frame};
|
|||||||
use musichoard::collection::{album::Album, Collection};
|
use musichoard::collection::{album::Album, Collection};
|
||||||
|
|
||||||
use crate::tui::{
|
use crate::tui::{
|
||||||
app::{
|
app::{AppMatchesInfo, AppPublicState, AppState, Category, IAppAccess, Selection, WidgetState},
|
||||||
AppPublicMatchesInfo, AppPublicState, AppState, Category, IAppAccess, Selection,
|
|
||||||
WidgetState,
|
|
||||||
},
|
|
||||||
ui::{
|
ui::{
|
||||||
browse::{
|
browse::{
|
||||||
AlbumArea, AlbumState, ArtistArea, ArtistState, FrameArea, TrackArea, TrackState,
|
AlbumArea, AlbumState, ArtistArea, ArtistState, FrameArea, TrackArea, TrackState,
|
||||||
@ -135,7 +132,7 @@ impl Ui {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn render_matches_overlay(
|
fn render_matches_overlay(
|
||||||
matches: Option<AppPublicMatchesInfo>,
|
matches: Option<&AppMatchesInfo>,
|
||||||
state: &mut WidgetState,
|
state: &mut WidgetState,
|
||||||
frame: &mut Frame,
|
frame: &mut Frame,
|
||||||
) {
|
) {
|
||||||
@ -185,10 +182,7 @@ mod tests {
|
|||||||
};
|
};
|
||||||
|
|
||||||
use crate::tui::{
|
use crate::tui::{
|
||||||
app::{
|
app::{AppPublic, AppPublicInner, AppPublicMatches, Delta},
|
||||||
AppPublic, AppPublicAlbumMatches, AppPublicArtistMatches, AppPublicInner,
|
|
||||||
AppPublicMatches, Delta,
|
|
||||||
},
|
|
||||||
lib::interface::musicbrainz::Match,
|
lib::interface::musicbrainz::Match,
|
||||||
testmod::COLLECTION,
|
testmod::COLLECTION,
|
||||||
tests::terminal,
|
tests::terminal,
|
||||||
@ -196,33 +190,6 @@ mod tests {
|
|||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
impl<'app> AppPublicArtistMatches<'app> {
|
|
||||||
fn get(&self) -> AppPublicArtistMatches<'app> {
|
|
||||||
AppPublicArtistMatches {
|
|
||||||
matching: self.matching,
|
|
||||||
list: self.list,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'app> AppPublicAlbumMatches<'app> {
|
|
||||||
fn get(&self) -> AppPublicAlbumMatches<'app> {
|
|
||||||
AppPublicAlbumMatches {
|
|
||||||
matching: self.matching,
|
|
||||||
list: self.list,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'app> AppPublicMatchesInfo<'app> {
|
|
||||||
fn get(&self) -> AppPublicMatchesInfo<'app> {
|
|
||||||
match self {
|
|
||||||
Self::Artist(a) => Self::Artist(a.get()),
|
|
||||||
Self::Album(a) => Self::Album(a.get()),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Automock does not support returning types with generic lifetimes.
|
// Automock does not support returning types with generic lifetimes.
|
||||||
impl<'app> IAppAccess for AppPublic<'app> {
|
impl<'app> IAppAccess for AppPublic<'app> {
|
||||||
fn get(&mut self) -> AppPublic {
|
fn get(&mut self) -> AppPublic {
|
||||||
@ -237,7 +204,7 @@ mod tests {
|
|||||||
AppState::Reload(()) => AppState::Reload(()),
|
AppState::Reload(()) => AppState::Reload(()),
|
||||||
AppState::Search(s) => AppState::Search(s),
|
AppState::Search(s) => AppState::Search(s),
|
||||||
AppState::Matches(ref mut m) => AppState::Matches(AppPublicMatches {
|
AppState::Matches(ref mut m) => AppState::Matches(AppPublicMatches {
|
||||||
matches: m.matches.as_mut().map(|k| k.get()),
|
matches: m.matches,
|
||||||
state: m.state,
|
state: m.state,
|
||||||
}),
|
}),
|
||||||
AppState::Error(s) => AppState::Error(s),
|
AppState::Error(s) => AppState::Error(s),
|
||||||
@ -257,18 +224,12 @@ mod tests {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn artist_matches<'app>(
|
fn artist_matches(matching: Artist, list: Vec<Match<Artist>>) -> AppMatchesInfo {
|
||||||
matching: &'app Artist,
|
AppMatchesInfo::artist(matching, list)
|
||||||
list: &'app [Match<Artist>],
|
|
||||||
) -> AppPublicMatchesInfo<'app> {
|
|
||||||
AppPublicMatchesInfo::Artist(AppPublicArtistMatches { matching, list })
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn album_matches<'app>(
|
fn album_matches(matching: Album, list: Vec<Match<Album>>) -> AppMatchesInfo {
|
||||||
matching: &'app Album,
|
AppMatchesInfo::album(matching, list)
|
||||||
list: &'app [Match<Album>],
|
|
||||||
) -> AppPublicMatchesInfo<'app> {
|
|
||||||
AppPublicMatchesInfo::Album(AppPublicAlbumMatches { matching, list })
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn draw_test_suite(collection: &Collection, selection: &mut Selection) {
|
fn draw_test_suite(collection: &Collection, selection: &mut Selection) {
|
||||||
@ -364,21 +325,21 @@ mod tests {
|
|||||||
let mut terminal = terminal();
|
let mut terminal = terminal();
|
||||||
|
|
||||||
let artist = Artist::new(ArtistId::new("an artist"));
|
let artist = Artist::new(ArtistId::new("an artist"));
|
||||||
|
|
||||||
let artist_match = Match {
|
let artist_match = Match {
|
||||||
score: 80,
|
score: 80,
|
||||||
item: artist.clone(),
|
item: artist.clone(),
|
||||||
disambiguation: None,
|
disambiguation: None,
|
||||||
};
|
};
|
||||||
|
let list = vec![artist_match.clone(), artist_match.clone()];
|
||||||
|
let artist_matches = artist_matches(artist, list);
|
||||||
|
|
||||||
let list = [artist_match.clone(), artist_match.clone()];
|
|
||||||
let mut widget_state = WidgetState::default();
|
let mut widget_state = WidgetState::default();
|
||||||
widget_state.list.select(Some(0));
|
widget_state.list.select(Some(0));
|
||||||
|
|
||||||
let mut app = AppPublic {
|
let mut app = AppPublic {
|
||||||
inner: public_inner(collection, &mut selection),
|
inner: public_inner(collection, &mut selection),
|
||||||
state: AppState::Matches(AppPublicMatches {
|
state: AppState::Matches(AppPublicMatches {
|
||||||
matches: Some(artist_matches(&artist, &list)),
|
matches: Some(&artist_matches),
|
||||||
state: &mut widget_state,
|
state: &mut widget_state,
|
||||||
}),
|
}),
|
||||||
};
|
};
|
||||||
@ -398,21 +359,21 @@ mod tests {
|
|||||||
Some(AlbumPrimaryType::Album),
|
Some(AlbumPrimaryType::Album),
|
||||||
vec![AlbumSecondaryType::Live, AlbumSecondaryType::Compilation],
|
vec![AlbumSecondaryType::Live, AlbumSecondaryType::Compilation],
|
||||||
);
|
);
|
||||||
|
|
||||||
let album_match = Match {
|
let album_match = Match {
|
||||||
score: 80,
|
score: 80,
|
||||||
item: album.clone(),
|
item: album.clone(),
|
||||||
disambiguation: None,
|
disambiguation: None,
|
||||||
};
|
};
|
||||||
|
let list = vec![album_match.clone(), album_match.clone()];
|
||||||
|
let album_matches = album_matches(album, list);
|
||||||
|
|
||||||
let list = [album_match.clone(), album_match.clone()];
|
|
||||||
let mut widget_state = WidgetState::default();
|
let mut widget_state = WidgetState::default();
|
||||||
widget_state.list.select(Some(0));
|
widget_state.list.select(Some(0));
|
||||||
|
|
||||||
let mut app = AppPublic {
|
let mut app = AppPublic {
|
||||||
inner: public_inner(collection, &mut selection),
|
inner: public_inner(collection, &mut selection),
|
||||||
state: AppState::Matches(AppPublicMatches {
|
state: AppState::Matches(AppPublicMatches {
|
||||||
matches: Some(album_matches(&album, &list)),
|
matches: Some(&album_matches),
|
||||||
state: &mut widget_state,
|
state: &mut widget_state,
|
||||||
}),
|
}),
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user