sudo-archive/src/views/Search.js

101 lines
3.4 KiB
JavaScript
Raw Normal View History

2021-07-13 22:31:37 +00:00
import React from 'react';
import { InputBox } from '../components/InputBox'
import { Title } from '../components/Title'
import { Card } from '../components/Card'
import { MovieRow } from '../components/MovieRow'
2021-07-13 23:17:34 +00:00
import { Arrow } from '../components/Arrow'
2021-07-13 22:31:37 +00:00
import { Progress } from '../components/Progress'
2021-07-14 15:15:25 +00:00
import { findContent, getStreamUrl } from '../lib/lookMovie'
2021-07-13 22:31:37 +00:00
import { useMovie } from '../hooks/useMovie';
import './Search.css'
export function SearchView() {
const { navigate, setStreamUrl, setStreamData } = useMovie();
const maxSteps = 3;
const [options, setOptions] = React.useState([]);
const [progress, setProgress] = React.useState(0);
const [text, setText] = React.useState("");
const [failed, setFailed] = React.useState(false);
const [showingOptions, setShowingOptions] = React.useState(false);
const fail = (str) => {
setProgress(maxSteps);
setText(str)
setFailed(true)
}
async function getStream(title, slug, type) {
setStreamUrl("");
try {
setProgress(2);
setText(`Getting stream for "${title}"`)
const { url } = await getStreamUrl(slug, type);
setProgress(maxSteps);
setStreamUrl(url);
setStreamData({
title,
type,
})
setText(`Streaming...`)
navigate("movie")
} catch (err) {
fail("Failed to get stream")
}
}
2021-07-14 15:15:25 +00:00
async function searchMovie(query, contentType) {
2021-07-13 22:31:37 +00:00
setFailed(false);
2021-07-14 15:15:25 +00:00
setText(`Searching for ${contentType} "${query}"`);
2021-07-13 22:31:37 +00:00
setProgress(1)
setShowingOptions(false)
try {
2021-07-14 15:15:25 +00:00
const { options } = await findContent(query, contentType)
2021-07-13 22:31:37 +00:00
if (options.length === 0) {
2021-07-14 15:15:25 +00:00
return fail(`Could not find that ${contentType}`)
2021-07-13 22:31:37 +00:00
} else if (options.length > 1) {
setProgress(2);
2021-07-14 15:15:25 +00:00
setText(`Choose your ${contentType}`);
setOptions(options);
setShowingOptions(true);
2021-07-13 22:31:37 +00:00
return;
}
const { title, slug, type } = options[0];
getStream(title, slug, type);
} catch (err) {
2021-07-14 15:15:25 +00:00
fail(`Failed to watch ${contentType}`)
2021-07-13 22:31:37 +00:00
}
}
return (
<div className="cardView">
<Card>
2021-07-14 15:15:25 +00:00
<Title accent="Because watching content legally is boring">
What do you wanna watch?
2021-07-13 22:31:37 +00:00
</Title>
2021-07-14 15:15:25 +00:00
<InputBox placeholder="Hamilton" onSubmit={(str, type) => searchMovie(str, type)} />
2021-07-13 22:31:37 +00:00
<Progress show={progress > 0} failed={failed} progress={progress} steps={maxSteps} text={text} />
</Card>
<Card show={showingOptions} doTransition>
<Title size="medium">
Whoops, there are a few movies like that
</Title>
{options?.map((v, i) => (
<MovieRow key={i} title={v.title} type={v.type} year={v.year} onClick={() => {
2021-07-13 22:31:37 +00:00
setShowingOptions(false)
getStream(v.title, v.slug, v.type)
}}/>
))}
</Card>
2021-07-13 23:17:34 +00:00
<div className="topRightCredits">
<a href="https://github.com/JamesHawkinss/movie-web" target="_blank" rel="noreferrer">Check it out on GitHub <Arrow/></a>
</div>
2021-07-13 22:31:37 +00:00
</div>
)
}