diff --git a/src/app/theme-slaughter/page.tsx b/src/app/theme-slaughter/page.tsx
index 646a0b3..bbf91be 100644
--- a/src/app/theme-slaughter/page.tsx
+++ b/src/app/theme-slaughter/page.tsx
@@ -1,6 +1,5 @@
import Timers from "@/components/timers";
import Streams from "@/components/streams";
-import JamHeader from "@/components/jam-header";
import ThemeSlaughter from "@/components/themes/theme-slaughter";
export default async function Home() {
@@ -15,4 +14,4 @@ export default async function Home() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/theme-suggestions/page.tsx b/src/app/theme-suggestions/page.tsx
index 59df2fc..b6ddc17 100644
--- a/src/app/theme-suggestions/page.tsx
+++ b/src/app/theme-suggestions/page.tsx
@@ -1,6 +1,5 @@
import Timers from "@/components/timers";
import Streams from "@/components/streams";
-import JamHeader from "@/components/jam-header";
import ThemeSuggestions from "@/components/themes/theme-suggest";
export default async function Home() {
@@ -15,4 +14,4 @@ export default async function Home() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/theme-voting/page.tsx b/src/app/theme-voting/page.tsx
index 2c9da8b..8243a9f 100644
--- a/src/app/theme-voting/page.tsx
+++ b/src/app/theme-voting/page.tsx
@@ -1,6 +1,5 @@
import Timers from "@/components/timers";
import Streams from "@/components/streams";
-import JamHeader from "@/components/jam-header";
import ThemeVoting from "@/components/themes/theme-vote";
export default async function Home() {
@@ -15,4 +14,4 @@ export default async function Home() {
);
-}
\ No newline at end of file
+}
diff --git a/src/components/jam-header/index.tsx b/src/components/jam-header/index.tsx
index dddfb60..478ebe2 100644
--- a/src/components/jam-header/index.tsx
+++ b/src/components/jam-header/index.tsx
@@ -5,7 +5,8 @@ import { useEffect, useState } from "react";
import { getCurrentJam, ActiveJamResponse } from "../../helpers/jam";
export default function JamHeader() {
- const [activeJamResponse, setActiveJamResponse] = useState
- {activeJamResponse?.jam ? ( - <> - {new Date(activeJamResponse.jam.startTime).toLocaleDateString('en-US', { - month: 'long', - })} {new Date(activeJamResponse.jam.startTime).getDate()} - {getOrdinalSuffix(new Date(activeJamResponse.jam.startTime).getDate())} - {" - "} - {new Date(new Date(activeJamResponse.jam.startTime).getTime() + - (activeJamResponse.jam.jammingHours * 60 * 60 * 1000)).toLocaleDateString('en-US', { - month: 'long', - })} {new Date(new Date(activeJamResponse.jam.startTime).getTime() + - (activeJamResponse.jam.jammingHours * 60 * 60 * 1000)).getDate()} - {getOrdinalSuffix(new Date(new Date(activeJamResponse.jam.startTime).getTime() + - (activeJamResponse.jam.jammingHours * 60 * 60 * 1000)).getDate())} - > - ) : ( - "Dates TBA" - )} -
-+ {activeJamResponse?.jam ? ( + <> + {new Date(activeJamResponse.jam.startTime).toLocaleDateString( + "en-US", + { + month: "long", + } + )}{" "} + {new Date(activeJamResponse.jam.startTime).getDate()} + {getOrdinalSuffix( + new Date(activeJamResponse.jam.startTime).getDate() + )} + {" - "} + {new Date( + new Date(activeJamResponse.jam.startTime).getTime() + + activeJamResponse.jam.jammingHours * 60 * 60 * 1000 + ).toLocaleDateString("en-US", { + month: "long", + })}{" "} + {new Date( + new Date(activeJamResponse.jam.startTime).getTime() + + activeJamResponse.jam.jammingHours * 60 * 60 * 1000 + ).getDate()} + {getOrdinalSuffix( + new Date( + new Date(activeJamResponse.jam.startTime).getTime() + + activeJamResponse.jam.jammingHours * 60 * 60 * 1000 + ).getDate() + )} + > + ) : ( + "Dates TBA" + )} +
+ {/* Phase-Specific Display */} {activeJamResponse?.phase === "Suggestion" && (- The current phase is {activeJamResponse?.phase || "Unknown"}. Please come back during the Suggestion phase. + The current phase is{" "} + {activeJamResponse?.phase || "Unknown"}. Please come + back during the Suggestion phase.
); @@ -214,7 +224,7 @@ export default function ThemeSuggestions() { } }} rows={1} - maxLength={32} + maxLength={32} > {errorMessage && ({errorMessage}
@@ -234,7 +244,7 @@ export default function ThemeSuggestions() { ) : (- You've reached your theme suggestion limit for this jam! + You've reached your theme suggestion limit for this jam!
)} @@ -262,10 +272,10 @@ export default function ThemeSuggestions() { ) : (- You haven't submitted any suggestions yet. + You haven't submitted any suggestions yet.
)} ); -} \ No newline at end of file +} diff --git a/src/components/themes/theme-vote.tsx b/src/components/themes/theme-vote.tsx index ac5c028..ea16e2b 100644 --- a/src/components/themes/theme-vote.tsx +++ b/src/components/themes/theme-vote.tsx @@ -2,12 +2,17 @@ import React, { useState, useEffect } from "react"; import { getCookie } from "@/helpers/cookie"; -import { getCurrentJam, hasJoinedCurrentJam , ActiveJamResponse } from "@/helpers/jam"; +import { + getCurrentJam, + hasJoinedCurrentJam, + ActiveJamResponse, +} from "@/helpers/jam"; export default function VotingPage() { const [themes, setThemes] = useState([]); const [loading, setLoading] = useState(false); - const [activeJamResponse, setActiveJamResponse] = useState- The current phase is {activeJamResponse?.phase || "Unknown"}. Please come back during the Voting phase. + The current phase is{" "} + {activeJamResponse?.phase || "Unknown"}. Please come + back during the Voting phase.
Site under construction