From a2307ec34e6f5be91cb2a5a96621e6e640906aad Mon Sep 17 00:00:00 2001
From: Ategon
- {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