mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
fix: sort collection parts by release date (#2368)
* fix: order collection parts by release date * feat(frontend): add posters & release years to collection request modal * fix(frontend): wrap movie titles in collection request modal
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
import { sortBy } from 'lodash';
|
||||||
import type { TmdbCollection } from '../api/themoviedb/interfaces';
|
import type { TmdbCollection } from '../api/themoviedb/interfaces';
|
||||||
import { MediaType } from '../constants/media';
|
import { MediaType } from '../constants/media';
|
||||||
import Media from '../entity/Media';
|
import Media from '../entity/Media';
|
||||||
@@ -21,7 +22,7 @@ export const mapCollection = (
|
|||||||
overview: collection.overview,
|
overview: collection.overview,
|
||||||
posterPath: collection.poster_path,
|
posterPath: collection.poster_path,
|
||||||
backdropPath: collection.backdrop_path,
|
backdropPath: collection.backdrop_path,
|
||||||
parts: collection.parts.map((part) =>
|
parts: sortBy(collection.parts, 'release_date').map((part) =>
|
||||||
mapMovieResult(
|
mapMovieResult(
|
||||||
part,
|
part,
|
||||||
media?.find(
|
media?.find(
|
||||||
|
@@ -16,6 +16,7 @@ import { useUser } from '../../hooks/useUser';
|
|||||||
import globalMessages from '../../i18n/globalMessages';
|
import globalMessages from '../../i18n/globalMessages';
|
||||||
import Alert from '../Common/Alert';
|
import Alert from '../Common/Alert';
|
||||||
import Badge from '../Common/Badge';
|
import Badge from '../Common/Badge';
|
||||||
|
import CachedImage from '../Common/CachedImage';
|
||||||
import Modal from '../Common/Modal';
|
import Modal from '../Common/Modal';
|
||||||
import AdvancedRequester, { RequestOverrides } from './AdvancedRequester';
|
import AdvancedRequester, { RequestOverrides } from './AdvancedRequester';
|
||||||
import QuotaDisplay from './QuotaDisplay';
|
import QuotaDisplay from './QuotaDisplay';
|
||||||
@@ -396,8 +397,29 @@ const CollectionRequestModal: React.FC<RequestModalProps> = ({
|
|||||||
></span>
|
></span>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td className="px-1 py-4 text-sm font-medium leading-5 text-gray-100 md:px-6 whitespace-nowrap">
|
<td className="flex items-center px-1 py-4 text-sm font-medium leading-5 text-gray-100 md:px-6">
|
||||||
{part.title}
|
<div className="relative flex-shrink-0 w-10 h-auto overflow-hidden rounded-md">
|
||||||
|
<CachedImage
|
||||||
|
src={
|
||||||
|
part.posterPath
|
||||||
|
? `https://image.tmdb.org/t/p/w600_and_h900_bestv2${part.posterPath}`
|
||||||
|
: '/images/overseerr_poster_not_found.png'
|
||||||
|
}
|
||||||
|
alt=""
|
||||||
|
layout="responsive"
|
||||||
|
width={600}
|
||||||
|
height={900}
|
||||||
|
objectFit="cover"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="flex flex-col justify-center pl-2">
|
||||||
|
<div className="text-xs font-medium">
|
||||||
|
{part.releaseDate?.slice(0, 4)}
|
||||||
|
</div>
|
||||||
|
<div className="text-base font-bold">
|
||||||
|
{part.title}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td className="py-4 pr-2 text-sm leading-5 text-gray-200 md:px-6 whitespace-nowrap">
|
<td className="py-4 pr-2 text-sm leading-5 text-gray-200 md:px-6 whitespace-nowrap">
|
||||||
{!partMedia && !partRequest && (
|
{!partMedia && !partRequest && (
|
||||||
|
Reference in New Issue
Block a user