import React from 'react' import { useRouteMatch, useHistory } from 'react-router-dom' import { Helmet } from 'react-helmet'; import { Title } from '../components/Title' import { Card } from '../components/Card' import { useMovie } from '../hooks/useMovie' import { VideoElement } from '../components/VideoElement' import { EpisodeSelector } from '../components/EpisodeSelector' import { getStreamUrl } from '../lib/index' import './Movie.css' export function MovieView(props) { const baseRouteMatch = useRouteMatch('/:type/:source/:title/:slug'); const showRouteMatch = useRouteMatch('/:type/:source/:title/:slug/season/:season/episode/:episode'); const history = useHistory(); const { streamUrl, streamData, setStreamUrl } = useMovie(); const [seasonList, setSeasonList] = React.useState([]); const [episodeLists, setEpisodeList] = React.useState([]); const [loading, setLoading] = React.useState(false); const [ selectedSeason, setSelectedSeason ] = React.useState("1"); const season = showRouteMatch?.params.season || "1"; const episode = showRouteMatch?.params.episode || "1"; React.useEffect(() => { setEpisodeList(streamData.episodes[selectedSeason]); }, [selectedSeason, streamData.episodes]) React.useEffect(() => { if (streamData.type === "show") { setSeasonList(streamData.seasons); // TODO load from localstorage last watched setEpisodeList(streamData.episodes[streamData.seasons[0]]); } }, [streamData]) React.useEffect(() => { if (streamData.type === "show" && !showRouteMatch) history.replace(`${baseRouteMatch.url}/season/1/episode/1`); }, [streamData, showRouteMatch, history, baseRouteMatch.url]); React.useEffect(() => { if (streamData.type === "show" && !showRouteMatch) history.replace(`${baseRouteMatch.url}/season/1/episode/1`); }, [streamData, showRouteMatch, history, baseRouteMatch.url]); React.useEffect(() => { if (streamData.type === "show" && showRouteMatch) setSelectedSeason(showRouteMatch.params.season.toString()); // eslint-disable-next-line react-hooks/exhaustive-deps }, []); React.useEffect(() => { let cancel = false; // ignore if not a show if (streamData.type !== "show") return () => { cancel = true; }; if (!episode) { setLoading(false); setStreamUrl(''); return; } setLoading(true); getStreamUrl(streamData.slug, streamData.type, streamData.source, season, episode) .then(({url}) => { if (cancel) return; setStreamUrl(url) setLoading(false); }) .catch(e => { if (cancel) return; console.error(e) }) return () => { cancel = true; } }, [episode, streamData, setStreamUrl, season]); function setEpisode({ season, episode }) { history.push(`${baseRouteMatch.url}/season/${season}/episode/${episode}`); } const setProgress = (evt) => { let ls = JSON.parse(localStorage.getItem("video-progress") || "{}") // We're just checking lookmovie for now since there is only one scraper if(!ls[streamData.source]) ls[streamData.source] = {} if(!ls[streamData.source][streamData.type]) ls[streamData.source][streamData.type] = {} if(!ls[streamData.source][streamData.type][streamData.slug]) { ls[streamData.source][streamData.type][streamData.slug] = {} } // Store real data let key = streamData.type === "show" ? `${season}-${episode}` : "full" ls[streamData.source][streamData.type][streamData.slug][key] = { currentlyAt: Math.floor(evt.currentTarget.currentTime), totalDuration: Math.floor(evt.currentTarget.duration), updatedAt: Date.now() } if(streamData.type === "show") { ls[streamData.source][streamData.type][streamData.slug][key].show = { season, episode: episode } } localStorage.setItem("video-progress", JSON.stringify(ls)) } return (
{streamData.title}{streamData.type === 'show' ? ` | S${season}E${episode}` : ''} | movie-web {streamData.title} {streamData.type === "show" ? Season {season}: Episode {episode} : undefined} {streamData.type === "show" ? : ''}
) }