1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-08-18 08:19:38 +02:00

Fixed: Missing Sort Items on Poster View

This commit is contained in:
Qstick 2020-04-02 23:08:19 -04:00
parent dd52760095
commit 68dec70b34
2 changed files with 68 additions and 0 deletions

View File

@ -90,6 +90,24 @@ function MovieIndexSortMenu(props) {
>
Path
</SortMenuItem>
<SortMenuItem
name="sizeOnDisk"
sortKey={sortKey}
sortDirection={sortDirection}
onPress={onSortSelect}
>
Size on Disk
</SortMenuItem>
<SortMenuItem
name="certification"
sortKey={sortKey}
sortDirection={sortDirection}
onPress={onSortSelect}
>
Certification
</SortMenuItem>
</MenuContent>
</SortMenu>
);

View File

@ -10,6 +10,9 @@ function MovieIndexPosterInfo(props) {
qualityProfile,
showQualityProfile,
added,
inCinemas,
physicalRelease,
certification,
path,
sizeOnDisk,
sortKey,
@ -52,6 +55,42 @@ function MovieIndexPosterInfo(props) {
);
}
if (sortKey === 'inCinemas' && inCinemas) {
const inCinemasDate = getRelativeDate(
inCinemas,
shortDateFormat,
showRelativeDates,
{
timeFormat,
timeForToday: false
}
);
return (
<div className={styles.info}>
{`In Cinemas ${inCinemasDate}`}
</div>
);
}
if (sortKey === 'physicalRelease' && physicalRelease) {
const physicalReleaseDate = getRelativeDate(
physicalRelease,
shortDateFormat,
showRelativeDates,
{
timeFormat,
timeForToday: false
}
);
return (
<div className={styles.info}>
{`Released ${physicalReleaseDate}`}
</div>
);
}
if (sortKey === 'path') {
return (
<div className={styles.info}>
@ -68,6 +107,14 @@ function MovieIndexPosterInfo(props) {
);
}
if (sortKey === 'certification') {
return (
<div className={styles.info}>
{certification}
</div>
);
}
return null;
}
@ -76,6 +123,9 @@ MovieIndexPosterInfo.propTypes = {
showQualityProfile: PropTypes.bool.isRequired,
qualityProfile: PropTypes.object.isRequired,
added: PropTypes.string,
inCinemas: PropTypes.string,
certification: PropTypes.string,
physicalRelease: PropTypes.string,
path: PropTypes.string.isRequired,
sizeOnDisk: PropTypes.number,
sortKey: PropTypes.string.isRequired,