mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
Fixed next episode button not showing next season
This commit is contained in:
parent
892292088d
commit
90c4365422
2 changed files with 77 additions and 5 deletions
|
@ -362,7 +362,8 @@
|
||||||
},
|
},
|
||||||
"nextEpisode": {
|
"nextEpisode": {
|
||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
"next": "Next episode"
|
"next": "Next episode",
|
||||||
|
"nextSeason": "Next season"
|
||||||
},
|
},
|
||||||
"playbackError": {
|
"playbackError": {
|
||||||
"badge": "Playback error",
|
"badge": "Playback error",
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
import classNames from "classnames";
|
import classNames from "classnames";
|
||||||
import { useCallback } from "react";
|
import { useCallback } from "react";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
|
import { useAsync } from "react-use";
|
||||||
|
|
||||||
|
import { getMetaFromId } from "@/backend/metadata/getmeta";
|
||||||
|
import { MWMediaType, MWSeasonMeta } from "@/backend/metadata/types/mw";
|
||||||
import { Icon, Icons } from "@/components/Icon";
|
import { Icon, Icons } from "@/components/Icon";
|
||||||
import { usePlayerMeta } from "@/components/player/hooks/usePlayerMeta";
|
import { usePlayerMeta } from "@/components/player/hooks/usePlayerMeta";
|
||||||
import { Transition } from "@/components/utils/Transition";
|
import { Transition } from "@/components/utils/Transition";
|
||||||
|
@ -9,6 +12,8 @@ import { PlayerMeta } from "@/stores/player/slices/source";
|
||||||
import { usePlayerStore } from "@/stores/player/store";
|
import { usePlayerStore } from "@/stores/player/store";
|
||||||
import { useProgressStore } from "@/stores/progress";
|
import { useProgressStore } from "@/stores/progress";
|
||||||
|
|
||||||
|
import { hasAired } from "../utils/aired";
|
||||||
|
|
||||||
function shouldShowNextEpisodeButton(
|
function shouldShowNextEpisodeButton(
|
||||||
time: number,
|
time: number,
|
||||||
duration: number,
|
duration: number,
|
||||||
|
@ -39,6 +44,45 @@ function Button(props: {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function useSeasons(mediaId: string, isLastEpisode: boolean = false) {
|
||||||
|
const state = useAsync(async () => {
|
||||||
|
if (isLastEpisode) {
|
||||||
|
const data = await getMetaFromId(MWMediaType.SERIES, mediaId ?? "");
|
||||||
|
if (data?.meta.type !== MWMediaType.SERIES) return null;
|
||||||
|
return data.meta.seasons;
|
||||||
|
}
|
||||||
|
}, [mediaId, isLastEpisode]);
|
||||||
|
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
|
||||||
|
function useNextSeasonEpisode(
|
||||||
|
nextSeason: MWSeasonMeta | undefined,
|
||||||
|
mediaId: string,
|
||||||
|
) {
|
||||||
|
const state = useAsync(async () => {
|
||||||
|
if (nextSeason) {
|
||||||
|
const data = await getMetaFromId(
|
||||||
|
MWMediaType.SERIES,
|
||||||
|
mediaId ?? "",
|
||||||
|
nextSeason?.id,
|
||||||
|
);
|
||||||
|
if (data?.meta.type !== MWMediaType.SERIES) return null;
|
||||||
|
|
||||||
|
const nextSeasonEpisodes = data?.meta?.seasonData?.episodes
|
||||||
|
.filter((episode) => hasAired(episode.air_date))
|
||||||
|
.map((episode) => ({
|
||||||
|
number: episode.number,
|
||||||
|
title: episode.title,
|
||||||
|
tmdbId: episode.id,
|
||||||
|
}));
|
||||||
|
|
||||||
|
if (nextSeasonEpisodes.length > 0) return nextSeasonEpisodes[0];
|
||||||
|
}
|
||||||
|
}, [mediaId, nextSeason?.id]);
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
|
||||||
export function NextEpisodeButton(props: {
|
export function NextEpisodeButton(props: {
|
||||||
controlsShowing: boolean;
|
controlsShowing: boolean;
|
||||||
onChange?: (meta: PlayerMeta) => void;
|
onChange?: (meta: PlayerMeta) => void;
|
||||||
|
@ -58,6 +102,20 @@ export function NextEpisodeButton(props: {
|
||||||
);
|
);
|
||||||
const updateItem = useProgressStore((s) => s.updateItem);
|
const updateItem = useProgressStore((s) => s.updateItem);
|
||||||
|
|
||||||
|
const isLastEpisode =
|
||||||
|
meta?.episode?.number === meta?.episodes?.at(-1)?.number;
|
||||||
|
|
||||||
|
const seasons = useSeasons(meta?.tmdbId ?? "", isLastEpisode);
|
||||||
|
|
||||||
|
const nextSeason = seasons.value?.find(
|
||||||
|
(season) => season.number === (meta?.season?.number ?? 0) + 1,
|
||||||
|
);
|
||||||
|
|
||||||
|
const nextSeasonEpisode = useNextSeasonEpisode(
|
||||||
|
nextSeason,
|
||||||
|
meta?.tmdbId ?? "",
|
||||||
|
);
|
||||||
|
|
||||||
let show = false;
|
let show = false;
|
||||||
if (showingState === "always") show = true;
|
if (showingState === "always") show = true;
|
||||||
else if (showingState === "hover" && props.controlsShowing) show = true;
|
else if (showingState === "hover" && props.controlsShowing) show = true;
|
||||||
|
@ -70,7 +128,9 @@ export function NextEpisodeButton(props: {
|
||||||
? bottom
|
? bottom
|
||||||
: "bottom-[calc(3rem+env(safe-area-inset-bottom))]";
|
: "bottom-[calc(3rem+env(safe-area-inset-bottom))]";
|
||||||
|
|
||||||
const nextEp = meta?.episodes?.find(
|
const nextEp = isLastEpisode
|
||||||
|
? nextSeasonEpisode.value
|
||||||
|
: meta?.episodes?.find(
|
||||||
(v) => v.number === (meta?.episode?.number ?? 0) + 1,
|
(v) => v.number === (meta?.episode?.number ?? 0) + 1,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -78,6 +138,13 @@ export function NextEpisodeButton(props: {
|
||||||
if (!meta || !nextEp) return;
|
if (!meta || !nextEp) return;
|
||||||
const metaCopy = { ...meta };
|
const metaCopy = { ...meta };
|
||||||
metaCopy.episode = nextEp;
|
metaCopy.episode = nextEp;
|
||||||
|
metaCopy.season =
|
||||||
|
isLastEpisode && nextSeason
|
||||||
|
? {
|
||||||
|
...nextSeason,
|
||||||
|
tmdbId: nextSeason.id,
|
||||||
|
}
|
||||||
|
: metaCopy.season;
|
||||||
setShouldStartFromBeginning(true);
|
setShouldStartFromBeginning(true);
|
||||||
setDirectMeta(metaCopy);
|
setDirectMeta(metaCopy);
|
||||||
props.onChange?.(metaCopy);
|
props.onChange?.(metaCopy);
|
||||||
|
@ -93,6 +160,8 @@ export function NextEpisodeButton(props: {
|
||||||
props,
|
props,
|
||||||
setShouldStartFromBeginning,
|
setShouldStartFromBeginning,
|
||||||
updateItem,
|
updateItem,
|
||||||
|
isLastEpisode,
|
||||||
|
nextSeason,
|
||||||
]);
|
]);
|
||||||
|
|
||||||
if (!meta?.episode || !nextEp) return null;
|
if (!meta?.episode || !nextEp) return null;
|
||||||
|
@ -121,7 +190,9 @@ export function NextEpisodeButton(props: {
|
||||||
className="bg-buttons-primary hover:bg-buttons-primaryHover text-buttons-primaryText flex justify-center items-center"
|
className="bg-buttons-primary hover:bg-buttons-primaryHover text-buttons-primaryText flex justify-center items-center"
|
||||||
>
|
>
|
||||||
<Icon className="text-xl mr-1" icon={Icons.SKIP_EPISODE} />
|
<Icon className="text-xl mr-1" icon={Icons.SKIP_EPISODE} />
|
||||||
{t("player.nextEpisode.next")}
|
{isLastEpisode && nextEp
|
||||||
|
? t("player.nextEpisode.nextSeason")
|
||||||
|
: t("player.nextEpisode.next")}
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</Transition>
|
</Transition>
|
||||||
|
|
Loading…
Reference in a new issue