diff --git a/src/app/create-game/page.tsx b/src/app/create-game/page.tsx index dee117b..7510a04 100644 --- a/src/app/create-game/page.tsx +++ b/src/app/create-game/page.tsx @@ -42,7 +42,7 @@ const [gameSlug, setGameSlug] = useState(""); const [thumbnailUrl, setThumbnailUrl] = useState(""); const [authorSearch, setAuthorSearch] = useState(""); const [selectedAuthors, setSelectedAuthors] = useState>([]); -const [searchResults, setSearchResults] = useState([]); +const [searchResults, setSearchResults] = useState>([]); // Add this function to handle author search const handleAuthorSearch = async (query: string) => { diff --git a/src/app/create-post/page.tsx b/src/app/create-post/page.tsx index 4ff98f0..b10f524 100644 --- a/src/app/create-post/page.tsx +++ b/src/app/create-post/page.tsx @@ -19,6 +19,7 @@ import Select, { MultiValue, StylesConfig } from "react-select"; import { useTheme } from "next-themes"; import Timers from "@/components/timers"; import Streams from "@/components/streams"; +import { UserType } from "@/types/UserType"; export default function CreatePostPage() { const [title, setTitle] = useState(""); @@ -306,7 +307,7 @@ export default function CreatePostPage() { -
+
diff --git a/src/components/editor/index.tsx b/src/components/editor/index.tsx index aa484d6..6c8a2fe 100644 --- a/src/components/editor/index.tsx +++ b/src/components/editor/index.tsx @@ -40,7 +40,7 @@ import { useTheme } from "next-themes"; type EditorProps = { content: string; setContent: (content: string) => void; - gameEditor: boolean; + gameEditor?: boolean; }; const limit = 32767; diff --git a/src/components/themes/theme-slaughter.tsx b/src/components/themes/theme-slaughter.tsx index b57a75a..4715d4b 100644 --- a/src/components/themes/theme-slaughter.tsx +++ b/src/components/themes/theme-slaughter.tsx @@ -1,286 +1,295 @@ "use client"; -// import React, { useState, useEffect, useCallback } from "react"; -// import { getCookie } from "@/helpers/cookie"; -// import { -// getCurrentJam, -// hasJoinedCurrentJam, -// ActiveJamResponse, -// } from "@/helpers/jam"; +import React, { useState, useEffect, useCallback } from "react"; +import { getCookie } from "@/helpers/cookie"; +import { + getCurrentJam, + hasJoinedCurrentJam, + ActiveJamResponse, + joinJam +} from "@/helpers/jam"; +import {ThemeType} from "@/types/ThemeType"; 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); + 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 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 - // } - // }; + // 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(); - // }, []); + 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.

- //
- // ); - // } + // 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]); + 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 + // 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]); + 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: string) => { - // if (!randomTheme) return; + // Handle voting + const handleVote = async (voteType: string) => { + 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, - // }), - // } - // ); + 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); - // } - // }; + 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: number) => { - // 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); - // } - // }; + // Handle resetting a vote from the grid + const handleResetVote = async (themeId: number) => { + try { + const theme = votedThemes.find((theme) => theme.id === themeId); + if (theme) { + setRandomTheme(theme); + setVotedThemes((prev) => + prev.map((t) => + t.id === themeId ? { ...t, slaughterScore: 0 } : t + ) + ); + } + } catch (error) { + console.error("Error resetting vote:", error); + } + }; - // useEffect(() => { - // if (token && activeJamResponse?.phase === "Survival") { - // fetchRandomTheme(); - // fetchVotedThemes(); - // } - // }, [token, activeJamResponse, fetchRandomTheme, fetchVotedThemes]); + useEffect(() => { + if (token && activeJamResponse?.phase === "Survival") { + fetchRandomTheme(); + fetchVotedThemes(); + } + }, [token, activeJamResponse, fetchRandomTheme, fetchVotedThemes]); - // useEffect(() => { - // const init = async () => { - // const joined = await hasJoinedCurrentJam(); - // setHasJoined(joined); - // setLoading(false); - // }; + useEffect(() => { + const init = async () => { + const joined = await hasJoinedCurrentJam(); + setHasJoined(joined); + setLoading(false); + }; - // init(); - // }, []); + init(); + }, []); - // if (phaseLoading || loading) { - // return
Loading...
; - // } + 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. - //

- // - //
- // ); - // } + 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. - //

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

- // {randomTheme.suggestion} - //

- //
- // - // - // - //
- // - // ) : ( - //

- // No themes available. - //

- // )} - //
+ 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} - //
- // ))} - //
- //
- //
- // ); + {/* 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} +
+ ))} +
+
+
+ ); return <>; } diff --git a/src/components/themes/theme-suggest.tsx b/src/components/themes/theme-suggest.tsx index 8fa72ff..40925c0 100644 --- a/src/components/themes/theme-suggest.tsx +++ b/src/components/themes/theme-suggest.tsx @@ -1,282 +1,287 @@ "use client"; -// import React, { useState, useEffect } from "react"; -// import { getCookie } from "@/helpers/cookie"; -// import { -// getCurrentJam, -// hasJoinedCurrentJam, -// ActiveJamResponse, -// } from "@/helpers/jam"; +import React, { useState, useEffect } from "react"; +import { getCookie } from "@/helpers/cookie"; +import { + getCurrentJam, + hasJoinedCurrentJam, + ActiveJamResponse, +} from "@/helpers/jam"; +import { ThemeType } from "@/types/ThemeType"; +import { joinJam } from "@/helpers/jam"; export default function ThemeSuggestions() { - // const [suggestion, setSuggestion] = useState(""); - // const [loading, setLoading] = useState(false); - // const [successMessage, setSuccessMessage] = useState(""); - // const [errorMessage, setErrorMessage] = useState(""); - // const [userSuggestions, setUserSuggestions] = useState([]); - // const [themeLimit, setThemeLimit] = useState(0); - // const [hasJoined, setHasJoined] = useState(false); - // const [activeJamResponse, setActiveJamResponse] = - // useState(null); - // const [phaseLoading, setPhaseLoading] = useState(true); // Loading state for fetching phase + const [suggestion, setSuggestion] = useState(""); + const [loading, setLoading] = useState(false); + const [successMessage, setSuccessMessage] = useState(""); + const [errorMessage, setErrorMessage] = useState(""); + const [userSuggestions, setUserSuggestions] = useState([]); + const [themeLimit, setThemeLimit] = useState(0); + const [hasJoined, setHasJoined] = useState(false); + const [activeJamResponse, setActiveJamResponse] = + useState(null); + const [phaseLoading, setPhaseLoading] = useState(true); // Loading state for fetching phase - // // Fetch the current jam phase using helpers/jam - // useEffect(() => { - // const fetchCurrentJamPhase = async () => { - // try { - // const activeJam = await getCurrentJam(); - // setActiveJamResponse(activeJam); // Set active jam details - // if (activeJam?.jam) { - // setThemeLimit(activeJam.jam.themePerUser || Infinity); // Set theme limit - // } - // } catch (error) { - // console.error("Error fetching current jam:", error); - // } finally { - // setPhaseLoading(false); // Stop loading when phase is fetched - // } - // }; + // Fetch the current jam phase using helpers/jam + useEffect(() => { + const fetchCurrentJamPhase = async () => { + try { + const activeJam = await getCurrentJam(); + setActiveJamResponse(activeJam); // Set active jam details + if (activeJam?.jam) { + setThemeLimit(activeJam.jam.themePerUser || Infinity); // Set theme limit + } + } catch (error) { + console.error("Error fetching current jam:", error); + } finally { + setPhaseLoading(false); // Stop loading when phase is fetched + } + }; - // fetchCurrentJamPhase(); - // }, []); + fetchCurrentJamPhase(); + }, []); - // // Fetch all suggestions for the logged-in user - // const fetchSuggestions = async () => { - // try { - // const response = await fetch( - // process.env.NEXT_PUBLIC_MODE === "PROD" - // ? "https://d2jam.com/api/v1/themes/suggestion" - // : "http://localhost:3005/api/v1/themes/suggestion", - // { - // headers: { Authorization: `Bearer ${getCookie("token")}` }, - // credentials: "include", - // } - // ); - // if (response.ok) { - // const data = await response.json(); - // setUserSuggestions(data); - // } - // } catch (error) { - // console.error("Error fetching suggestions:", error); - // } - // }; + // Fetch all suggestions for the logged-in user + const fetchSuggestions = async () => { + try { + const response = await fetch( + process.env.NEXT_PUBLIC_MODE === "PROD" + ? "https://d2jam.com/api/v1/themes/suggestion" + : "http://localhost:3005/api/v1/themes/suggestion", + { + headers: { Authorization: `Bearer ${getCookie("token")}` }, + credentials: "include", + } + ); + if (response.ok) { + const data = await response.json(); + setUserSuggestions(data); + } + } catch (error) { + console.error("Error fetching suggestions:", error); + } + }; - // // Fetch suggestions only when phase is "Suggestion" - // useEffect(() => { - // if (activeJamResponse?.phase === "Suggestion") { - // fetchSuggestions(); - // } - // }, [activeJamResponse]); + // Fetch suggestions only when phase is "Suggestion" + useEffect(() => { + if (activeJamResponse?.phase === "Suggestion") { + fetchSuggestions(); + } + }, [activeJamResponse]); - // // Handle form submission to add a new suggestion - // const handleSubmit = async (e: React.FormEvent) => { - // e.preventDefault(); - // setLoading(true); - // setSuccessMessage(""); - // setErrorMessage(""); + // Handle form submission to add a new suggestion + const handleSubmit = async (e: React.FormEvent) => { + e.preventDefault(); + setLoading(true); + setSuccessMessage(""); + setErrorMessage(""); - // if (!suggestion.trim()) { - // setErrorMessage("Suggestion cannot be empty."); - // setLoading(false); - // return; - // } + if (!suggestion.trim()) { + setErrorMessage("Suggestion cannot be empty."); + setLoading(false); + return; + } - // try { - // const token = getCookie("token"); + try { + const token = getCookie("token"); - // if (!token) { - // throw new Error("User is not authenticated. Please log in."); - // } + if (!token) { + throw new Error("User is not authenticated. Please log in."); + } - // const response = await fetch( - // process.env.NEXT_PUBLIC_MODE === "PROD" - // ? "https://d2jam.com/api/v1/themes/suggestion" - // : "http://localhost:3005/api/v1/themes/suggestion", - // { - // method: "POST", - // headers: { - // "Content-Type": "application/json", - // Authorization: `Bearer ${token}`, - // }, - // credentials: "include", - // body: JSON.stringify({ suggestionText: suggestion }), - // } - // ); + const response = await fetch( + process.env.NEXT_PUBLIC_MODE === "PROD" + ? "https://d2jam.com/api/v1/themes/suggestion" + : "http://localhost:3005/api/v1/themes/suggestion", + { + method: "POST", + headers: { + "Content-Type": "application/json", + Authorization: `Bearer ${token}`, + }, + credentials: "include", + body: JSON.stringify({ suggestionText: suggestion }), + } + ); - // if (!response.ok) { - // const errorData = await response.json(); - // throw new Error(errorData.error || "Failed to submit suggestion."); - // } + if (!response.ok) { + const errorData = await response.json(); + throw new Error(errorData.error || "Failed to submit suggestion."); + } - // setSuccessMessage("Suggestion added successfully!"); - // setSuggestion(""); // Clear input field - // fetchSuggestions(); // Refresh suggestions list - // } catch (error) { - // if (error instanceof Error) { - // console.error("Error submitting suggestion:", error.message); - // setErrorMessage(error.message || "An unexpected error occurred."); - // } else { - // console.error("Unknown error:", error); - // setErrorMessage("An unexpected error occurred."); - // } - // } finally { - // setLoading(false); - // } - // }; + setSuccessMessage("Suggestion added successfully!"); + setSuggestion(""); // Clear input field + fetchSuggestions(); // Refresh suggestions list + } catch (error) { + if (error instanceof Error) { + console.error("Error submitting suggestion:", error.message); + setErrorMessage(error.message || "An unexpected error occurred."); + } else { + console.error("Unknown error:", error); + setErrorMessage("An unexpected error occurred."); + } + } finally { + setLoading(false); + } + }; - // // Handle deleting a suggestion - // const handleDelete = async (id: number) => { - // try { - // const token = getCookie("token"); + // Handle deleting a suggestion + const handleDelete = async (id: number) => { + try { + const token = getCookie("token"); - // const response = await fetch( - // process.env.NEXT_PUBLIC_MODE === "PROD" - // ? `https://d2jam.com/api/v1/themes/suggestion/${id}` - // : `http://localhost:3005/api/v1/themes/suggestion/${id}`, - // { - // method: "DELETE", - // headers: { Authorization: `Bearer ${token}` }, - // credentials: "include", - // } - // ); + const response = await fetch( + process.env.NEXT_PUBLIC_MODE === "PROD" + ? `https://d2jam.com/api/v1/themes/suggestion/${id}` + : `http://localhost:3005/api/v1/themes/suggestion/${id}`, + { + method: "DELETE", + headers: { Authorization: `Bearer ${token}` }, + credentials: "include", + } + ); - // if (!response.ok) { - // throw new Error("Failed to delete suggestion."); - // } + if (!response.ok) { + throw new Error("Failed to delete suggestion."); + } - // fetchSuggestions(); // Refresh suggestions list - // } catch (error) { - // console.error("Error deleting suggestion:", error); - // } - // }; + fetchSuggestions(); // Refresh suggestions list + } catch (error) { + console.error("Error deleting suggestion:", error); + } + }; - // useEffect(() => { - // const init = async () => { - // const joined = await hasJoinedCurrentJam(); - // setHasJoined(joined); - // setLoading(false); - // }; + useEffect(() => { + const init = async () => { + const joined = await hasJoinedCurrentJam(); + setHasJoined(joined); + setLoading(false); + }; - // init(); - // }, []); + init(); + }, []); - // // Render loading state while fetching phase - // if (phaseLoading || loading) { - // return
Loading...
; - // } + // Render loading state while fetching phase + if (phaseLoading || loading) { + return
Loading...
; + } - // if (!hasJoined) { - // return ( - //
- //

- // Join the Jam First - //

- //

- // You need to join the current jam before you can suggest themes. - //

- // - //
- // ); - // } + if (!hasJoined) { + return ( +
+

+ Join the Jam First +

+

+ You need to join the current jam before you can suggest themes. +

+ +
+ ); + } - // const token = getCookie("token"); + const token = getCookie("token"); - // if (!token) { - // return
Sign in to be able to suggest themes
; - // } + if (!token) { + return
Sign in to be able to suggest themes
; + } - // // Render message if not in Suggestion phase - // if (activeJamResponse?.phase !== "Suggestion") { - // return ( - //
- //

- // Not in Suggestion Phase - //

- //

- // The current phase is{" "} - // {activeJamResponse?.phase || "Unknown"}. Please come - // back during the Suggestion phase. - //

- //
- // ); - // } + // Render message if not in Suggestion phase + if (activeJamResponse?.phase !== "Suggestion") { + return ( +
+

+ Not in Suggestion Phase +

+

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

+
+ ); + } - // return ( - //
- //

- // Submit Your Theme Suggestion - //

+ return ( +
+

+ Submit Your Theme Suggestion +

- // {/* Hide form if user has reached their limit */} - // {userSuggestions.length < themeLimit ? ( - //
- // - // {errorMessage && ( - //

{errorMessage}

- // )} - // {successMessage && ( - //

{successMessage}

- // )} - // - //
- // ) : ( - //

- // You've reached your theme suggestion limit for this jam! - //

- // )} + {/* Hide form if user has reached their limit */} + {userSuggestions.length < themeLimit ? ( +
+ + {errorMessage && ( +

{errorMessage}

+ )} + {successMessage && ( +

{successMessage}

+ )} + +
+ ) : ( +

+ You've reached your theme suggestion limit for this jam! +

+ )} - // {/* List of user's suggestions */} - //
- //

- // Your Suggestions - //

- // {userSuggestions.length > 0 ? ( - //
    - // {userSuggestions.map((suggestion) => ( - //
  • - // {suggestion.suggestion} - // - //
  • - // ))} - //
- // ) : ( - //

- // You haven't submitted any suggestions yet. - //

- // )} - //
- //
- // ); - return <>; + {/* List of user's suggestions */} +
+

+ Your Suggestions +

+ {userSuggestions.length > 0 ? ( +
    + {userSuggestions.map((suggestion) => ( +
  • + {suggestion.suggestion} + +
  • + ))} +
+ ) : ( +

+ You haven't submitted any suggestions yet. +

+ )} +
+
+ ); } diff --git a/src/components/themes/theme-vote.tsx b/src/components/themes/theme-vote.tsx index 3a0b7fa..19a9547 100644 --- a/src/components/themes/theme-vote.tsx +++ b/src/components/themes/theme-vote.tsx @@ -1,245 +1,248 @@ "use client"; -// import React, { useState, useEffect } from "react"; -// import { getCookie } from "@/helpers/cookie"; -// import { -// getCurrentJam, -// hasJoinedCurrentJam, -// ActiveJamResponse, -// } from "@/helpers/jam"; +import React, { useState, useEffect } from "react"; +import { getCookie } from "@/helpers/cookie"; +import { + getCurrentJam, + hasJoinedCurrentJam, + ActiveJamResponse, +} from "@/helpers/jam"; +import { ThemeType } from "@/types/ThemeType"; +import { joinJam } from "@/helpers/jam"; + +interface VoteType { + themeSuggestionId: number; + votingScore: number; +} export default function VotingPage() { - return <>; - // const [themes, setThemes] = useState([]); - // const [loading, setLoading] = useState(false); - // const [activeJamResponse, setActiveJamResponse] = - // useState(null); - // const [hasJoined, setHasJoined] = useState(false); - // const [phaseLoading, setPhaseLoading] = useState(true); // Loading state for fetching phase - // const token = getCookie("token"); + const [themes, setThemes] = useState([]); + const [loading, setLoading] = useState(false); + const [activeJamResponse, setActiveJamResponse] = useState(null); + const [hasJoined, setHasJoined] = useState(false); + const [phaseLoading, setPhaseLoading] = useState(true); // Loading state for fetching phase + const token = getCookie("token"); - // // Fetch the current jam phase using helpers/jam - // useEffect(() => { - // const fetchCurrentJamPhase = async () => { - // try { - // const activeJam = await getCurrentJam(); - // setActiveJamResponse(activeJam); // Set active jam details - // } catch (error) { - // console.error("Error fetching current jam:", error); - // } finally { - // setPhaseLoading(false); // Stop loading when phase is fetched - // } - // }; + // Fetch the current jam phase using helpers/jam + useEffect(() => { + const fetchCurrentJamPhase = async () => { + try { + const activeJam = await getCurrentJam(); + setActiveJamResponse(activeJam); // Set active jam details + } catch (error) { + console.error("Error fetching current jam:", error); + } finally { + setPhaseLoading(false); // Stop loading when phase is fetched + } + }; - // fetchCurrentJamPhase(); - // }, []); + fetchCurrentJamPhase(); + }, []); - // // Fetch themes only when phase is "Voting" - // useEffect(() => { - // // Fetch top N themes with voting scores - // async function fetchThemes() { - // if (!token || !activeJamResponse) return; + // Fetch themes only when phase is "Voting" + useEffect(() => { + // Fetch top N themes with voting scores + async function fetchThemes() { + if (!token || !activeJamResponse) return; - // try { - // const response = await fetch( - // process.env.NEXT_PUBLIC_MODE === "PROD" - // ? "https://d2jam.com/api/v1/themes/top-themes" - // : "http://localhost:3005/api/v1/themes/top-themes", - // { - // headers: { Authorization: `Bearer ${token}` }, - // credentials: "include", - // } - // ); - // if (response.ok) { - // const themes = await response.json(); - // console.log("Fetched themes:", themes); // Debug log + try { + const response = await fetch( + process.env.NEXT_PUBLIC_MODE === "PROD" + ? "https://d2jam.com/api/v1/themes/top-themes" + : "http://localhost:3005/api/v1/themes/top-themes", + { + headers: { Authorization: `Bearer ${token}` }, + credentials: "include", + } + ); + if (response.ok) { + const themes = await response.json(); - // // Fetch user's votes for these themes - // const votesResponse = await fetch( - // process.env.NEXT_PUBLIC_MODE === "PROD" - // ? "https://d2jam.com/api/v1/themes/votes" - // : "http://localhost:3005/api/v1/themes/votes", - // { - // headers: { Authorization: `Bearer ${token}` }, - // credentials: "include", - // } - // ); + // Fetch user's votes for these themes + const votesResponse = await fetch( + process.env.NEXT_PUBLIC_MODE === "PROD" + ? "https://d2jam.com/api/v1/themes/votes" + : "http://localhost:3005/api/v1/themes/votes", + { + headers: { Authorization: `Bearer ${token}` }, + credentials: "include", + } + ); - // if (votesResponse.ok) { - // const votes = await votesResponse.json(); - // console.log("Fetched votes:", votes); // Debug log + if (votesResponse.ok) { + const votes = await votesResponse.json(); + // Merge themes with user's votes + const themesWithVotes = themes.map((theme: ThemeType) => { + const vote = votes.find((v: VoteType) => v.themeSuggestionId === theme.id); + return { + ...theme, + votingScore: vote ? vote.votingScore : null, + }; + }); + setThemes(themesWithVotes); + } + } else { + console.error("Failed to fetch themes."); + } + } catch (error) { + console.error("Error fetching themes:", error); + } + } - // // Merge themes with user's votes - // const themesWithVotes = themes.map((theme) => { - // const vote = votes.find((v) => v.themeSuggestionId === theme.id); - // console.log(`Theme ${theme.id} vote:`, vote); // Debug log - // return { - // ...theme, - // votingScore: vote ? vote.votingScore : null, - // }; - // }); + if (activeJamResponse?.phase === "Voting") { + fetchThemes(); + } + }, [activeJamResponse, token]); - // console.log("Themes with votes:", themesWithVotes); // Debug log - // setThemes(themesWithVotes); - // } - // } else { - // console.error("Failed to fetch themes."); - // } - // } catch (error) { - // console.error("Error fetching themes:", error); - // } - // } + // Handle voting + const handleVote = async (themeId: number, votingScore: number) => { + setLoading(true); + try { + const response = await fetch( + process.env.NEXT_PUBLIC_MODE === "PROD" + ? "https://d2jam.com/api/v1/themes/vote" + : "http://localhost:3005/api/v1/themes/vote", + { + method: "POST", + headers: { + "Content-Type": "application/json", + Authorization: `Bearer ${token}`, + }, + credentials: "include", + body: JSON.stringify({ suggestionId: themeId, votingScore }), + } + ); - // if (activeJamResponse?.phase === "Voting") { - // fetchThemes(); - // } - // }, [activeJamResponse, token]); + if (response.ok) { + // Just update the local state instead of re-fetching all themes + setThemes((prevThemes) => + prevThemes.map((theme) => + theme.id === themeId ? { ...theme, votingScore } : theme + ) + ); + } else { + console.error("Failed to submit vote."); + } + } catch (error) { + console.error("Error submitting vote:", error); + } finally { + setLoading(false); + } + }; - // // Handle voting - // const handleVote = async (themeId, votingScore) => { - // setLoading(true); - // try { - // const response = await fetch( - // process.env.NEXT_PUBLIC_MODE === "PROD" - // ? "https://d2jam.com/api/v1/themes/vote" - // : "http://localhost:3005/api/v1/themes/vote", - // { - // method: "POST", - // headers: { - // "Content-Type": "application/json", - // Authorization: `Bearer ${token}`, - // }, - // credentials: "include", - // body: JSON.stringify({ suggestionId: themeId, votingScore }), - // } - // ); + useEffect(() => { + const init = async () => { + const joined = await hasJoinedCurrentJam(); + setHasJoined(joined); + setLoading(false); + }; - // if (response.ok) { - // // Just update the local state instead of re-fetching all themes - // setThemes((prevThemes) => - // prevThemes.map((theme) => - // theme.id === themeId ? { ...theme, votingScore } : theme - // ) - // ); - // } else { - // console.error("Failed to submit vote."); - // } - // } catch (error) { - // console.error("Error submitting vote:", error); - // } finally { - // setLoading(false); - // } - // }; + init(); + }, []); - // useEffect(() => { - // const init = async () => { - // const joined = await hasJoinedCurrentJam(); - // setHasJoined(joined); - // setLoading(false); - // }; + if (phaseLoading || loading) { + return
Loading...
; + } - // init(); - // }, []); + if (!hasJoined) { + return ( +
+

+ Join the Jam First +

+

+ You need to join the current jam before you can vote themes. +

+ +
+ ); + } - // if (phaseLoading || loading) { - // return
Loading...
; - // } + if (activeJamResponse?.phase !== "Voting") { + return ( +
+

+ Not in Voting Phase +

+

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

+
+ ); + } - // if (!hasJoined) { - // return ( - //
- //

- // Join the Jam First - //

- //

- // You need to join the current jam before you can vote themes. - //

- // - //
- // ); - // } + const loggedIn = getCookie("token"); - // if (activeJamResponse?.phase !== "Voting") { - // return ( - //
- //

- // Not in Voting Phase - //

- //

- // The current phase is{" "} - // {activeJamResponse?.phase || "Unknown"}. Please come - // back during the Voting phase. - //

- //
- // ); - // } + if (!loggedIn) { + return
Sign in to be able to vote
; + } - // const loggedIn = getCookie("token"); + return ( +
+

+ Voting Phase +

+
+ {themes.map((theme) => ( +
+ {/* Voting Buttons */} +
+ + + +
- // if (!loggedIn) { - // return
Sign in to be able to vote
; - // } - - // return ( - //
- //

- // Voting Phase - //

- //
- // {themes.map((theme) => ( - //
- // {/* Voting Buttons */} - //
- // - // - // - //
- - // {/* Theme Suggestion */} - //
- // {theme.suggestion} - //
- //
- // ))} - //
- //
- // ); + {/* Theme Suggestion */} +
+ {theme.suggestion} +
+
+ ))} +
+
+ ); } diff --git a/src/helpers/jam.ts b/src/helpers/jam.ts index 5b82708..2ceeb83 100644 --- a/src/helpers/jam.ts +++ b/src/helpers/jam.ts @@ -74,8 +74,8 @@ export async function hasJoinedCurrentJam(): Promise { try { const response = await fetch( process.env.NEXT_PUBLIC_MODE === "PROD" - ? "https://d2jam.com/api/v1/participation" - : "http://localhost:3005/api/v1/participation", + ? "https://d2jam.com/api/v1/jams/participation" + : "http://localhost:3005/api/v1/jams/participation", { credentials: "include", headers: { diff --git a/src/types/JamType.ts b/src/types/JamType.ts index c20c43d..271fc75 100644 --- a/src/types/JamType.ts +++ b/src/types/JamType.ts @@ -9,4 +9,5 @@ export interface JamType { startTime: Date; createdAt: Date; updatedAt: Date; + themePerUser: number; } diff --git a/src/types/ThemeType.ts b/src/types/ThemeType.ts new file mode 100644 index 0000000..4c05dad --- /dev/null +++ b/src/types/ThemeType.ts @@ -0,0 +1,6 @@ +export interface ThemeType { + id: number; + suggestion: string; + slaughterScore: number; + votingScore: number; + } \ No newline at end of file