diff --git a/frontend/app/components/Release/ReleaseInfo.jsx b/frontend/app/components/Release/ReleaseInfo.jsx new file mode 100644 index 0000000..e69de29 diff --git a/frontend/app/components/Release/ReleasePlayer.jsx b/frontend/app/components/Release/ReleasePlayer.jsx new file mode 100644 index 0000000..d768999 --- /dev/null +++ b/frontend/app/components/Release/ReleasePlayer.jsx @@ -0,0 +1,163 @@ +"use client"; + +import { useEffect, useState } from "react"; +import { getData } from "@/app/api/api-utils"; +import { endpoints } from "@/app/api/config"; +import { useUserStore } from "@/app/store/user-store"; +import { useSettingsStore } from "@/app/store/settings-store"; + +export const ReleasePlayer = (props) => { + const userStore = useUserStore(); + const settingsStore = useSettingsStore(); + + const [voiceoverInfo, setVoiceoverInfo] = useState(); + const [selectedVoiceover, setSelectedVoiceover] = useState(); + const [sourcesInfo, setSourcesInfo] = useState(); + const [selectedSources, setSelectedSources] = useState(); + const [episodeInfo, setEpisodeInfo] = useState(); + const [selectedEpisode, setSelectedEpisode] = useState(); + const [episodeURL, setEpisodeURL] = useState(); + + useEffect(() => { + async function _fetchInfo() { + const voiceover = await getData( + `${endpoints.release}/${props.id}/voiceover`, + ); + setVoiceoverInfo(voiceover); + setSelectedVoiceover(voiceover.types[0].id); + } + if (props.id) { + _fetchInfo(); + } + // eslint-disable-next-line react-hooks/exhaustive-deps + }, []); + + useEffect(() => { + async function _fetchInfo() { + const sources = await getData( + `${endpoints.release}/${props.id}/${selectedVoiceover}`, + ); + setSourcesInfo(sources); + setSelectedSources(sources.sources[0].id); + } + if (selectedVoiceover) { + _fetchInfo(); + } + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [selectedVoiceover]); + + useEffect(() => { + async function _fetchInfo() { + let url = `${endpoints.release}/${props.id}/${selectedVoiceover}/${selectedSources}`; + if (userStore.token) { + url = `${endpoints.release}/${props.id}/${selectedVoiceover}/${selectedSources}?token=${userStore.token}`; + } + + const episodes = await getData(url); + + setEpisodeInfo(episodes); + setSelectedEpisode(episodes.episodes[0].position); + setEpisodeURL(episodes.episodes[0].url); + } + if (selectedSources) { + _fetchInfo(); + } + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [selectedSources, userStore.token]); + + useEffect(() => { + async function _markAsWatched() { + const url = `${endpoints.release}/${props.id}/${selectedSources}/${selectedEpisode}`; + await getData(`${url}/saveToHistory?token=${userStore.token}`); + } + if (userStore.token && settingsStore.saveToHistory) { + _markAsWatched(); + } + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [selectedEpisode]); + + return ( +
+