From d8894cd0eb79caba2f829439d551b63d3107f6c1 Mon Sep 17 00:00:00 2001 From: boragenel Date: Thu, 23 Jan 2025 12:18:49 +0300 Subject: [PATCH] reenabled phase pages --- src/components/jam-header/index.tsx | 7 ++-- src/components/themes/theme-slaughter.tsx | 45 ++++++++++++----------- src/components/themes/theme-suggest.tsx | 12 +++--- src/components/themes/theme-vote.tsx | 42 ++++++++++----------- 4 files changed, 53 insertions(+), 53 deletions(-) diff --git a/src/components/jam-header/index.tsx b/src/components/jam-header/index.tsx index 478ebe2..db20660 100644 --- a/src/components/jam-header/index.tsx +++ b/src/components/jam-header/index.tsx @@ -111,11 +111,10 @@ export default function JamHeader() { - {/* Phase-Specific Display */} {activeJamResponse?.phase === "Suggestion" && (
Go to Theme Suggestion @@ -126,7 +125,7 @@ export default function JamHeader() { {activeJamResponse?.phase === "Survival" && (
Go to Theme Survival @@ -137,7 +136,7 @@ export default function JamHeader() { {activeJamResponse?.phase === "Voting" && (
Go to Theme Voting diff --git a/src/components/themes/theme-slaughter.tsx b/src/components/themes/theme-slaughter.tsx index 4715d4b..0fb57fa 100644 --- a/src/components/themes/theme-slaughter.tsx +++ b/src/components/themes/theme-slaughter.tsx @@ -181,6 +181,29 @@ export default function ThemeSlaughter() { return
Loading...
; } + + + // 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"); + if (!loggedIn) { + return
Sign in to be able to join the Theme Survival
; + } + if (!hasJoined) { return (
@@ -204,28 +227,6 @@ export default function ThemeSlaughter() { ); } - // 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"); - - if (!loggedIn) { - return
Sign in to be able to join the Theme Survival
; - } - return (
{/* Left Side */} diff --git a/src/components/themes/theme-suggest.tsx b/src/components/themes/theme-suggest.tsx index 40925c0..95ca5b7 100644 --- a/src/components/themes/theme-suggest.tsx +++ b/src/components/themes/theme-suggest.tsx @@ -166,6 +166,12 @@ export default function ThemeSuggestions() { return
Loading...
; } + const token = getCookie("token"); + + if (!token) { + return
Sign in to be able to suggest themes
; + } + if (!hasJoined) { return (
@@ -189,12 +195,6 @@ export default function ThemeSuggestions() { ); } - const token = getCookie("token"); - - if (!token) { - return
Sign in to be able to suggest themes
; - } - // Render message if not in Suggestion phase if (activeJamResponse?.phase !== "Suggestion") { return ( diff --git a/src/components/themes/theme-vote.tsx b/src/components/themes/theme-vote.tsx index 19a9547..840bd9e 100644 --- a/src/components/themes/theme-vote.tsx +++ b/src/components/themes/theme-vote.tsx @@ -144,6 +144,27 @@ export default function VotingPage() { 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. +

+
+ ); + } + + const loggedIn = getCookie("token"); + + if (!loggedIn) { + return
Sign in to be able to vote
; + } + if (!hasJoined) { return (
@@ -167,27 +188,6 @@ export default function VotingPage() { ); } - if (activeJamResponse?.phase !== "Voting") { - return ( -
-

- Not in Voting Phase -

-

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

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