feat(trending): add filter options (#2137)

Signed-off-by: Florian Hoech <code@florians-web.de>
This commit is contained in:
bogo22
2026-03-05 11:24:55 +01:00
committed by GitHub
parent 3152f727ef
commit 4ce0db1959
5 changed files with 129 additions and 27 deletions

View File

@@ -2,21 +2,32 @@ import Header from '@app/components/Common/Header';
import ListView from '@app/components/Common/ListView';
import PageTitle from '@app/components/Common/PageTitle';
import useDiscover from '@app/hooks/useDiscover';
import globalMessages from '@app/i18n/globalMessages';
import Error from '@app/pages/_error';
import defineMessages from '@app/utils/defineMessages';
import { CircleStackIcon, FunnelIcon } from '@heroicons/react/24/solid';
import type {
MovieResult,
PersonResult,
TvResult,
} from '@server/models/Search';
import { useState } from 'react';
import { useIntl } from 'react-intl';
const messages = defineMessages('components.Discover', {
trending: 'Trending',
timeWindowDay: 'Daily',
timeWindowWeek: 'Weekly',
});
type MediaType = 'all' | 'movie' | 'tv';
type TimeWindow = 'day' | 'week';
const Trending = () => {
const intl = useIntl();
const [currentMediaType, setCurrentMediaType] = useState<MediaType>('all');
const [currentTimeWindow, setCurrentTimeWindow] = useState<TimeWindow>('day');
const {
isLoadingInitialData,
isEmpty,
@@ -26,7 +37,8 @@ const Trending = () => {
fetchMore,
error,
} = useDiscover<MovieResult | TvResult | PersonResult>(
'/api/v1/discover/trending'
'/api/v1/discover/trending',
{ mediaType: currentMediaType, timeWindow: currentTimeWindow }
);
if (error) {
@@ -36,8 +48,53 @@ const Trending = () => {
return (
<>
<PageTitle title={intl.formatMessage(messages.trending)} />
<div className="mb-5 mt-1">
<div className="mb-5 mt-1 flex flex-col justify-between lg:flex-row lg:items-end">
<Header>{intl.formatMessage(messages.trending)}</Header>
<div className="mt-2 flex flex-grow flex-col sm:flex-row lg:flex-grow-0">
<div className="mb-2 flex flex-grow sm:mb-0 sm:mr-2 lg:flex-grow-0">
<span className="inline-flex cursor-default items-center rounded-l-md border border-r-0 border-gray-500 bg-gray-800 px-3 text-sm text-gray-100">
<CircleStackIcon className="h-6 w-6" />
</span>
<select
id="mediaType"
name="mediaType"
onChange={(e) => setCurrentMediaType(e.target.value as MediaType)}
value={currentMediaType}
className="rounded-r-only"
>
<option value="all">
{intl.formatMessage(globalMessages.all)}
</option>
<option value="movie">
{intl.formatMessage(globalMessages.movies)}
</option>
<option value="tv">
{intl.formatMessage(globalMessages.tvshows)}
</option>
</select>
</div>
<div className="mb-2 flex flex-grow sm:mb-0 sm:mr-2 lg:flex-grow-0">
<span className="inline-flex cursor-default items-center rounded-l-md border border-r-0 border-gray-500 bg-gray-800 px-3 text-sm text-gray-100">
<FunnelIcon className="h-6 w-6" />
</span>
<select
id="timeWindow"
name="timeWindow"
onChange={(e) =>
setCurrentTimeWindow(e.target.value as TimeWindow)
}
value={currentTimeWindow}
className="rounded-r-only"
>
<option value="day">
{intl.formatMessage(messages.timeWindowDay)}
</option>
<option value="week">
{intl.formatMessage(messages.timeWindowWeek)}
</option>
</select>
</div>
</div>
</div>
<ListView
items={titles}