mirror of
https://github.com/movie-web/movie-web.git
synced 2024-12-28 08:36:06 +00:00
chore: clean up code and remove intervals
This commit is contained in:
parent
9044b4407f
commit
e46ca23516
|
@ -1,17 +1,15 @@
|
||||||
import classNames from "classnames";
|
import classNames from "classnames";
|
||||||
import { useCallback, useEffect } from "react";
|
import { useCallback, useEffect, useRef } from "react";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
|
|
||||||
import { isExtensionActiveCached } from "@/backend/extension/messaging";
|
|
||||||
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";
|
||||||
import { conf } from "@/setup/config";
|
|
||||||
import { useAuthStore } from "@/stores/auth";
|
|
||||||
import { PlayerMeta } from "@/stores/player/slices/source";
|
import { PlayerMeta } from "@/stores/player/slices/source";
|
||||||
import { usePlayerStore } from "@/stores/player/store";
|
import { usePlayerStore } from "@/stores/player/store";
|
||||||
import { usePreferencesStore } from "@/stores/preferences";
|
import { usePreferencesStore } from "@/stores/preferences";
|
||||||
import { useProgressStore } from "@/stores/progress";
|
import { useProgressStore } from "@/stores/progress";
|
||||||
|
import { isAutoplayAllowed } from "@/utils/autoplay";
|
||||||
|
|
||||||
function shouldShowNextEpisodeButton(
|
function shouldShowNextEpisodeButton(
|
||||||
time: number,
|
time: number,
|
||||||
|
@ -64,6 +62,7 @@ export function NextEpisodeButton(props: {
|
||||||
const enableAutoplay = usePreferencesStore((s) => s.enableAutoplay);
|
const enableAutoplay = usePreferencesStore((s) => s.enableAutoplay);
|
||||||
|
|
||||||
let show = false;
|
let show = false;
|
||||||
|
const hasAutoplayed = useRef(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;
|
||||||
if (isHidden || status !== "playing" || duration === 0) show = false;
|
if (isHidden || status !== "playing" || duration === 0) show = false;
|
||||||
|
@ -102,21 +101,14 @@ export function NextEpisodeButton(props: {
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!enableAutoplay || metaType !== "show") return;
|
if (!enableAutoplay || metaType !== "show") return;
|
||||||
|
|
||||||
const interval = setInterval(() => {
|
|
||||||
const onePercent = duration / 100;
|
const onePercent = duration / 100;
|
||||||
const isEnding = time >= duration - onePercent && duration !== 0;
|
const isEnding = time >= duration - onePercent && duration !== 0;
|
||||||
|
|
||||||
const allowAutoplay = Boolean(
|
if (duration === 0) hasAutoplayed.current = false;
|
||||||
conf().ALLOW_AUTOPLAY ||
|
if (isEnding && isAutoplayAllowed() && !hasAutoplayed.current) {
|
||||||
isExtensionActiveCached() ||
|
hasAutoplayed.current = true;
|
||||||
useAuthStore.getState().proxySet,
|
loadNextEpisode();
|
||||||
);
|
}
|
||||||
|
|
||||||
if (isEnding && allowAutoplay) loadNextEpisode();
|
|
||||||
}, 250);
|
|
||||||
|
|
||||||
return () => clearInterval(interval);
|
|
||||||
}, [duration, enableAutoplay, loadNextEpisode, metaType, time]);
|
}, [duration, enableAutoplay, loadNextEpisode, metaType, time]);
|
||||||
|
|
||||||
if (!meta?.episode || !nextEp) return null;
|
if (!meta?.episode || !nextEp) return null;
|
||||||
|
|
|
@ -1,28 +1,14 @@
|
||||||
|
import classNames from "classnames";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import { useAsync } from "react-use";
|
|
||||||
|
|
||||||
import { isExtensionActive } from "@/backend/extension/messaging";
|
|
||||||
import { Toggle } from "@/components/buttons/Toggle";
|
import { Toggle } from "@/components/buttons/Toggle";
|
||||||
import { FlagIcon } from "@/components/FlagIcon";
|
import { FlagIcon } from "@/components/FlagIcon";
|
||||||
import { Dropdown } from "@/components/form/Dropdown";
|
import { Dropdown } from "@/components/form/Dropdown";
|
||||||
import { Heading1 } from "@/components/utils/Text";
|
import { Heading1 } from "@/components/utils/Text";
|
||||||
import { conf } from "@/setup/config";
|
|
||||||
import { appLanguageOptions } from "@/setup/i18n";
|
import { appLanguageOptions } from "@/setup/i18n";
|
||||||
import { useAuthStore } from "@/stores/auth";
|
import { isAutoplayAllowed } from "@/utils/autoplay";
|
||||||
import { getLocaleInfo, sortLangCodes } from "@/utils/language";
|
import { getLocaleInfo, sortLangCodes } from "@/utils/language";
|
||||||
|
|
||||||
function useIsExtensionActive() {
|
|
||||||
const { loading, value } = useAsync(async () => {
|
|
||||||
const extensionStatus = (await isExtensionActive()) ? "success" : "unset";
|
|
||||||
return extensionStatus === "success";
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
return {
|
|
||||||
loading,
|
|
||||||
active: value,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
export function PreferencesPart(props: {
|
export function PreferencesPart(props: {
|
||||||
language: string;
|
language: string;
|
||||||
setLanguage: (l: string) => void;
|
setLanguage: (l: string) => void;
|
||||||
|
@ -33,14 +19,8 @@ export function PreferencesPart(props: {
|
||||||
}) {
|
}) {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const sorted = sortLangCodes(appLanguageOptions.map((item) => item.code));
|
const sorted = sortLangCodes(appLanguageOptions.map((item) => item.code));
|
||||||
const { loading, active } = useIsExtensionActive();
|
|
||||||
|
|
||||||
const extensionActive = active && !loading;
|
const allowAutoplay = isAutoplayAllowed();
|
||||||
const allowAutoplay = Boolean(
|
|
||||||
conf().ALLOW_AUTOPLAY ||
|
|
||||||
extensionActive ||
|
|
||||||
useAuthStore.getState().proxySet,
|
|
||||||
);
|
|
||||||
|
|
||||||
const options = appLanguageOptions
|
const options = appLanguageOptions
|
||||||
.sort((a, b) => sorted.indexOf(a.code) - sorted.indexOf(b.code))
|
.sort((a, b) => sorted.indexOf(a.code) - sorted.indexOf(b.code))
|
||||||
|
@ -101,12 +81,12 @@ export function PreferencesPart(props: {
|
||||||
? props.setEnableAutoplay(!props.enableAutoplay)
|
? props.setEnableAutoplay(!props.enableAutoplay)
|
||||||
: null
|
: null
|
||||||
}
|
}
|
||||||
className="bg-dropdown-background hover:bg-dropdown-hoverBackground select-none my-4 cursor-pointer space-x-3 flex items-center max-w-[25rem] py-3 px-4 rounded-lg"
|
className={classNames(
|
||||||
style={{
|
"bg-dropdown-background hover:bg-dropdown-hoverBackground select-none my-4 cursor-pointer space-x-3 flex items-center max-w-[25rem] py-3 px-4 rounded-lg",
|
||||||
pointerEvents: allowAutoplay ? "auto" : "none",
|
allowAutoplay ? "cursor-pointer" : "cursor-not-allowed",
|
||||||
opacity: allowAutoplay ? 1 : 0.5,
|
allowAutoplay ? "opacity-100" : "opacity-50",
|
||||||
cursor: allowAutoplay ? "pointer" : "not-allowed",
|
allowAutoplay ? "pointer-events-auto" : "pointer-events-none",
|
||||||
}}
|
)}
|
||||||
>
|
>
|
||||||
<Toggle enabled={props.enableAutoplay && allowAutoplay} />
|
<Toggle enabled={props.enableAutoplay && allowAutoplay} />
|
||||||
<p className="flex-1 text-white font-bold">
|
<p className="flex-1 text-white font-bold">
|
||||||
|
|
11
src/utils/autoplay.ts
Normal file
11
src/utils/autoplay.ts
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
import { isExtensionActiveCached } from "@/backend/extension/messaging";
|
||||||
|
import { conf } from "@/setup/config";
|
||||||
|
import { useAuthStore } from "@/stores/auth";
|
||||||
|
|
||||||
|
export function isAutoplayAllowed() {
|
||||||
|
return Boolean(
|
||||||
|
conf().ALLOW_AUTOPLAY ||
|
||||||
|
isExtensionActiveCached() ||
|
||||||
|
useAuthStore.getState().proxySet,
|
||||||
|
);
|
||||||
|
}
|
Loading…
Reference in a new issue