Merge branch 'main' into QueryParams
This commit is contained in:
commit
731a877c4f
36 changed files with 280 additions and 4 deletions
75
frontend/src/components/MovieForm/index.tsx
Normal file
75
frontend/src/components/MovieForm/index.tsx
Normal file
|
@ -0,0 +1,75 @@
|
|||
import q from 'qjuul'
|
||||
import { useNavigateToPage } from '../../util/navigate'
|
||||
|
||||
interface MovieFormInterface {
|
||||
movieTitle: string
|
||||
movieType: string
|
||||
movieYear: string
|
||||
setMovieTitle: (title: string) => void
|
||||
setMovieType: (type: string) => void
|
||||
setMovieYear: (year: string) => void
|
||||
}
|
||||
|
||||
const MovieForm: React.FC<MovieFormInterface> = ({
|
||||
movieTitle,
|
||||
movieType,
|
||||
movieYear,
|
||||
setMovieTitle,
|
||||
setMovieType,
|
||||
setMovieYear,
|
||||
}) => {
|
||||
const navigateToPage = useNavigateToPage()
|
||||
|
||||
return (
|
||||
<q.form
|
||||
className="flex flex-col gap-3 card p-4 rounded-lg w-full lg:px-14"
|
||||
onSubmit={(e) => {
|
||||
e.preventDefault()
|
||||
navigateToPage(movieTitle, movieType, movieYear)
|
||||
}}
|
||||
>
|
||||
<q.label>Choose a movie title:</q.label>
|
||||
<q.input
|
||||
type="text"
|
||||
id="movieTitle"
|
||||
placeholder="Movie title"
|
||||
value={movieTitle.charAt(0).toUpperCase() + movieTitle.slice(1)}
|
||||
onChange={(e) => setMovieTitle(e.target.value)}
|
||||
className="border text-black border-gray-300 rounded-md p-2 focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent"
|
||||
/>
|
||||
<q.label>Choose year movie was made: (OPTIONAL)</q.label>
|
||||
<q.select
|
||||
className="p-2 rounded-md border text-black border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent"
|
||||
onChange={(e) => setMovieYear(e.target.value)}
|
||||
value={movieYear}
|
||||
>
|
||||
{/* Option for year 1923-2023 */}
|
||||
<q.option value="">All years</q.option>
|
||||
{Array.from(Array(100), (e, i) => {
|
||||
const year = 2023 - i
|
||||
return (
|
||||
<q.option key={i} value={year}>
|
||||
{year}
|
||||
</q.option>
|
||||
)
|
||||
})}
|
||||
</q.select>
|
||||
<q.label>Choose type: (OPTIONAL)</q.label>
|
||||
<q.select
|
||||
className="p-2 rounded-md border text-black border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-600 focus:border-transparent"
|
||||
onChange={(e) => setMovieType(e.target.value)}
|
||||
value={movieType}
|
||||
>
|
||||
<q.option value="">All types</q.option>
|
||||
<q.option value="movie">Movies</q.option>
|
||||
<q.option value="series">Series</q.option>
|
||||
<q.option value="episode">Episodes</q.option>
|
||||
</q.select>
|
||||
<q.button className="bg-white p-3 my-2 rounded-md w-3/5 md:w-2/5 mx-auto text-red-900 font-semibold">
|
||||
Find movies
|
||||
</q.button>
|
||||
</q.form>
|
||||
)
|
||||
}
|
||||
|
||||
export default MovieForm
|
Reference in a new issue