New: Interactive Search from Album Detail Page

This commit is contained in:
Qstick
2018-02-04 00:27:52 -05:00
parent ff3f52eb3f
commit ec2dc34098
35 changed files with 361 additions and 1783 deletions
@@ -18,6 +18,7 @@ function CutoffUnmetRow(props) {
trackFileId,
artist,
releaseDate,
foreignAlbumId,
albumType,
title,
isSelected,
@@ -59,12 +60,8 @@ function CutoffUnmetRow(props) {
return (
<TableRowCell key={name}>
<AlbumTitleLink
albumId={id}
artistId={artist.id}
albumEntity={albumEntities.WANTED_CUTOFF_UNMET}
albumTitle={title}
showOpenArtistButton={true}
showOpenAlbumButton={true}
foreignAlbumId={foreignAlbumId}
title={title}
/>
</TableRowCell>
);
@@ -140,6 +137,7 @@ CutoffUnmetRow.propTypes = {
trackFileId: PropTypes.number,
artist: PropTypes.object.isRequired,
releaseDate: PropTypes.string.isRequired,
foreignAlbumId: PropTypes.string.isRequired,
albumType: PropTypes.string.isRequired,
title: PropTypes.string.isRequired,
isSelected: PropTypes.bool,