mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
feat(holiday): special seasonal slider added to discover :)
This commit is contained in:
70
src/components/Discover/Holiday/index.tsx
Normal file
70
src/components/Discover/Holiday/index.tsx
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
import React, { useContext } from 'react';
|
||||||
|
import { useSWRInfinite } from 'swr';
|
||||||
|
import type { MovieResult } from '../../../../server/models/Search';
|
||||||
|
import ListView from '../../Common/ListView';
|
||||||
|
import { LanguageContext } from '../../../context/LanguageContext';
|
||||||
|
import Header from '../../Common/Header';
|
||||||
|
|
||||||
|
interface SearchResult {
|
||||||
|
page: number;
|
||||||
|
totalResults: number;
|
||||||
|
totalPages: number;
|
||||||
|
results: MovieResult[];
|
||||||
|
}
|
||||||
|
|
||||||
|
const Holiday: React.FC = () => {
|
||||||
|
const { locale } = useContext(LanguageContext);
|
||||||
|
const { data, error, size, setSize } = useSWRInfinite<SearchResult>(
|
||||||
|
(pageIndex: number, previousPageData: SearchResult | null) => {
|
||||||
|
if (previousPageData && pageIndex + 1 > previousPageData.totalPages) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return `/api/v1/discover/keyword/207317/movies?page=${
|
||||||
|
pageIndex + 1
|
||||||
|
}&language=${locale}`;
|
||||||
|
},
|
||||||
|
{
|
||||||
|
initialSize: 3,
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
const isLoadingInitialData = !data && !error;
|
||||||
|
const isLoadingMore =
|
||||||
|
isLoadingInitialData ||
|
||||||
|
(size > 0 && data && typeof data[size - 1] === 'undefined');
|
||||||
|
|
||||||
|
const fetchMore = () => {
|
||||||
|
setSize(size + 1);
|
||||||
|
};
|
||||||
|
|
||||||
|
if (error) {
|
||||||
|
return <div>{error}</div>;
|
||||||
|
}
|
||||||
|
|
||||||
|
const titles = data?.reduce(
|
||||||
|
(a, v) => [...a, ...v.results],
|
||||||
|
[] as MovieResult[]
|
||||||
|
);
|
||||||
|
|
||||||
|
const isEmpty = !isLoadingInitialData && titles?.length === 0;
|
||||||
|
const isReachingEnd =
|
||||||
|
isEmpty || (data && data[data.length - 1]?.results.length < 20);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Header>Happy Holidays!</Header>
|
||||||
|
<ListView
|
||||||
|
items={titles}
|
||||||
|
isEmpty={isEmpty}
|
||||||
|
isLoading={
|
||||||
|
isLoadingInitialData || (isLoadingMore && (titles?.length ?? 0) > 0)
|
||||||
|
}
|
||||||
|
isReachingEnd={isReachingEnd}
|
||||||
|
onScrollBottom={fetchMore}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Holiday;
|
@@ -63,6 +63,12 @@ const Discover: React.FC = () => {
|
|||||||
} = useSWR<MovieDiscoverResult>(
|
} = useSWR<MovieDiscoverResult>(
|
||||||
`/api/v1/discover/movies/upcoming?language=${locale}`
|
`/api/v1/discover/movies/upcoming?language=${locale}`
|
||||||
);
|
);
|
||||||
|
const {
|
||||||
|
data: holUpcomingData,
|
||||||
|
error: holUpcomingError,
|
||||||
|
} = useSWR<MovieDiscoverResult>(
|
||||||
|
`/api/v1/discover/keyword/207317/movies?language=${locale}`
|
||||||
|
);
|
||||||
|
|
||||||
const { data: trendingData, error: trendingError } = useSWR<MixedResult>(
|
const { data: trendingData, error: trendingError } = useSWR<MixedResult>(
|
||||||
`/api/v1/discover/trending?language=${locale}`
|
`/api/v1/discover/trending?language=${locale}`
|
||||||
@@ -140,6 +146,57 @@ const Discover: React.FC = () => {
|
|||||||
placeholder={<RequestCard.Placeholder />}
|
placeholder={<RequestCard.Placeholder />}
|
||||||
emptyMessage={intl.formatMessage(messages.nopending)}
|
emptyMessage={intl.formatMessage(messages.nopending)}
|
||||||
/>
|
/>
|
||||||
|
{/* Special Temporary Slider */}
|
||||||
|
<div className="md:flex md:items-center md:justify-between mb-4 mt-6">
|
||||||
|
<div className="flex-1 min-w-0">
|
||||||
|
<Link href="/discover/holiday">
|
||||||
|
<a className="inline-flex text-xl leading-7 text-gray-300 hover:text-white sm:text-2xl sm:leading-9 sm:truncate items-center">
|
||||||
|
<span>
|
||||||
|
<span role="img" aria-label="Christmas Tree" className="mr-2">
|
||||||
|
🎄
|
||||||
|
</span>
|
||||||
|
Happy Holidays!
|
||||||
|
<span role="img" aria-label="Christmas Tree" className="ml-2">
|
||||||
|
🎄
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
<svg
|
||||||
|
className="w-6 h-6 ml-2"
|
||||||
|
fill="none"
|
||||||
|
stroke="currentColor"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
strokeLinecap="round"
|
||||||
|
strokeLinejoin="round"
|
||||||
|
strokeWidth={2}
|
||||||
|
d="M13 9l3 3m0 0l-3 3m3-3H8m13 0a9 9 0 11-18 0 9 9 0 0118 0z"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<Slider
|
||||||
|
sliderKey="holiday"
|
||||||
|
isLoading={!holUpcomingData && !holUpcomingError}
|
||||||
|
isEmpty={false}
|
||||||
|
items={holUpcomingData?.results.map((title) => (
|
||||||
|
<TitleCard
|
||||||
|
key={`holiday-movie-slider-${title.id}`}
|
||||||
|
id={title.id}
|
||||||
|
image={title.posterPath}
|
||||||
|
status={title.mediaInfo?.status}
|
||||||
|
summary={title.overview}
|
||||||
|
title={title.title}
|
||||||
|
userScore={title.voteAverage}
|
||||||
|
year={title.releaseDate}
|
||||||
|
mediaType={title.mediaType}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
/>
|
||||||
|
{/* End Special Temporary Slider */}
|
||||||
<div className="md:flex md:items-center md:justify-between mb-4 mt-6">
|
<div className="md:flex md:items-center md:justify-between mb-4 mt-6">
|
||||||
<div className="flex-1 min-w-0">
|
<div className="flex-1 min-w-0">
|
||||||
<Link href="/discover/movies/upcoming">
|
<Link href="/discover/movies/upcoming">
|
||||||
|
9
src/pages/discover/holiday.tsx
Normal file
9
src/pages/discover/holiday.tsx
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { NextPage } from 'next';
|
||||||
|
import Holiday from '../../components/Discover/Holiday';
|
||||||
|
|
||||||
|
const HolidayPage: NextPage = () => {
|
||||||
|
return <Holiday />;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default HolidayPage;
|
Reference in New Issue
Block a user