mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
72 lines
1.8 KiB
TypeScript
72 lines
1.8 KiB
TypeScript
import { useCallback, useEffect, useState } from "react";
|
|
import { useQuery } from "@tanstack/react-query";
|
|
import { useAtom } from "jotai";
|
|
import { apiAtom } from "@/providers/JellyfinProvider";
|
|
import { getAuthHeaders } from "@/utils/jellyfin/jellyfin";
|
|
import { writeToLog } from "@/utils/log";
|
|
|
|
interface IntroTimestamps {
|
|
EpisodeId: string;
|
|
HideSkipPromptAt: number;
|
|
IntroEnd: number;
|
|
IntroStart: number;
|
|
ShowSkipPromptAt: number;
|
|
Valid: boolean;
|
|
}
|
|
|
|
export const useIntroSkipper = (
|
|
itemId: string | undefined,
|
|
currentTime: number,
|
|
videoRef: React.RefObject<any>
|
|
) => {
|
|
const [api] = useAtom(apiAtom);
|
|
const [showSkipButton, setShowSkipButton] = useState(false);
|
|
|
|
const { data: introTimestamps } = useQuery<IntroTimestamps | null>({
|
|
queryKey: ["introTimestamps", itemId],
|
|
queryFn: async () => {
|
|
if (!itemId) {
|
|
console.log("No item id");
|
|
return null;
|
|
}
|
|
|
|
const res = await api?.axiosInstance.get(
|
|
`${api.basePath}/Episode/${itemId}/IntroTimestamps`,
|
|
{
|
|
headers: getAuthHeaders(api),
|
|
}
|
|
);
|
|
|
|
if (res?.status !== 200) {
|
|
return null;
|
|
}
|
|
|
|
return res?.data;
|
|
},
|
|
enabled: !!itemId,
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (introTimestamps) {
|
|
setShowSkipButton(
|
|
currentTime > introTimestamps.ShowSkipPromptAt &&
|
|
currentTime < introTimestamps.HideSkipPromptAt
|
|
);
|
|
}
|
|
}, [introTimestamps, currentTime]);
|
|
|
|
const skipIntro = useCallback(() => {
|
|
if (!introTimestamps || !videoRef.current) return;
|
|
try {
|
|
videoRef.current.seek(introTimestamps.IntroEnd);
|
|
setTimeout(() => {
|
|
videoRef.current?.resume();
|
|
}, 200);
|
|
} catch (error) {
|
|
writeToLog("ERROR", "Error skipping intro", error);
|
|
}
|
|
}, [introTimestamps, videoRef]);
|
|
|
|
return { showSkipButton, skipIntro };
|
|
};
|