mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
feat: add episode selector
This commit is contained in:
parent
1b765fe857
commit
cdce98b7e6
3 changed files with 148 additions and 30 deletions
|
@ -1,3 +1,122 @@
|
||||||
export const EpisodeSelector = () => {
|
"use client";
|
||||||
return <div>EPISODES</div>
|
|
||||||
|
import { ENDPOINTS } from "#/api/config";
|
||||||
|
import { useState, useEffect } from "react";
|
||||||
|
import { Swiper, SwiperSlide } from "swiper/react";
|
||||||
|
import "swiper/css";
|
||||||
|
import "swiper/css/navigation";
|
||||||
|
import "swiper/css/mousewheel";
|
||||||
|
import "swiper/css/scrollbar";
|
||||||
|
import { Navigation, Mousewheel, Scrollbar } from "swiper/modules";
|
||||||
|
import { Button } from "flowbite-react";
|
||||||
|
|
||||||
|
import {
|
||||||
|
getAnonEpisodesWatched,
|
||||||
|
saveAnonEpisodeWatched,
|
||||||
|
} from "./ReleasePlayer";
|
||||||
|
|
||||||
|
interface Episode {
|
||||||
|
id: number;
|
||||||
|
position: number;
|
||||||
|
name: string;
|
||||||
|
is_watched: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface Source {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
episodes_count: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const EpisodeSelector = (props: {
|
||||||
|
availableEpisodes: Episode[];
|
||||||
|
episode: Episode;
|
||||||
|
setEpisode: any;
|
||||||
|
source: Source;
|
||||||
|
release: any;
|
||||||
|
voiceover: any;
|
||||||
|
token: string | null;
|
||||||
|
}) => {
|
||||||
|
let anonEpisodesWatched = getAnonEpisodesWatched(
|
||||||
|
props.release,
|
||||||
|
props.source.id,
|
||||||
|
props.voiceover.id
|
||||||
|
);
|
||||||
|
anonEpisodesWatched =
|
||||||
|
anonEpisodesWatched[props.release][props.source.id][props.voiceover.id];
|
||||||
|
|
||||||
|
async function saveEpisodeToHistory(episode: Episode) {
|
||||||
|
if (episode && props.token) {
|
||||||
|
fetch(
|
||||||
|
`${ENDPOINTS.statistic.addHistory}/${props.release}/${props.source.id}/${episode.position}?token=${props.token}`
|
||||||
|
);
|
||||||
|
fetch(
|
||||||
|
`${ENDPOINTS.statistic.markWatched}/${props.release}/${props.source.id}/${episode.position}?token=${props.token}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Swiper
|
||||||
|
modules={[Navigation, Mousewheel, Scrollbar]}
|
||||||
|
spaceBetween={8}
|
||||||
|
slidesPerView={"auto"}
|
||||||
|
direction={"horizontal"}
|
||||||
|
mousewheel={{
|
||||||
|
enabled: true,
|
||||||
|
sensitivity: 4,
|
||||||
|
}}
|
||||||
|
scrollbar={true}
|
||||||
|
allowTouchMove={true}
|
||||||
|
style={
|
||||||
|
{
|
||||||
|
"--swiper-scrollbar-bottom": "0",
|
||||||
|
} as React.CSSProperties
|
||||||
|
}
|
||||||
|
>
|
||||||
|
{props.availableEpisodes.map((episode: Episode) => (
|
||||||
|
<SwiperSlide
|
||||||
|
key={`episode_${episode.position}`}
|
||||||
|
style={{ maxWidth: "fit-content" }}
|
||||||
|
>
|
||||||
|
<Button
|
||||||
|
color={
|
||||||
|
props.episode.position === episode.position ? "blue" : "light"
|
||||||
|
}
|
||||||
|
theme={{ base: "w-full disabled:opacity-100" }}
|
||||||
|
onClick={() => {
|
||||||
|
props.availableEpisodes[episode.position - 1].is_watched = true;
|
||||||
|
saveAnonEpisodeWatched(
|
||||||
|
props.release,
|
||||||
|
props.source.id,
|
||||||
|
props.voiceover.id,
|
||||||
|
episode.position
|
||||||
|
);
|
||||||
|
saveEpisodeToHistory(episode);
|
||||||
|
props.setEpisode({
|
||||||
|
selected: { ...episode, is_watched: true },
|
||||||
|
available: props.availableEpisodes,
|
||||||
|
});
|
||||||
|
}}
|
||||||
|
disabled={props.episode.position === episode.position}
|
||||||
|
>
|
||||||
|
<div className="flex items-center">
|
||||||
|
{episode.name}
|
||||||
|
{(
|
||||||
|
episode.is_watched ||
|
||||||
|
Object.keys(anonEpisodesWatched).includes(
|
||||||
|
episode.position.toString()
|
||||||
|
)
|
||||||
|
) ?
|
||||||
|
<span className="w-4 h-4 ml-2 iconify material-symbols--check-circle"></span>
|
||||||
|
: <span className="w-4 h-4 ml-2 iconify material-symbols--check-circle-outline"></span>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
</Button>
|
||||||
|
</SwiperSlide>
|
||||||
|
))}
|
||||||
|
</Swiper>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
|
@ -32,7 +32,7 @@ async function _fetch(url: string) {
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
const getAnonEpisodesWatched = (
|
export const getAnonEpisodesWatched = (
|
||||||
Release: number,
|
Release: number,
|
||||||
Source: number,
|
Source: number,
|
||||||
Voiceover: number
|
Voiceover: number
|
||||||
|
@ -80,7 +80,7 @@ const getAnonCurrentEpisodeWatched = (
|
||||||
return anonEpisodesWatched[Release][Source][Voiceover][Episode];
|
return anonEpisodesWatched[Release][Source][Voiceover][Episode];
|
||||||
};
|
};
|
||||||
|
|
||||||
const saveAnonEpisodeWatched = (
|
export const saveAnonEpisodeWatched = (
|
||||||
Release: number,
|
Release: number,
|
||||||
Source: number,
|
Source: number,
|
||||||
Voiceover: number,
|
Voiceover: number,
|
||||||
|
|
|
@ -57,9 +57,11 @@ export const ReleasePlayerCustom = (props: {
|
||||||
voiceover_id: number,
|
voiceover_id: number,
|
||||||
source_id: number
|
source_id: number
|
||||||
) => {
|
) => {
|
||||||
const response = await fetch(
|
let url = `${ENDPOINTS.release.episode}/${release_id}/${voiceover_id}/${source_id}`
|
||||||
`${ENDPOINTS.release.episode}/${release_id}/${voiceover_id}/${source_id}`
|
if (props.token) {
|
||||||
);
|
url += `?token=${props.token}`;
|
||||||
|
}
|
||||||
|
const response = await fetch(url);
|
||||||
const data = await response.json();
|
const data = await response.json();
|
||||||
return data;
|
return data;
|
||||||
};
|
};
|
||||||
|
@ -196,7 +198,7 @@ export const ReleasePlayerCustom = (props: {
|
||||||
episode.selected.url
|
episode.selected.url
|
||||||
);
|
);
|
||||||
SetPlayerProps({
|
SetPlayerProps({
|
||||||
src: `${manifest}`,
|
src: manifest,
|
||||||
poster: poster,
|
poster: poster,
|
||||||
useCustom: true,
|
useCustom: true,
|
||||||
});
|
});
|
||||||
|
@ -214,7 +216,7 @@ export const ReleasePlayerCustom = (props: {
|
||||||
}, [episode.selected]);
|
}, [episode.selected]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Card>
|
<Card className="h-full">
|
||||||
{(
|
{(
|
||||||
!voiceover.selected ||
|
!voiceover.selected ||
|
||||||
!source.selected ||
|
!source.selected ||
|
||||||
|
@ -237,27 +239,24 @@ export const ReleasePlayerCustom = (props: {
|
||||||
setSource={setSource}
|
setSource={setSource}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
{
|
{playerProps.useCustom ?
|
||||||
playerProps.useCustom ?
|
<MediaThemeSutro className="w-full aspect-video">
|
||||||
<MediaThemeSutro>
|
<HlsVideo
|
||||||
<HlsVideo
|
slot="media"
|
||||||
slot="media"
|
src={playerProps.src}
|
||||||
src={playerProps.src}
|
poster={playerProps.poster}
|
||||||
poster={playerProps.poster}
|
/>
|
||||||
preload="auto"
|
</MediaThemeSutro>
|
||||||
muted
|
: <iframe src={playerProps.src} className="w-full aspect-video" />}
|
||||||
crossOrigin=""
|
<EpisodeSelector
|
||||||
/>
|
availableEpisodes={episode.available}
|
||||||
</MediaThemeSutro>
|
episode={episode.selected}
|
||||||
// @ts-ignore
|
setEpisode={setEpisode}
|
||||||
// <Player
|
release={props.id}
|
||||||
// src={playerProps.src}
|
source={source.selected}
|
||||||
// poster={playerProps.poster}
|
voiceover={voiceover.selected}
|
||||||
// className="w-full aspect-video"
|
token={props.token}
|
||||||
// type="hls"
|
/>
|
||||||
// />
|
|
||||||
: <iframe src={playerProps.src} className="w-full aspect-video" />
|
|
||||||
}
|
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
</Card>
|
</Card>
|
||||||
|
|
Loading…
Add table
Reference in a new issue