Updated page.tsx
Updated home page, still using preprocessed_data.xlsx because using updated_datav2.xlsx basically crashes the frontend rn lol :p
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
"use client"; // needed for client-specific features like interactivity, state, event handlers
|
||||
"use client"; // needed for client-specific features like interactivity, state, event handlers
|
||||
|
||||
import {useState} from "react";
|
||||
import {useState, useEffect} from "react";
|
||||
import {useRouter} from "next/navigation";
|
||||
// import movies from "../../movies.json"; // import JSON dataset containing all movies
|
||||
import { useRef } from "react";
|
||||
|
||||
type movie = { // define TypeScript type for a movie
|
||||
type movie = { // define TypeScript type for movie
|
||||
title: string;
|
||||
slug?: string;
|
||||
poster?: string | null;
|
||||
@@ -12,22 +12,36 @@ type movie = { // define TypeScript type fo
|
||||
|
||||
export default function Home() {
|
||||
const [search, setSearch] = useState("");
|
||||
const [error, setError] = useState("");
|
||||
const router = useRouter(); // router object for navigating to other pages
|
||||
const [error, setError] = useState("");
|
||||
const router = useRouter(); // router object for navigating to other pages
|
||||
const likesRef = useRef<HTMLDivElement | null>(null);
|
||||
const recsRef = useRef<HTMLDivElement | null>(null);
|
||||
|
||||
const scroll = (
|
||||
ref: React.RefObject<HTMLDivElement | null>,
|
||||
dir: "left" | "right"
|
||||
) => {
|
||||
if (ref.current) {
|
||||
ref.current.scrollBy({
|
||||
left: dir === "left" ? -700 : 700,
|
||||
behavior: "smooth",
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
const userSearch = async (e: any) => { // must be async for await to work (await = pauses until JSON parsing is complete!)
|
||||
e.preventDefault(); // prevent default form submission (page reloading)
|
||||
const userSearch = async (e: any) => { // handles form submission - must be async for await to work (await = pauses until JSON parsing is complete!)
|
||||
e.preventDefault(); // prevent default form submission (page reloading)
|
||||
|
||||
if (!search.trim()) return;
|
||||
|
||||
try {
|
||||
const res = await fetch(`/api/search?q=${encodeURIComponent(search)}`);
|
||||
const movies: movie[] = await res.json(); // convert HTTP response from JSON into JS array of movie objects
|
||||
const movies: movie[] = await res.json(); // convert HTTP response from JSON into JS array of movie objects
|
||||
|
||||
if (movies.length > 0 && movies[0].slug) // if at least one movie is returned from API and first movie has a slug defined
|
||||
router.push(`/movie/${movies[0].slug}`); // then navigate user to movie detail page using slug of first movie in results
|
||||
if (movies.length > 0 && movies[0].slug) // if at least one movie is returned from API and first movie has a slug defined
|
||||
router.push(`/movie/${movies[0].slug}`); // then navigate user to movie detail page using slug of first movie in results
|
||||
else
|
||||
setError("Movie not found"); // if no movies were returned or first movie has no slug, show error message
|
||||
setError("Movie not found"); // if no movies were returned or first movie has no slug, show error message
|
||||
}
|
||||
catch (err)
|
||||
{
|
||||
@@ -38,22 +52,94 @@ export default function Home() {
|
||||
|
||||
return (
|
||||
<div className="flex flex-col flex-1 items-center justify-center bg-background font-sans">
|
||||
<main className="flex flex-1 w-full max-w-3xl flex-col items-center justify-between py-32 sm:items-start">
|
||||
<main className="flex flex-1 w-full max-w-5xl flex-col items-center justify-between py-12 sm:items-start">
|
||||
<form onSubmit={userSearch} className="flex gap-2">
|
||||
<div className="relative">
|
||||
<input
|
||||
type="text"
|
||||
placeholder="Search for a movie..."
|
||||
value={search}
|
||||
onChange={(e) => {
|
||||
setSearch(e.target.value); // update search text as user types
|
||||
setError(""); // clear error when user starts typing
|
||||
setSearch(e.target.value); // update search text as user types
|
||||
setError(""); // clear error when user starts typing
|
||||
}}
|
||||
className="px-4 py-2 border rounded bg-box w-180">
|
||||
</input>
|
||||
<button type = "submit" className="px-4 py-2 bg-button text-text-light border rounded hover:cursor-pointer hover:bg-[var(--button-dark)]">
|
||||
className="px-4 py-2 border rounded bg-box w-230"
|
||||
/>
|
||||
{search && ( // clear button
|
||||
<button type="button" onClick={() => setSearch("")} className="absolute right-2 -top-2 mr-2 h-full flex items-center justify-center text-gray-500 hover:cursor-pointer">
|
||||
✕
|
||||
</button>
|
||||
)}
|
||||
</div>
|
||||
<button type="submit" className="px-4 py-2 mb-5 bg-button text-text-light border-button rounded hover:cursor-pointer">
|
||||
Search
|
||||
</button>
|
||||
</form>
|
||||
|
||||
<div className="flex flex-col gap-1 w-full rounded-lg px-2 py-1 relative">
|
||||
<h2 className="text-2xl font-bold text-text-light mb-1">Your Likes</h2>
|
||||
<button onClick={() => scroll(likesRef, "left")}
|
||||
className="absolute -left-10 top-[60%] -translate-y-1/2 z-10 bg-black/50 text-white px-2 py-1 rounded hover:cursor-pointer">
|
||||
←
|
||||
</button>
|
||||
<div ref={likesRef} className="flex flex-row gap-5 overflow-x-auto scroll-smooth snap-x snap-mandatory no-scrollbar py-2">
|
||||
<div className="bg-box border rounded-lg p-4 w-45 h-65 flex-shrink-0 snap-start hover:cursor-pointer hover:scale-[1.02] transition-transform duration-200">
|
||||
Movie 1
|
||||
</div>
|
||||
<div className="bg-box border rounded-lg p-4 w-45 h-65 flex-shrink-0 snap-start hover:cursor-pointer hover:scale-[1.02] transition-transform duration-200">
|
||||
Movie 2
|
||||
</div>
|
||||
<div className="bg-box border rounded-lg p-4 w-45 h-65 flex-shrink-0 snap-start hover:cursor-pointer hover:scale-[1.02] transition-transform duration-200">
|
||||
Movie 3
|
||||
</div>
|
||||
<div className="bg-box border rounded-lg p-4 w-45 h-65 flex-shrink-0 snap-start hover:cursor-pointer hover:scale-[1.02] transition-transform duration-200">
|
||||
Movie 4
|
||||
</div>
|
||||
<div className="bg-box border rounded-lg p-4 w-45 h-65 flex-shrink-0 snap-start hover:cursor-pointer hover:scale-[1.02] transition-transform duration-200">
|
||||
Movie 5
|
||||
</div>
|
||||
<div className="bg-box border rounded-lg p-4 w-45 h-65 flex-shrink-0 snap-start hover:cursor-pointer hover:scale-[1.02] transition-transform duration-200">
|
||||
Movie 6
|
||||
</div>
|
||||
</div>
|
||||
<button onClick={() => scroll(likesRef, "right")}
|
||||
className="absolute -right-10 top-[60%] -translate-y-1/2 z-10 bg-black/50 text-white px-2 py-1 rounded hover:cursor-pointer">
|
||||
→
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div className="flex flex-col gap-1 w-full rounded-lg px-2 py-1 relative">
|
||||
<h2 className="text-2xl font-bold text-text-light mb-1">Your Recommendations</h2>
|
||||
<button onClick={() => scroll(recsRef, "left")}
|
||||
className="absolute -left-10 top-[60%] -translate-y-1/2 z-10 bg-black/50 text-white px-2 py-1 rounded hover:cursor-pointer">
|
||||
←
|
||||
</button>
|
||||
<div ref={recsRef} className="flex flex-row gap-5 overflow-x-auto scroll-smooth snap-x snap-mandatory no-scrollbar py-2">
|
||||
<div className="bg-box border rounded-lg p-4 w-45 h-65 flex-shrink-0 snap-start hover:cursor-pointer hover:scale-[1.02] transition-transform duration-200">
|
||||
Movie 1
|
||||
</div>
|
||||
<div className="bg-box border rounded-lg p-4 w-45 h-65 flex-shrink-0 snap-start hover:cursor-pointer hover:scale-[1.02] transition-transform duration-200">
|
||||
Movie 2
|
||||
</div>
|
||||
<div className="bg-box border rounded-lg p-4 w-45 h-65 flex-shrink-0 snap-start hover:cursor-pointer hover:scale-[1.02] transition-transform duration-200">
|
||||
Movie 3
|
||||
</div>
|
||||
<div className="bg-box border rounded-lg p-4 w-45 h-65 flex-shrink-0 snap-start hover:cursor-pointer hover:scale-[1.02] transition-transform duration-200">
|
||||
Movie 4
|
||||
</div>
|
||||
<div className="bg-box border rounded-lg p-4 w-45 h-65 flex-shrink-0 snap-start hover:cursor-pointer hover:scale-[1.02] transition-transform duration-200">
|
||||
Movie 5
|
||||
</div>
|
||||
<div className="bg-box border rounded-lg p-4 w-45 h-65 flex-shrink-0 snap-start hover:cursor-pointer hover:scale-[1.02] transition-transform duration-200">
|
||||
Movie 6
|
||||
</div>
|
||||
</div>
|
||||
<button onClick={() => scroll(recsRef, "right")}
|
||||
className="absolute -right-10 top-[60%] -translate-y-1/2 z-10 bg-black/50 text-white px-2 py-1 rounded hover:cursor-pointer">
|
||||
→
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</main>
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user