Files
Vadella, Anna d4777b5e72 Updated page.tsx
Updated home page, still using preprocessed_data.xlsx because using updated_datav2.xlsx basically crashes the frontend rn lol :p
2026-04-01 13:02:29 -04:00

146 lines
7.3 KiB
TypeScript

"use client"; // needed for client-specific features like interactivity, state, event handlers
import {useState, useEffect} from "react";
import {useRouter} from "next/navigation";
import { useRef } from "react";
type movie = { // define TypeScript type for movie
title: string;
slug?: string;
poster?: string | null;
};
export default function Home() {
const [search, setSearch] = useState("");
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) => { // 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
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
}
catch (err)
{
setError("Error fetching movies");
console.error(err);
}
};
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-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
}}
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>
);
}