Auto stash before merge of "main" and "origin/main"

This commit is contained in:
boragenel 2025-01-21 11:53:14 +03:00
parent 440b9d685d
commit e2a436bda3
6 changed files with 164 additions and 26 deletions

View file

@ -1,15 +1,56 @@
"use client"
import { Calendar } from "lucide-react"; import { Calendar } from "lucide-react";
import { useEffect, useState } from "react";
import { getCurrentJam, ActiveJamResponse } from "../../helpers/jam"
import ThemeSuggestions from "../themes";
export default function JamHeader() { export default function JamHeader() {
const [activeJamResponse, setActiveJam] = useState<ActiveJamResponse | null>(null);
useEffect(() => {
const fetchActiveJam = async () => {
const jamData = await getCurrentJam();
setActiveJam(jamData);
};
fetchActiveJam();
}, []);
return ( return (
<div className="bg-[#7090b9] dark:bg-[#124a88] flex rounded-2xl overflow-hidden text-white transition-color duration-250"> <div className="bg-[#7090b9] dark:bg-[#124a88] flex flex-col rounded-2xl overflow-hidden text-white transition-color duration-250">
<div className="bg-[#85bdd2] dark:bg-[#1892b3] p-4 px-6 flex items-center gap-2 font-bold transition-color duration-250"> {/* Jam Header */}
<Calendar /> <div className="flex">
<p>Down2Jam 1</p> <div className="bg-[#85bdd2] dark:bg-[#1892b3] p-4 px-6 flex items-center gap-2 font-bold transition-color duration-250">
</div> <Calendar />
<div className="p-4 px-6 font-bold"> <p>
<p>April 4th - 7th</p> {activeJamResponse?.jam && activeJamResponse.phase ? (
<span className="text-sm font-normal">
{activeJamResponse?.jam.name} - {activeJamResponse.phase} Phase
</span>
) : (
<span className="text-sm font-normal">(No Active Jams)</span>
)}
</p>
</div>
<div className="p-4 px-6 font-bold">
<p>April 4th - 7th</p>
</div>
</div> </div>
{/* Conditional Link for Suggestion Phase */}
{activeJamResponse?.phase === "Suggestion" && (
<div className="bg-gray-100 dark:bg-gray-800 p-4 text-center rounded-b-2x transition-color duration-250">
<a
href="/theme-suggestion"
className="text-blue-300 dark:text-blue-500 hover:underline font-semibold transition-color duration-250"
>
Go to Theme Suggestion Page
</a>
<ThemeSuggestions />
</div>
)}
</div> </div>
); );
} }

View file

@ -27,7 +27,8 @@ export default function MobileNavbar() {
useEffect(() => { useEffect(() => {
loadUser(); loadUser();
async function loadUser() { async function loadUser() {
const currentJam = await getCurrentJam(); const currentJamResponse = await getCurrentJam();
const currentJam = currentJamResponse?.jam;
setJam(currentJam); setJam(currentJam);
if (!hasCookie("token")) { if (!hasCookie("token")) {

View file

@ -24,7 +24,7 @@ import NextImage from "next/image";
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
import { usePathname } from "next/navigation"; import { usePathname } from "next/navigation";
import { getCookie, hasCookie } from "@/helpers/cookie"; import { getCookie, hasCookie } from "@/helpers/cookie";
import { getCurrentJam, joinJam } from "@/helpers/jam"; import { getCurrentJam, joinJam, ActiveJamResponse } from "@/helpers/jam";
import { JamType } from "@/types/JamType"; import { JamType } from "@/types/JamType";
import { UserType } from "@/types/UserType"; import { UserType } from "@/types/UserType";
import NavbarUser from "./PCNavbarUser"; import NavbarUser from "./PCNavbarUser";
@ -57,7 +57,8 @@ export default function PCNavbar() {
useEffect(() => { useEffect(() => {
loadUser(); loadUser();
async function loadUser() { async function loadUser() {
const currentJam = await getCurrentJam(); const jamResponse = await getCurrentJam();
const currentJam = jamResponse?.jam;
setJam(currentJam); setJam(currentJam);
if (!hasCookie("token")) { if (!hasCookie("token")) {
@ -141,7 +142,8 @@ export default function PCNavbar() {
icon={<CalendarPlus />} icon={<CalendarPlus />}
name="Join jam" name="Join jam"
onPress={async () => { onPress={async () => {
const currentJam = await getCurrentJam(); const currentJamResponse = await getCurrentJam();
const currentJam = currentJamResponse?.jam;
if (!currentJam) { if (!currentJam) {
toast.error("There is no jam to join"); toast.error("There is no jam to join");

View file

@ -0,0 +1,81 @@
"use client";
import React, { useState } from "react";
export default function ThemeSuggestions() {
const [suggestion, setSuggestion] = useState("");
const [loading, setLoading] = useState(false);
const [successMessage, setSuccessMessage] = useState("");
const [errorMessage, setErrorMessage] = useState("");
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setLoading(true);
setSuccessMessage("");
setErrorMessage("");
if (!suggestion.trim()) {
setErrorMessage("Suggestion cannot be empty.");
setLoading(false);
return;
}
try {
const userId = localStorage.getItem("userId");
const response = await fetch("http://localhost:3005/api/v1/themes/suggestion", {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${localStorage.getItem("accessToken")}`,
},
credentials: "include",
body: JSON.stringify({ suggestionText: suggestion, userId }),
});
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.error || "Failed to submit suggestion.");
}
setSuccessMessage("Suggestion added successfully!");
setSuggestion(""); // Clear the input field
} catch (error: any) {
console.error("Error submitting suggestion:", error.message);
setErrorMessage(error.message || "An unexpected error occurred.");
} finally {
setLoading(false);
}
};
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>
<form onSubmit={handleSubmit} className="flex flex-col gap-4">
<textarea
className="w-full p-3 border rounded-lg focus:outline-none focus:ring focus:ring-blue-300 dark:bg-gray-700 dark:text-white"
placeholder="Enter your theme suggestion..."
value={suggestion}
onChange={(e) => setSuggestion(e.target.value)}
rows={4}
></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>
</div>
);
}

View file

@ -2,6 +2,11 @@ import { JamType } from "@/types/JamType";
import { getCookie } from "./cookie"; import { getCookie } from "./cookie";
import { toast } from "react-toastify"; import { toast } from "react-toastify";
export interface ActiveJamResponse {
phase: string;
jam: JamType | null; // Jam will be null if no active jam is found
}
export async function getJams(): Promise<JamType[]> { export async function getJams(): Promise<JamType[]> {
const response = await fetch( const response = await fetch(
process.env.NEXT_PUBLIC_MODE === "PROD" process.env.NEXT_PUBLIC_MODE === "PROD"
@ -12,24 +17,29 @@ export async function getJams(): Promise<JamType[]> {
return response.json(); return response.json();
} }
export async function getCurrentJam(): Promise<JamType | null> { export async function getCurrentJam(): Promise<ActiveJamResponse | null> {
const jams = await getJams();
const now = new Date(); try {
const response = await fetch(
process.env.NEXT_PUBLIC_MODE === "PROD"
? "https://d2jam.com/api/v1/jams"
: "http://localhost:3005/api/v1/jams/active"
);
// Get only jams that happen in the future // Parse JSON response
const futureJams = jams.filter((jam) => new Date(jam.startTime) > now); const data = await response.json();
// If theres no jams happening returns null // Return the phase and jam details
if (futureJams.length === 0) { return {
return null; phase: data.phase,
} jam: data.jam,
};
// Sort future jams by startTime (earliest first) } catch (error) {
futureJams.sort( console.error("Error fetching active jam:", error);
(a, b) => new Date(a.startTime).getTime() - new Date(b.startTime).getTime() return null;
); }
return futureJams[0];
} }
export async function joinJam(jamId: number) { export async function joinJam(jamId: number) {

View file

@ -1,8 +1,11 @@
export interface JamType { export interface JamType {
id: number; id: number;
name: string; name: string;
ratingHours: number; suggestionHours:number;
slaughterHours: number; slaughterHours: number;
votingHours:number;
jammingHours:number;
ratingHours: number;
startTime: Date; startTime: Date;
createdAt: Date; createdAt: Date;
updatedAt: Date; updatedAt: Date;