"use client"; import React, { useState, useEffect, useCallback } from "react"; import { getCookie } from "@/helpers/cookie"; import { getCurrentJam, hasJoinedCurrentJam, ActiveJamResponse, } from "@/helpers/jam"; export default function ThemeSlaughter() { const [randomTheme, setRandomTheme] = useState(null); const [votedThemes, setVotedThemes] = useState([]); const [loading, setLoading] = useState(false); const [token, setToken] = useState(null); const [hasJoined, setHasJoined] = useState(false); const [activeJamResponse, setActiveJam] = useState( null ); const [phaseLoading, setPhaseLoading] = useState(true); // Fetch token on the client side useEffect(() => { const fetchedToken = getCookie("token"); setToken(fetchedToken); }, []); // Fetch the current jam phase using helpers/jam useEffect(() => { const fetchCurrentJamPhase = async () => { try { const activeJam = await getCurrentJam(); setActiveJam(activeJam); // Set active jam details } catch (error) { console.error("Error fetching current jam:", error); } finally { setPhaseLoading(false); // Stop loading when phase is fetched } }; fetchCurrentJamPhase(); }, []); // Fetch a random theme const fetchRandomTheme = useCallback(async () => { if (!token) return; // Wait until token is available if (!activeJamResponse) return; if ( activeJamResponse && activeJamResponse.jam && activeJamResponse.phase != "Survival" ) { return (

It's not Theme Survival phase.

); } try { const response = await fetch( process.env.NEXT_PUBLIC_MODE === "PROD" ? "https://d2jam.com/api/v1/themes/random" : "http://localhost:3005/api/v1/themes/random", { headers: { Authorization: `Bearer ${token}` }, credentials: "include", } ); if (response.ok) { const data = await response.json(); setRandomTheme(data); } else { console.error("Failed to fetch random theme."); } } catch (error) { console.error("Error fetching random theme:", error); } }, [activeJamResponse, token]); // Fetch voted themes const fetchVotedThemes = useCallback(async () => { if (!token) return; // Wait until token is available try { const response = await fetch( process.env.NEXT_PUBLIC_MODE === "PROD" ? "https://d2jam.com/api/v1/themes/voteSlaughter" : "http://localhost:3005/api/v1/themes/voteSlaughter", { headers: { Authorization: `Bearer ${token}` }, credentials: "include", } ); if (response.ok) { const data = await response.json(); setVotedThemes(data); } else { console.error("Failed to fetch voted themes."); } } catch (error) { console.error("Error fetching voted themes:", error); } }, [token]); // Handle voting const handleVote = async (voteType) => { if (!randomTheme) return; setLoading(true); try { const response = await fetch( process.env.NEXT_PUBLIC_MODE === "PROD" ? "https://d2jam.com/api/v1/themes/voteSlaughter" : "http://localhost:3005/api/v1/themes/voteSlaughter", { method: "POST", headers: { "Content-Type": "application/json", Authorization: `Bearer ${token}`, }, credentials: "include", body: JSON.stringify({ suggestionId: randomTheme.id, voteType, }), } ); if (response.ok) { // Refresh data after voting fetchRandomTheme(); fetchVotedThemes(); } else { console.error("Failed to submit vote."); } } catch (error) { console.error("Error submitting vote:", error); } finally { setLoading(false); } }; // Handle resetting a vote from the grid const handleResetVote = async (themeId) => { try { setRandomTheme(votedThemes.find((theme) => theme.id === themeId)); setVotedThemes((prev) => prev.map((theme) => theme.id === themeId ? { ...theme, slaughterScore: 0 } : theme ) ); } catch (error) { console.error("Error resetting vote:", error); } }; useEffect(() => { if (token && activeJamResponse?.phase === "Survival") { fetchRandomTheme(); fetchVotedThemes(); } }, [token, activeJamResponse, fetchRandomTheme, fetchVotedThemes]); useEffect(() => { const init = async () => { const joined = await hasJoinedCurrentJam(); setHasJoined(joined); setLoading(false); }; init(); }, []); if (phaseLoading || loading) { return
Loading...
; } if (!hasJoined) { return (

Join the Jam First

You need to join the current jam before you can join Theme Survival.

); } // Render message if not in Theme Slaughter phase if (activeJamResponse?.phase !== "Survival") { return (

Not in Theme Slaughter Phase

The current phase is{" "} {activeJamResponse?.phase || "Unknown"}. Please come back during the Theme Slaughter phase.

); } const loggedIn = getCookie("token"); if (!loggedIn) { return
Sign in to be able to join the Theme Survival
; } return (
{/* Left Side */}
{randomTheme ? ( <>

{randomTheme.suggestion}

) : (

No themes available.

)}
{/* Right Side */}

Your Votes

{votedThemes.map((theme) => (
handleResetVote(theme.id)} className={`p-4 rounded-lg cursor-pointer ${ theme.slaughterScore > 0 ? "bg-green-500 text-white" : theme.slaughterScore < 0 ? "bg-red-500 text-white" : "bg-gray-300 text-black" }`} > {theme.suggestion}
))}
); }