mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Compare commits
3 commits
6791e36401
...
d8894cd0eb
Author | SHA1 | Date | |
---|---|---|---|
d8894cd0eb | |||
505fb56df8 | |||
74bc8014e9 |
10 changed files with 1217 additions and 745 deletions
|
@ -1,9 +1,446 @@
|
|||
"use client";
|
||||
|
||||
import Editor from "@/components/editor";
|
||||
import { getCookie, hasCookie } from "@/helpers/cookie";
|
||||
import { Avatar, Button, Form, Input, Spacer } from "@nextui-org/react";
|
||||
import { LoaderCircle } from "lucide-react";
|
||||
import { redirect } from "next/navigation";
|
||||
import { ReactNode, useEffect, useState } from "react";
|
||||
import { toast } from "react-toastify";
|
||||
import sanitizeHtml from "sanitize-html";
|
||||
import Select, { MultiValue, StylesConfig } from "react-select";
|
||||
import { useTheme } from "next-themes";
|
||||
import Timers from "@/components/timers";
|
||||
import Streams from "@/components/streams";
|
||||
|
||||
export default function CreateGamePage() {
|
||||
const [title, setTitle] = useState("");
|
||||
const [content, setContent] = useState("");
|
||||
const [errors, setErrors] = useState({});
|
||||
const [waitingPost, setWaitingPost] = useState(false);
|
||||
const [selectedTags, setSelectedTags] = useState<MultiValue<{
|
||||
value: string;
|
||||
label: ReactNode;
|
||||
isFixed: boolean;
|
||||
}> | null>(null);
|
||||
const [mounted, setMounted] = useState<boolean>(false);
|
||||
const [options, setOptions] = useState<
|
||||
{
|
||||
value: string;
|
||||
label: ReactNode;
|
||||
id: number;
|
||||
isFixed: boolean;
|
||||
}[]
|
||||
>();
|
||||
const { theme } = useTheme();
|
||||
// Add these state variables after existing useState declarations
|
||||
const [windowsLink, setWindowsLink] = useState("");
|
||||
const [linuxLink, setLinuxLink] = useState("");
|
||||
const [macLink, setMacLink] = useState("");
|
||||
const [webGLLink, setWebGLLink] = useState("");
|
||||
const [gameSlug, setGameSlug] = useState("");
|
||||
const [thumbnailUrl, setThumbnailUrl] = useState("");
|
||||
const [authorSearch, setAuthorSearch] = useState("");
|
||||
const [selectedAuthors, setSelectedAuthors] = useState<Array<{id: number, name: string}>>([]);
|
||||
const [searchResults, setSearchResults] = useState<Array<{ id: number; name: string }>>([]);
|
||||
|
||||
// Add this function to handle author search
|
||||
const handleAuthorSearch = async (query: string) => {
|
||||
if (query.length < 2) return;
|
||||
|
||||
const response = await fetch(
|
||||
process.env.NEXT_PUBLIC_MODE === "PROD"
|
||||
? `https://d2jam.com/api/v1/users/search?q=${query}`
|
||||
: `http://localhost:3005/api/v1/users/search?q=${query}`,
|
||||
{
|
||||
headers: { authorization: `Bearer ${getCookie("token")}` },
|
||||
credentials: "include",
|
||||
}
|
||||
);
|
||||
|
||||
if (response.ok) {
|
||||
const data = await response.json();
|
||||
setSearchResults(data);
|
||||
}
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
setMounted(true);
|
||||
|
||||
const load = async () => {
|
||||
const response = await fetch(
|
||||
process.env.NEXT_PUBLIC_MODE === "PROD"
|
||||
? `https://d2jam.com/api/v1/self?username=${getCookie("user")}`
|
||||
: `http://localhost:3005/api/v1/self?username=${getCookie("user")}`,
|
||||
{
|
||||
headers: { authorization: `Bearer ${getCookie("token")}` },
|
||||
credentials: "include",
|
||||
}
|
||||
);
|
||||
|
||||
const user = await response.json();
|
||||
|
||||
const tagResponse = await fetch(
|
||||
process.env.NEXT_PUBLIC_MODE === "PROD"
|
||||
? `https://d2jam.com/api/v1/tags`
|
||||
: `http://localhost:3005/api/v1/tags`
|
||||
);
|
||||
|
||||
if (tagResponse.ok) {
|
||||
const newoptions: {
|
||||
value: string;
|
||||
label: ReactNode;
|
||||
id: number;
|
||||
isFixed: boolean;
|
||||
}[] = [];
|
||||
|
||||
for (const tag of await tagResponse.json()) {
|
||||
if (tag.modOnly && !user.mod) {
|
||||
continue;
|
||||
}
|
||||
newoptions.push({
|
||||
value: tag.name,
|
||||
id: tag.id,
|
||||
label: (
|
||||
<div className="flex gap-2 items-center">
|
||||
{tag.icon && (
|
||||
<Avatar
|
||||
className="w-6 h-6 min-w-6 min-h-6"
|
||||
size="sm"
|
||||
src={tag.icon}
|
||||
classNames={{ base: "bg-transparent" }}
|
||||
/>
|
||||
)}
|
||||
<p>
|
||||
{tag.name}
|
||||
{tag.modOnly ? " (Mod Only)" : ""}
|
||||
</p>
|
||||
</div>
|
||||
),
|
||||
isFixed: tag.alwaysAdded,
|
||||
});
|
||||
}
|
||||
|
||||
setOptions(newoptions);
|
||||
setSelectedTags(newoptions.filter((tag) => tag.isFixed));
|
||||
}
|
||||
};
|
||||
load();
|
||||
}, []);
|
||||
|
||||
const styles: StylesConfig<
|
||||
{
|
||||
value: string;
|
||||
label: ReactNode;
|
||||
isFixed: boolean;
|
||||
},
|
||||
true
|
||||
> = {
|
||||
multiValue: (base, state) => {
|
||||
return {
|
||||
...base,
|
||||
backgroundColor: state.data.isFixed
|
||||
? theme == "dark"
|
||||
? "#222"
|
||||
: "#ddd"
|
||||
: theme == "dark"
|
||||
? "#444"
|
||||
: "#eee",
|
||||
};
|
||||
},
|
||||
multiValueLabel: (base, state) => {
|
||||
return {
|
||||
...base,
|
||||
color: state.data.isFixed
|
||||
? theme == "dark"
|
||||
? "#ddd"
|
||||
: "#222"
|
||||
: theme == "dark"
|
||||
? "#fff"
|
||||
: "#444",
|
||||
fontWeight: state.data.isFixed ? "normal" : "bold",
|
||||
paddingRight: state.data.isFixed ? "8px" : "2px",
|
||||
};
|
||||
},
|
||||
multiValueRemove: (base, state) => {
|
||||
return {
|
||||
...base,
|
||||
display: state.data.isFixed ? "none" : "flex",
|
||||
color: theme == "dark" ? "#ddd" : "#222",
|
||||
};
|
||||
},
|
||||
control: (styles) => ({
|
||||
...styles,
|
||||
backgroundColor: theme == "dark" ? "#181818" : "#fff",
|
||||
minWidth: "300px",
|
||||
}),
|
||||
menu: (styles) => ({
|
||||
...styles,
|
||||
backgroundColor: theme == "dark" ? "#181818" : "#fff",
|
||||
color: theme == "dark" ? "#fff" : "#444",
|
||||
}),
|
||||
option: (styles, { isFocused }) => ({
|
||||
...styles,
|
||||
backgroundColor: isFocused
|
||||
? theme == "dark"
|
||||
? "#333"
|
||||
: "#ddd"
|
||||
: undefined,
|
||||
}),
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="absolute flex items-center justify-center top-0 left-0 w-screen h-screen">
|
||||
<p>Game creation coming soon</p>
|
||||
<div className="static flex items-top mt-20 justify-center top-0 left-0">
|
||||
<Form
|
||||
className="w-full max-w-2xl flex flex-col gap-4"
|
||||
validationErrors={errors}
|
||||
onSubmit={async (e) => {
|
||||
e.preventDefault();
|
||||
|
||||
if (!title && !content) {
|
||||
setErrors({
|
||||
title: "Please enter a valid title",
|
||||
content: "Please enter valid content",
|
||||
});
|
||||
toast.error("Please enter valid content");
|
||||
return;
|
||||
}
|
||||
|
||||
if (!title) {
|
||||
setErrors({ title: "Please enter a valid title" });
|
||||
return;
|
||||
}
|
||||
|
||||
if (!content) {
|
||||
setErrors({ content: "Please enter valid content" });
|
||||
toast.error("Please enter valid content");
|
||||
return;
|
||||
}
|
||||
|
||||
if (!hasCookie("token")) {
|
||||
setErrors({ content: "You are not logged in" });
|
||||
return;
|
||||
}
|
||||
|
||||
const sanitizedHtml = sanitizeHtml(content);
|
||||
setWaitingPost(true);
|
||||
|
||||
const tags = [];
|
||||
|
||||
if (selectedTags) {
|
||||
for (const tag of selectedTags) {
|
||||
tags.push(
|
||||
options?.filter((option) => option.value == tag.value)[0].id
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
const response = await fetch(
|
||||
process.env.NEXT_PUBLIC_MODE === "PROD"
|
||||
? "https://d2jam.com/api/v1/post"
|
||||
: "http://localhost:3005/api/v1/post",
|
||||
{
|
||||
body: JSON.stringify({
|
||||
title: title,
|
||||
content: sanitizedHtml,
|
||||
username: getCookie("user"),
|
||||
tags,
|
||||
gameSlug,
|
||||
thumbnailUrl,
|
||||
windowsLink,
|
||||
linuxLink,
|
||||
macLink,
|
||||
webGLLink,
|
||||
authors: selectedAuthors.map(author => author.id)
|
||||
}),
|
||||
method: "POST",
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
authorization: `Bearer ${getCookie("token")}`,
|
||||
},
|
||||
credentials: "include",
|
||||
}
|
||||
);
|
||||
|
||||
if (response.status == 401) {
|
||||
setErrors({ content: "Invalid user" });
|
||||
setWaitingPost(false);
|
||||
return;
|
||||
}
|
||||
|
||||
if (response.ok) {
|
||||
toast.success("Successfully created post");
|
||||
setWaitingPost(false);
|
||||
redirect("/");
|
||||
} else {
|
||||
toast.error("An error occured");
|
||||
setWaitingPost(false);
|
||||
}
|
||||
}}
|
||||
>
|
||||
<Input
|
||||
isRequired
|
||||
label="Game Name"
|
||||
labelPlacement="outside"
|
||||
name="title"
|
||||
placeholder="Enter your game name"
|
||||
type="text"
|
||||
value={title}
|
||||
onValueChange={setTitle}
|
||||
/>
|
||||
|
||||
<Input
|
||||
label="Game Slug"
|
||||
labelPlacement="outside"
|
||||
placeholder="your-game-name"
|
||||
value={gameSlug}
|
||||
onValueChange={setGameSlug}
|
||||
description="This will be used in the URL: d2jam.com/games/your-game-name"
|
||||
/>
|
||||
|
||||
<div className="flex flex-col gap-2">
|
||||
<label className="text-sm font-medium">Add Authors</label>
|
||||
<Input
|
||||
placeholder="Search users..."
|
||||
value={authorSearch}
|
||||
onValueChange={(value) => {
|
||||
setAuthorSearch(value);
|
||||
handleAuthorSearch(value);
|
||||
}}
|
||||
/>
|
||||
{searchResults.length > 0 && (
|
||||
<div className="bg-gray-100 dark:bg-gray-800 rounded-lg p-2">
|
||||
{searchResults.map((user) => (
|
||||
<div
|
||||
key={user.id}
|
||||
className="flex justify-between items-center p-2 hover:bg-gray-200 dark:hover:bg-gray-700 rounded cursor-pointer"
|
||||
onClick={() => {
|
||||
setSelectedAuthors([...selectedAuthors, user]);
|
||||
setSearchResults([]);
|
||||
setAuthorSearch("");
|
||||
}}
|
||||
>
|
||||
<span>{user.name}</span>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
)}
|
||||
<div className="flex flex-wrap gap-2 mt-2">
|
||||
{selectedAuthors.map((author) => (
|
||||
<div
|
||||
key={author.id}
|
||||
className="bg-blue-100 dark:bg-blue-800 text-blue-800 dark:text-blue-100 px-3 py-1 rounded-full flex items-center gap-2"
|
||||
>
|
||||
<span>{author.name}</span>
|
||||
<button
|
||||
onClick={() => setSelectedAuthors(selectedAuthors.filter(a => a.id !== author.id))}
|
||||
className="text-sm hover:text-red-500"
|
||||
>
|
||||
×
|
||||
</button>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
<label className="text-sm font-medium">Game Description</label>
|
||||
<Editor content={content} setContent={setContent} gameEditor />
|
||||
|
||||
<Spacer />
|
||||
|
||||
{mounted && (
|
||||
<Select
|
||||
styles={styles}
|
||||
isMulti
|
||||
value={selectedTags}
|
||||
onChange={(value) => setSelectedTags(value)}
|
||||
options={options}
|
||||
isClearable={false}
|
||||
isOptionDisabled={() =>
|
||||
selectedTags != null && selectedTags.length >= 5
|
||||
}
|
||||
/>
|
||||
)}
|
||||
|
||||
<Spacer />
|
||||
|
||||
|
||||
|
||||
<div className="flex flex-col gap-4">
|
||||
|
||||
|
||||
<Input
|
||||
label="Thumbnail URL"
|
||||
labelPlacement="outside"
|
||||
placeholder="https://example.com/thumbnail.png"
|
||||
value={thumbnailUrl}
|
||||
onValueChange={setThumbnailUrl}
|
||||
/>
|
||||
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<Input
|
||||
label="Windows Download"
|
||||
placeholder="https://example.com/game-windows.zip"
|
||||
value={windowsLink}
|
||||
onValueChange={setWindowsLink}
|
||||
/>
|
||||
<Input
|
||||
label="Linux Download"
|
||||
placeholder="https://example.com/game-linux.zip"
|
||||
value={linuxLink}
|
||||
onValueChange={setLinuxLink}
|
||||
/>
|
||||
<Input
|
||||
label="Mac Download"
|
||||
placeholder="https://example.com/game-mac.zip"
|
||||
value={macLink}
|
||||
onValueChange={setMacLink}
|
||||
/>
|
||||
<Input
|
||||
label="WebGL Link"
|
||||
placeholder="https://example.com/game-webgl"
|
||||
value={webGLLink}
|
||||
onValueChange={setWebGLLink}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div className="bg-gray-100 dark:bg-gray-800 p-4 rounded-lg">
|
||||
<h3 className="text-lg font-bold mb-4">Game Metrics</h3>
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<div className="bg-white dark:bg-gray-900 p-3 rounded-lg">
|
||||
<p className="text-sm text-gray-600 dark:text-gray-400">Views</p>
|
||||
<p className="text-2xl font-bold">0</p>
|
||||
</div>
|
||||
<div className="bg-white dark:bg-gray-900 p-3 rounded-lg">
|
||||
<p className="text-sm text-gray-600 dark:text-gray-400">Downloads</p>
|
||||
<p className="text-2xl font-bold">0</p>
|
||||
</div>
|
||||
<div className="bg-white dark:bg-gray-900 p-3 rounded-lg">
|
||||
<p className="text-sm text-gray-600 dark:text-gray-400">Rating</p>
|
||||
<p className="text-2xl font-bold">N/A</p>
|
||||
</div>
|
||||
<div className="bg-white dark:bg-gray-900 p-3 rounded-lg">
|
||||
<p className="text-sm text-gray-600 dark:text-gray-400">Comments</p>
|
||||
<p className="text-2xl font-bold">0</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div className="flex gap-2">
|
||||
<Button color="primary" type="submit">
|
||||
{waitingPost ? (
|
||||
<LoaderCircle className="animate-spin" size={16} />
|
||||
) : (
|
||||
<p>Create</p>
|
||||
)}
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</Form>
|
||||
<div className="flex flex-col gap-4 px-8 items-end">
|
||||
<Timers />
|
||||
<Streams />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -17,6 +17,8 @@ import { toast } from "react-toastify";
|
|||
import sanitizeHtml from "sanitize-html";
|
||||
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() {
|
||||
|
@ -168,7 +170,7 @@ export default function CreatePostPage() {
|
|||
};
|
||||
|
||||
return (
|
||||
<div className="absolute flex items-center justify-center top-0 left-0 w-screen h-screen">
|
||||
<div className="absolute flex items-top mt-40 justify-center top-0 left-0 w-screen h-screen">
|
||||
<Form
|
||||
className="w-full max-w-2xl flex flex-col gap-4"
|
||||
validationErrors={errors}
|
||||
|
@ -305,6 +307,10 @@ export default function CreatePostPage() {
|
|||
</Button>
|
||||
</div>
|
||||
</Form>
|
||||
</div>
|
||||
<div className="flex flex-col gap-4 px-8 items-end">
|
||||
<Timers />
|
||||
<Streams />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -40,11 +40,12 @@ import { useTheme } from "next-themes";
|
|||
type EditorProps = {
|
||||
content: string;
|
||||
setContent: (content: string) => void;
|
||||
gameEditor?: boolean;
|
||||
};
|
||||
|
||||
const limit = 32767;
|
||||
|
||||
export default function Editor({ content, setContent }: EditorProps) {
|
||||
export default function Editor({ content, setContent,gameEditor }: EditorProps) {
|
||||
const { theme } = useTheme();
|
||||
|
||||
const editor = useEditor({
|
||||
|
@ -97,7 +98,11 @@ export default function Editor({ content, setContent }: EditorProps) {
|
|||
editorProps: {
|
||||
attributes: {
|
||||
class:
|
||||
"prose dark:prose-invert min-h-[150px] max-h-[400px] overflow-y-auto cursor-text rounded-md border p-5 focus-within:outline-none focus-within:border-blue-500 !duration-250 !ease-linear !transition-all",
|
||||
"prose dark:prose-invert " +
|
||||
(gameEditor
|
||||
? "min-h-[600px] max-h-[600px]"
|
||||
: "min-h-[150px] max-h-[400px]") +
|
||||
" overflow-y-auto cursor-text rounded-md border p-5 focus-within:outline-none focus-within:border-blue-500 !duration-250 !ease-linear !transition-all",
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
@ -111,11 +111,10 @@ export default function JamHeader() {
|
|||
</div>
|
||||
</div>
|
||||
|
||||
{/* Phase-Specific Display */}
|
||||
{activeJamResponse?.phase === "Suggestion" && (
|
||||
<div className="bg-gray-100 dark:bg-gray-800 p-4 text-center rounded-b-2x">
|
||||
<a
|
||||
// href="/theme-suggestions"
|
||||
href="/theme-suggestions"
|
||||
className="text-blue-300 dark:text-blue-500 hover:underline font-semibold"
|
||||
>
|
||||
Go to Theme Suggestion
|
||||
|
@ -126,7 +125,7 @@ export default function JamHeader() {
|
|||
{activeJamResponse?.phase === "Survival" && (
|
||||
<div className="bg-gray-100 dark:bg-gray-800 p-4 text-center rounded-b-2x">
|
||||
<a
|
||||
// href="/theme-slaughter"
|
||||
href="/theme-slaughter"
|
||||
className="text-blue-300 dark:text-blue-500 hover:underline font-semibold"
|
||||
>
|
||||
Go to Theme Survival
|
||||
|
@ -137,7 +136,7 @@ export default function JamHeader() {
|
|||
{activeJamResponse?.phase === "Voting" && (
|
||||
<div className="bg-gray-100 dark:bg-gray-800 p-4 text-center rounded-b-2x">
|
||||
<a
|
||||
// href="/theme-voting"
|
||||
href="/theme-voting"
|
||||
className="text-blue-300 dark:text-blue-500 hover:underline font-semibold"
|
||||
>
|
||||
Go to Theme Voting
|
||||
|
|
|
@ -1,286 +1,296 @@
|
|||
"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<string | null>(null);
|
||||
// const [hasJoined, setHasJoined] = useState<boolean>(false);
|
||||
// const [activeJamResponse, setActiveJam] = useState<ActiveJamResponse | null>(
|
||||
// null
|
||||
// );
|
||||
// const [phaseLoading, setPhaseLoading] = useState(true);
|
||||
const [randomTheme, setRandomTheme] = useState<ThemeType | null>(null);
|
||||
const [votedThemes, setVotedThemes] = useState<ThemeType[]>([]);
|
||||
const [loading, setLoading] = useState(false);
|
||||
const [token, setToken] = useState<string | null>(null);
|
||||
const [hasJoined, setHasJoined] = useState<boolean>(false);
|
||||
const [activeJamResponse, setActiveJam] = useState<ActiveJamResponse | null>(
|
||||
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 (
|
||||
// <div>
|
||||
// <h1>It's not Theme Survival phase.</h1>
|
||||
// </div>
|
||||
// );
|
||||
// }
|
||||
// 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 (
|
||||
<div>
|
||||
<h1>It's not Theme Survival phase.</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// 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 <div>Loading...</div>;
|
||||
// }
|
||||
if (phaseLoading || loading) {
|
||||
return <div>Loading...</div>;
|
||||
}
|
||||
|
||||
// if (!hasJoined) {
|
||||
// return (
|
||||
// <div className="p-6 bg-gray-100 dark:bg-gray-800 min-h-screen">
|
||||
// <h1 className="text-2xl font-bold text-gray-800 dark:text-white mb-6">
|
||||
// Join the Jam First
|
||||
// </h1>
|
||||
// <p className="text-gray-600 dark:text-gray-400">
|
||||
// You need to join the current jam before you can join Theme Survival.
|
||||
// </p>
|
||||
// <button
|
||||
// onClick={() => joinJam(activeJamResponse?.jam?.id)}
|
||||
// className="mt-4 px-6 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600"
|
||||
// >
|
||||
// Join Jam
|
||||
// </button>
|
||||
// </div>
|
||||
// );
|
||||
// }
|
||||
|
||||
|
||||
// // Render message if not in Theme Slaughter phase
|
||||
// if (activeJamResponse?.phase !== "Survival") {
|
||||
// return (
|
||||
// <div className="p-6 bg-gray-100 dark:bg-gray-800 min-h-screen">
|
||||
// <h1 className="text-2xl font-bold text-gray-800 dark:text-white mb-6">
|
||||
// Not in Theme Slaughter Phase
|
||||
// </h1>
|
||||
// <p className="text-gray-600 dark:text-gray-400">
|
||||
// The current phase is{" "}
|
||||
// <strong>{activeJamResponse?.phase || "Unknown"}</strong>. Please come
|
||||
// back during the Theme Slaughter phase.
|
||||
// </p>
|
||||
// </div>
|
||||
// );
|
||||
// }
|
||||
// Render message if not in Theme Slaughter phase
|
||||
if (activeJamResponse?.phase !== "Survival") {
|
||||
return (
|
||||
<div className="p-6 bg-gray-100 dark:bg-gray-800 min-h-screen">
|
||||
<h1 className="text-2xl font-bold text-gray-800 dark:text-white mb-6">
|
||||
Not in Theme Slaughter Phase
|
||||
</h1>
|
||||
<p className="text-gray-600 dark:text-gray-400">
|
||||
The current phase is{" "}
|
||||
<strong>{activeJamResponse?.phase || "Unknown"}</strong>. Please come
|
||||
back during the Theme Slaughter phase.
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// const loggedIn = getCookie("token");
|
||||
const loggedIn = getCookie("token");
|
||||
if (!loggedIn) {
|
||||
return <div>Sign in to be able to join the Theme Survival</div>;
|
||||
}
|
||||
|
||||
// if (!loggedIn) {
|
||||
// return <div>Sign in to be able to join the Theme Survival</div>;
|
||||
// }
|
||||
if (!hasJoined) {
|
||||
return (
|
||||
<div className="p-6 bg-gray-100 dark:bg-gray-800 min-h-screen">
|
||||
<h1 className="text-2xl font-bold text-gray-800 dark:text-white mb-6">
|
||||
Join the Jam First
|
||||
</h1>
|
||||
<p className="text-gray-600 dark:text-gray-400">
|
||||
You need to join the current jam before you can join Theme Survival.
|
||||
</p>
|
||||
<button
|
||||
onClick={() => {
|
||||
if (activeJamResponse?.jam?.id !== undefined) {
|
||||
joinJam(activeJamResponse.jam.id);
|
||||
}
|
||||
}}
|
||||
className="mt-4 px-6 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600"
|
||||
>
|
||||
Join Jam
|
||||
</button>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// return (
|
||||
// <div className="flex h-screen">
|
||||
// {/* Left Side */}
|
||||
// <div className="w-1/2 p-6 bg-gray-100 dark:bg-gray-800 flex flex-col justify-start items-center">
|
||||
// {randomTheme ? (
|
||||
// <>
|
||||
// <h2 className="text-2xl font-bold text-gray-800 dark:text-white mb-4">
|
||||
// {randomTheme.suggestion}
|
||||
// </h2>
|
||||
// <div className="flex gap-4">
|
||||
// <button
|
||||
// onClick={() => handleVote("YES")}
|
||||
// className="px-6 py-3 bg-green-500 text-white font-bold rounded-lg hover:bg-green-600"
|
||||
// disabled={loading}
|
||||
// >
|
||||
// YES
|
||||
// </button>
|
||||
// <button
|
||||
// onClick={() => handleVote("NO")}
|
||||
// className="px-6 py-3 bg-red-500 text-white font-bold rounded-lg hover:bg-red-600"
|
||||
// disabled={loading}
|
||||
// >
|
||||
// NO
|
||||
// </button>
|
||||
// <button
|
||||
// onClick={() => handleVote("SKIP")}
|
||||
// className="px-6 py-3 bg-gray-500 text-white font-bold rounded-lg hover:bg-gray-600"
|
||||
// disabled={loading}
|
||||
// >
|
||||
// SKIP
|
||||
// </button>
|
||||
// </div>
|
||||
// </>
|
||||
// ) : (
|
||||
// <p className="text-gray-600 dark:text-gray-400">
|
||||
// No themes available.
|
||||
// </p>
|
||||
// )}
|
||||
// </div>
|
||||
return (
|
||||
<div className="flex h-screen">
|
||||
{/* Left Side */}
|
||||
<div className="w-1/2 p-6 bg-gray-100 dark:bg-gray-800 flex flex-col justify-start items-center">
|
||||
{randomTheme ? (
|
||||
<>
|
||||
<h2 className="text-2xl font-bold text-gray-800 dark:text-white mb-4">
|
||||
{randomTheme.suggestion}
|
||||
</h2>
|
||||
<div className="flex gap-4">
|
||||
<button
|
||||
onClick={() => handleVote("YES")}
|
||||
className="px-6 py-3 bg-green-500 text-white font-bold rounded-lg hover:bg-green-600"
|
||||
disabled={loading}
|
||||
>
|
||||
YES
|
||||
</button>
|
||||
<button
|
||||
onClick={() => handleVote("NO")}
|
||||
className="px-6 py-3 bg-red-500 text-white font-bold rounded-lg hover:bg-red-600"
|
||||
disabled={loading}
|
||||
>
|
||||
NO
|
||||
</button>
|
||||
<button
|
||||
onClick={() => handleVote("SKIP")}
|
||||
className="px-6 py-3 bg-gray-500 text-white font-bold rounded-lg hover:bg-gray-600"
|
||||
disabled={loading}
|
||||
>
|
||||
SKIP
|
||||
</button>
|
||||
</div>
|
||||
</>
|
||||
) : (
|
||||
<p className="text-gray-600 dark:text-gray-400">
|
||||
No themes available.
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
// {/* Right Side */}
|
||||
// <div className="w-1/2 p-6 bg-white dark:bg-gray-900 overflow-y-auto">
|
||||
// <h3 className="text-xl font-bold text-gray-800 dark:text-white mb-4">
|
||||
// Your Votes
|
||||
// </h3>
|
||||
// <div className="grid grid-cols-4 gap-4">
|
||||
// {votedThemes.map((theme) => (
|
||||
// <div
|
||||
// key={theme.id}
|
||||
// onClick={() => 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}
|
||||
// </div>
|
||||
// ))}
|
||||
// </div>
|
||||
// </div>
|
||||
// </div>
|
||||
// );
|
||||
{/* Right Side */}
|
||||
<div className="w-1/2 p-6 bg-white dark:bg-gray-900 overflow-y-auto">
|
||||
<h3 className="text-xl font-bold text-gray-800 dark:text-white mb-4">
|
||||
Your Votes
|
||||
</h3>
|
||||
<div className="grid grid-cols-4 gap-4">
|
||||
{votedThemes.map((theme) => (
|
||||
<div
|
||||
key={theme.id}
|
||||
onClick={() => 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}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
return <></>;
|
||||
}
|
||||
|
|
|
@ -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<boolean>(false);
|
||||
// const [activeJamResponse, setActiveJamResponse] =
|
||||
// useState<ActiveJamResponse | null>(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<ThemeType[]>([]);
|
||||
const [themeLimit, setThemeLimit] = useState(0);
|
||||
const [hasJoined, setHasJoined] = useState<boolean>(false);
|
||||
const [activeJamResponse, setActiveJamResponse] =
|
||||
useState<ActiveJamResponse | null>(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 <div>Loading...</div>;
|
||||
// }
|
||||
// Render loading state while fetching phase
|
||||
if (phaseLoading || loading) {
|
||||
return <div>Loading...</div>;
|
||||
}
|
||||
|
||||
// if (!hasJoined) {
|
||||
// return (
|
||||
// <div className="p-6 bg-gray-100 dark:bg-gray-800 min-h-screen">
|
||||
// <h1 className="text-2xl font-bold text-gray-800 dark:text-white mb-6">
|
||||
// Join the Jam First
|
||||
// </h1>
|
||||
// <p className="text-gray-600 dark:text-gray-400">
|
||||
// You need to join the current jam before you can suggest themes.
|
||||
// </p>
|
||||
// <button
|
||||
// onClick={() => joinJam(activeJamResponse?.jam?.id)}
|
||||
// className="mt-4 px-6 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600"
|
||||
// >
|
||||
// Join Jam
|
||||
// </button>
|
||||
// </div>
|
||||
// );
|
||||
// }
|
||||
const token = getCookie("token");
|
||||
|
||||
// const token = getCookie("token");
|
||||
if (!token) {
|
||||
return <div>Sign in to be able to suggest themes</div>;
|
||||
}
|
||||
|
||||
// if (!token) {
|
||||
// return <div>Sign in to be able to suggest themes</div>;
|
||||
// }
|
||||
if (!hasJoined) {
|
||||
return (
|
||||
<div className="p-6 bg-gray-100 dark:bg-gray-800 min-h-screen">
|
||||
<h1 className="text-2xl font-bold text-gray-800 dark:text-white mb-6">
|
||||
Join the Jam First
|
||||
</h1>
|
||||
<p className="text-gray-600 dark:text-gray-400">
|
||||
You need to join the current jam before you can suggest themes.
|
||||
</p>
|
||||
<button
|
||||
onClick={() => {
|
||||
if (activeJamResponse?.jam?.id !== undefined) {
|
||||
joinJam(activeJamResponse.jam.id);
|
||||
}
|
||||
}}
|
||||
className="mt-4 px-6 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600"
|
||||
>
|
||||
Join Jam
|
||||
</button>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// // Render message if not in Suggestion phase
|
||||
// if (activeJamResponse?.phase !== "Suggestion") {
|
||||
// return (
|
||||
// <div className="p-6 bg-gray-100 dark:bg-gray-800 min-h-screen">
|
||||
// <h1 className="text-2xl font-bold text-gray-800 dark:text-white mb-6">
|
||||
// Not in Suggestion Phase
|
||||
// </h1>
|
||||
// <p className="text-gray-600 dark:text-gray-400">
|
||||
// The current phase is{" "}
|
||||
// <strong>{activeJamResponse?.phase || "Unknown"}</strong>. Please come
|
||||
// back during the Suggestion phase.
|
||||
// </p>
|
||||
// </div>
|
||||
// );
|
||||
// }
|
||||
// Render message if not in Suggestion phase
|
||||
if (activeJamResponse?.phase !== "Suggestion") {
|
||||
return (
|
||||
<div className="p-6 bg-gray-100 dark:bg-gray-800 min-h-screen">
|
||||
<h1 className="text-2xl font-bold text-gray-800 dark:text-white mb-6">
|
||||
Not in Suggestion Phase
|
||||
</h1>
|
||||
<p className="text-gray-600 dark:text-gray-400">
|
||||
The current phase is{" "}
|
||||
<strong>{activeJamResponse?.phase || "Unknown"}</strong>. Please come
|
||||
back during the Suggestion phase.
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// return (
|
||||
// <div className="max-w-md mx-auto mt-8 p-6 bg-white dark:bg-gray-800 rounded-lg shadow-md">
|
||||
// <h2 className="text-xl font-bold text-gray-800 dark:text-white mb-4">
|
||||
// Submit Your Theme Suggestion
|
||||
// </h2>
|
||||
return (
|
||||
<div className="max-w-md mx-auto mt-8 p-6 bg-white dark:bg-gray-800 rounded-lg shadow-md">
|
||||
<h2 className="text-xl font-bold text-gray-800 dark:text-white mb-4">
|
||||
Submit Your Theme Suggestion
|
||||
</h2>
|
||||
|
||||
// {/* Hide form if user has reached their limit */}
|
||||
// {userSuggestions.length < themeLimit ? (
|
||||
// <form onSubmit={handleSubmit} className="flex flex-col gap-4">
|
||||
// <textarea
|
||||
// className="w-full p-3 border rounded-lg focus:outline-none text-gray-600 focus:ring focus:ring-blue-300 dark:bg-gray-700 dark:text-white"
|
||||
// placeholder="Enter your theme suggestion..."
|
||||
// value={suggestion}
|
||||
// onChange={(e) => {
|
||||
// if (e.target.value.length <= 32) {
|
||||
// setSuggestion(e.target.value);
|
||||
// }
|
||||
// }}
|
||||
// rows={1}
|
||||
// maxLength={32}
|
||||
// ></textarea>
|
||||
// {errorMessage && (
|
||||
// <p className="text-red-500 text-sm">{errorMessage}</p>
|
||||
// )}
|
||||
// {successMessage && (
|
||||
// <p className="text-green-500 text-sm">{successMessage}</p>
|
||||
// )}
|
||||
// <button
|
||||
// type="submit"
|
||||
// className={`w-full py-2 px-4 bg-blue-500 text-white font-semibold rounded-lg shadow-md hover:bg-blue-600 focus:outline-none focus:ring focus:ring-blue-300 ${
|
||||
// loading ? "opacity-50 cursor-not-allowed" : ""
|
||||
// }`}
|
||||
// disabled={loading}
|
||||
// >
|
||||
// {loading ? "Submitting..." : "Submit Suggestion"}
|
||||
// </button>
|
||||
// </form>
|
||||
// ) : (
|
||||
// <p className="text-yellow-500 text-sm">
|
||||
// You've reached your theme suggestion limit for this jam!
|
||||
// </p>
|
||||
// )}
|
||||
{/* Hide form if user has reached their limit */}
|
||||
{userSuggestions.length < themeLimit ? (
|
||||
<form onSubmit={handleSubmit} className="flex flex-col gap-4">
|
||||
<textarea
|
||||
className="w-full p-3 border rounded-lg focus:outline-none text-gray-600 focus:ring focus:ring-blue-300 dark:bg-gray-700 dark:text-white"
|
||||
placeholder="Enter your theme suggestion..."
|
||||
value={suggestion}
|
||||
onChange={(e) => {
|
||||
if (e.target.value.length <= 32) {
|
||||
setSuggestion(e.target.value);
|
||||
}
|
||||
}}
|
||||
rows={1}
|
||||
maxLength={32}
|
||||
></textarea>
|
||||
{errorMessage && (
|
||||
<p className="text-red-500 text-sm">{errorMessage}</p>
|
||||
)}
|
||||
{successMessage && (
|
||||
<p className="text-green-500 text-sm">{successMessage}</p>
|
||||
)}
|
||||
<button
|
||||
type="submit"
|
||||
className={`w-full py-2 px-4 bg-blue-500 text-white font-semibold rounded-lg shadow-md hover:bg-blue-600 focus:outline-none focus:ring focus:ring-blue-300 ${
|
||||
loading ? "opacity-50 cursor-not-allowed" : ""
|
||||
}`}
|
||||
disabled={loading}
|
||||
>
|
||||
{loading ? "Submitting..." : "Submit Suggestion"}
|
||||
</button>
|
||||
</form>
|
||||
) : (
|
||||
<p className="text-yellow-500 text-sm">
|
||||
You've reached your theme suggestion limit for this jam!
|
||||
</p>
|
||||
)}
|
||||
|
||||
// {/* List of user's suggestions */}
|
||||
// <div className="mt-6">
|
||||
// <h3 className="text-lg font-semibold text-gray-800 dark:text-white mb-4">
|
||||
// Your Suggestions
|
||||
// </h3>
|
||||
// {userSuggestions.length > 0 ? (
|
||||
// <ul className="space-y-4">
|
||||
// {userSuggestions.map((suggestion) => (
|
||||
// <li
|
||||
// key={suggestion.id}
|
||||
// className="flex justify-between items-center text-gray-400 bg-gray-100 dark:bg-gray-700 p-3 rounded-lg shadow-sm"
|
||||
// >
|
||||
// <span>{suggestion.suggestion}</span>
|
||||
// <button
|
||||
// onClick={() => handleDelete(suggestion.id)}
|
||||
// className="text-red-500 hover:text-red-700 font-semibold"
|
||||
// >
|
||||
// Delete
|
||||
// </button>
|
||||
// </li>
|
||||
// ))}
|
||||
// </ul>
|
||||
// ) : (
|
||||
// <p className="text-gray-600 dark:text-gray-400">
|
||||
// You haven't submitted any suggestions yet.
|
||||
// </p>
|
||||
// )}
|
||||
// </div>
|
||||
// </div>
|
||||
// );
|
||||
return <></>;
|
||||
{/* List of user's suggestions */}
|
||||
<div className="mt-6">
|
||||
<h3 className="text-lg font-semibold text-gray-800 dark:text-white mb-4">
|
||||
Your Suggestions
|
||||
</h3>
|
||||
{userSuggestions.length > 0 ? (
|
||||
<ul className="space-y-4">
|
||||
{userSuggestions.map((suggestion) => (
|
||||
<li
|
||||
key={suggestion.id}
|
||||
className="flex justify-between items-center text-gray-400 bg-gray-100 dark:bg-gray-700 p-3 rounded-lg shadow-sm"
|
||||
>
|
||||
<span>{suggestion.suggestion}</span>
|
||||
<button
|
||||
onClick={() => handleDelete(suggestion.id)}
|
||||
className="text-red-500 hover:text-red-700 font-semibold"
|
||||
>
|
||||
Delete
|
||||
</button>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
) : (
|
||||
<p className="text-gray-600 dark:text-gray-400">
|
||||
You haven't submitted any suggestions yet.
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -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<ActiveJamResponse | null>(null);
|
||||
// const [hasJoined, setHasJoined] = useState<boolean>(false);
|
||||
// const [phaseLoading, setPhaseLoading] = useState(true); // Loading state for fetching phase
|
||||
// const token = getCookie("token");
|
||||
const [themes, setThemes] = useState<ThemeType[]>([]);
|
||||
const [loading, setLoading] = useState(false);
|
||||
const [activeJamResponse, setActiveJamResponse] = useState<ActiveJamResponse | null>(null);
|
||||
const [hasJoined, setHasJoined] = useState<boolean>(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 <div>Loading...</div>;
|
||||
}
|
||||
|
||||
// init();
|
||||
// }, []);
|
||||
if (activeJamResponse?.phase !== "Voting") {
|
||||
return (
|
||||
<div className="p-4 bg-gray-100 dark:bg-gray-800 min-h-screen">
|
||||
<h1 className="text-2xl font-bold text-gray-800 dark:text-white mb-4">
|
||||
Not in Voting Phase
|
||||
</h1>
|
||||
<p className="text-gray-600 dark:text-gray-400">
|
||||
The current phase is{" "}
|
||||
<strong>{activeJamResponse?.phase || "Unknown"}</strong>. Please come
|
||||
back during the Voting phase.
|
||||
</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// if (phaseLoading || loading) {
|
||||
// return <div>Loading...</div>;
|
||||
// }
|
||||
const loggedIn = getCookie("token");
|
||||
|
||||
// if (!hasJoined) {
|
||||
// return (
|
||||
// <div className="p-6 bg-gray-100 dark:bg-gray-800 min-h-screen">
|
||||
// <h1 className="text-2xl font-bold text-gray-800 dark:text-white mb-6">
|
||||
// Join the Jam First
|
||||
// </h1>
|
||||
// <p className="text-gray-600 dark:text-gray-400">
|
||||
// You need to join the current jam before you can vote themes.
|
||||
// </p>
|
||||
// <button
|
||||
// onClick={() => joinJam(activeJamResponse?.jam?.id)}
|
||||
// className="mt-4 px-6 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600"
|
||||
// >
|
||||
// Join Jam
|
||||
// </button>
|
||||
// </div>
|
||||
// );
|
||||
// }
|
||||
if (!loggedIn) {
|
||||
return <div>Sign in to be able to vote</div>;
|
||||
}
|
||||
|
||||
// if (activeJamResponse?.phase !== "Voting") {
|
||||
// return (
|
||||
// <div className="p-4 bg-gray-100 dark:bg-gray-800 min-h-screen">
|
||||
// <h1 className="text-2xl font-bold text-gray-800 dark:text-white mb-4">
|
||||
// Not in Voting Phase
|
||||
// </h1>
|
||||
// <p className="text-gray-600 dark:text-gray-400">
|
||||
// The current phase is{" "}
|
||||
// <strong>{activeJamResponse?.phase || "Unknown"}</strong>. Please come
|
||||
// back during the Voting phase.
|
||||
// </p>
|
||||
// </div>
|
||||
// );
|
||||
// }
|
||||
if (!hasJoined) {
|
||||
return (
|
||||
<div className="p-6 bg-gray-100 dark:bg-gray-800 min-h-screen">
|
||||
<h1 className="text-2xl font-bold text-gray-800 dark:text-white mb-6">
|
||||
Join the Jam First
|
||||
</h1>
|
||||
<p className="text-gray-600 dark:text-gray-400">
|
||||
You need to join the current jam before you can vote themes.
|
||||
</p>
|
||||
<button
|
||||
onClick={() => {
|
||||
if (activeJamResponse?.jam?.id !== undefined) {
|
||||
joinJam(activeJamResponse.jam.id);
|
||||
}
|
||||
}}
|
||||
className="mt-4 px-6 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600"
|
||||
>
|
||||
Join Jam
|
||||
</button>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
// const loggedIn = getCookie("token");
|
||||
return (
|
||||
<div className="p-3 bg-gray-100 dark:bg-gray-800 min-h-screen">
|
||||
<h1 className="text-2xl font-bold text-gray-800 dark:text-white mb-4">
|
||||
Voting Phase
|
||||
</h1>
|
||||
<div className="space-y-2">
|
||||
{themes.map((theme) => (
|
||||
<div
|
||||
key={theme.id}
|
||||
className="p-3 bg-white dark:bg-gray-900 rounded-lg shadow-md flex items-center"
|
||||
>
|
||||
{/* Voting Buttons */}
|
||||
<div className="flex gap-1 mr-4">
|
||||
<button
|
||||
onClick={() => handleVote(theme.id, -1)}
|
||||
className={`px-3 py-2 rounded-lg ${
|
||||
theme.votingScore === -1
|
||||
? "bg-red-500 text-white"
|
||||
: "bg-gray-300 text-black hover:bg-red-500 hover:text-white"
|
||||
}`}
|
||||
disabled={loading}
|
||||
>
|
||||
-1
|
||||
</button>
|
||||
<button
|
||||
onClick={() => handleVote(theme.id, 0)}
|
||||
className={`px-3 py-2 rounded-lg ${
|
||||
theme.votingScore === 0
|
||||
? "bg-gray-500 text-white"
|
||||
: "bg-gray-300 text-black hover:bg-gray-500 hover:text-white"
|
||||
}`}
|
||||
disabled={loading}
|
||||
>
|
||||
0
|
||||
</button>
|
||||
<button
|
||||
onClick={() => handleVote(theme.id, +1)}
|
||||
className={`px-3 py-2 rounded-lg ${
|
||||
theme.votingScore === +1
|
||||
? "bg-green-500 text-white"
|
||||
: "bg-gray-300 text-black hover:bg-green-500 hover:text-white"
|
||||
}`}
|
||||
disabled={loading}
|
||||
>
|
||||
+1
|
||||
</button>
|
||||
</div>
|
||||
|
||||
// if (!loggedIn) {
|
||||
// return <div>Sign in to be able to vote</div>;
|
||||
// }
|
||||
|
||||
// return (
|
||||
// <div className="p-3 bg-gray-100 dark:bg-gray-800 min-h-screen">
|
||||
// <h1 className="text-2xl font-bold text-gray-800 dark:text-white mb-4">
|
||||
// Voting Phase
|
||||
// </h1>
|
||||
// <div className="space-y-2">
|
||||
// {themes.map((theme) => (
|
||||
// <div
|
||||
// key={theme.id}
|
||||
// className="p-3 bg-white dark:bg-gray-900 rounded-lg shadow-md flex items-center"
|
||||
// >
|
||||
// {/* Voting Buttons */}
|
||||
// <div className="flex gap-1 mr-4">
|
||||
// <button
|
||||
// onClick={() => handleVote(theme.id, -1)}
|
||||
// className={`px-3 py-2 rounded-lg ${
|
||||
// theme.votingScore === -1
|
||||
// ? "bg-red-500 text-white"
|
||||
// : "bg-gray-300 text-black hover:bg-red-500 hover:text-white"
|
||||
// }`}
|
||||
// disabled={loading}
|
||||
// >
|
||||
// -1
|
||||
// </button>
|
||||
// <button
|
||||
// onClick={() => handleVote(theme.id, 0)}
|
||||
// className={`px-3 py-2 rounded-lg ${
|
||||
// theme.votingScore === 0
|
||||
// ? "bg-gray-500 text-white"
|
||||
// : "bg-gray-300 text-black hover:bg-gray-500 hover:text-white"
|
||||
// }`}
|
||||
// disabled={loading}
|
||||
// >
|
||||
// 0
|
||||
// </button>
|
||||
// <button
|
||||
// onClick={() => handleVote(theme.id, +1)}
|
||||
// className={`px-3 py-2 rounded-lg ${
|
||||
// theme.votingScore === +1
|
||||
// ? "bg-green-500 text-white"
|
||||
// : "bg-gray-300 text-black hover:bg-green-500 hover:text-white"
|
||||
// }`}
|
||||
// disabled={loading}
|
||||
// >
|
||||
// +1
|
||||
// </button>
|
||||
// </div>
|
||||
|
||||
// {/* Theme Suggestion */}
|
||||
// <div className="text-gray-800 dark:text-white">
|
||||
// {theme.suggestion}
|
||||
// </div>
|
||||
// </div>
|
||||
// ))}
|
||||
// </div>
|
||||
// </div>
|
||||
// );
|
||||
{/* Theme Suggestion */}
|
||||
<div className="text-gray-800 dark:text-white">
|
||||
{theme.suggestion}
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -74,8 +74,8 @@ export async function hasJoinedCurrentJam(): Promise<boolean> {
|
|||
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: {
|
||||
|
|
|
@ -9,4 +9,5 @@ export interface JamType {
|
|||
startTime: Date;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
themePerUser: number;
|
||||
}
|
||||
|
|
6
src/types/ThemeType.ts
Normal file
6
src/types/ThemeType.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
export interface ThemeType {
|
||||
id: number;
|
||||
suggestion: string;
|
||||
slaughterScore: number;
|
||||
votingScore: number;
|
||||
}
|
Loading…
Reference in a new issue