mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-30 01:49:40 +05:00
feat: add retry button if error of player link parsing
This commit is contained in:
parent
874b646bc9
commit
601b5b10e2
1 changed files with 18 additions and 3 deletions
|
@ -73,7 +73,9 @@ export const ReleasePlayerCustom = (props: {
|
||||||
const [playbackRate, setPlaybackRate] = useState(1);
|
const [playbackRate, setPlaybackRate] = useState(1);
|
||||||
const [isErrorDetailsOpen, setIsErrorDetailsOpen] = useState(false);
|
const [isErrorDetailsOpen, setIsErrorDetailsOpen] = useState(false);
|
||||||
|
|
||||||
const preferenceStore = usePreferencesStore()
|
const [retryCount, setRetryCount] = useState(0);
|
||||||
|
|
||||||
|
const preferenceStore = usePreferencesStore();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const __getInfo = async () => {
|
const __getInfo = async () => {
|
||||||
|
@ -134,7 +136,7 @@ export const ReleasePlayerCustom = (props: {
|
||||||
__getInfo();
|
__getInfo();
|
||||||
}
|
}
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [episode.selected]);
|
}, [episode.selected, retryCount]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (document && document.querySelector("media-chrome-dialog")) {
|
if (document && document.querySelector("media-chrome-dialog")) {
|
||||||
|
@ -145,7 +147,11 @@ export const ReleasePlayerCustom = (props: {
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
function saveEpisodeToHistory() {
|
function saveEpisodeToHistory() {
|
||||||
if (preferenceStore.flags.saveWatchHistory && episode.selected && !episode.selected.is_watched) {
|
if (
|
||||||
|
preferenceStore.flags.saveWatchHistory &&
|
||||||
|
episode.selected &&
|
||||||
|
!episode.selected.is_watched
|
||||||
|
) {
|
||||||
const objectToReplace = episode.available.find(
|
const objectToReplace = episode.available.find(
|
||||||
(arrayItem: Episode) => arrayItem.position === episode.selected.position
|
(arrayItem: Episode) => arrayItem.position === episode.selected.position
|
||||||
);
|
);
|
||||||
|
@ -298,6 +304,15 @@ export const ReleasePlayerCustom = (props: {
|
||||||
{playerError.detail}
|
{playerError.detail}
|
||||||
</p>
|
</p>
|
||||||
}
|
}
|
||||||
|
{voiceover.selected && source.selected && episode.selected ?
|
||||||
|
<Button
|
||||||
|
color="light"
|
||||||
|
size="xs"
|
||||||
|
onClick={() => setRetryCount(retryCount + 1)}
|
||||||
|
>
|
||||||
|
Повторить
|
||||||
|
</Button>
|
||||||
|
: ""}
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
: ""}
|
: ""}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue