mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Fix timer
This commit is contained in:
parent
7eb95b8ce0
commit
d980d11be0
1 changed files with 24 additions and 10 deletions
|
@ -23,19 +23,23 @@ export default function Timers() {
|
||||||
fetchCurrentJamPhase();
|
fetchCurrentJamPhase();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
if (activeJamResponse && activeJamResponse.jam) {
|
||||||
|
const startTimeUTC = new Date(
|
||||||
if(activeJamResponse && activeJamResponse.jam)
|
activeJamResponse.jam.startTime
|
||||||
{
|
).toISOString();
|
||||||
const startTimeUTC = new Date(activeJamResponse.jam.startTime).toISOString();
|
|
||||||
console.log(startTimeUTC);
|
console.log(startTimeUTC);
|
||||||
|
|
||||||
if (activeJamResponse.phase == "Suggestion" || activeJamResponse.phase == "Survival" || activeJamResponse.phase == "Voting") {
|
if (
|
||||||
|
activeJamResponse.phase == "Suggestion" ||
|
||||||
|
activeJamResponse.phase == "Survival" ||
|
||||||
|
activeJamResponse.phase == "Voting" ||
|
||||||
|
activeJamResponse.phase == "Upcoming Jam"
|
||||||
|
) {
|
||||||
return (
|
return (
|
||||||
<div className="text-[#333] dark:text-white transition-color duration-250">
|
<div className="text-[#333] dark:text-white transition-color duration-250">
|
||||||
<Timer
|
<Timer
|
||||||
name="Jam starts in"
|
name="Jam starts in"
|
||||||
targetDate={new Date(activeJamResponse.jam.startTime) }
|
targetDate={new Date(activeJamResponse.jam.startTime)}
|
||||||
/>
|
/>
|
||||||
<Spacer y={8} />
|
<Spacer y={8} />
|
||||||
<p>Site under construction</p>
|
<p>Site under construction</p>
|
||||||
|
@ -46,7 +50,12 @@ export default function Timers() {
|
||||||
<div className="text-[#333] dark:text-white transition-color duration-250">
|
<div className="text-[#333] dark:text-white transition-color duration-250">
|
||||||
<Timer
|
<Timer
|
||||||
name="Jam ends in"
|
name="Jam ends in"
|
||||||
targetDate={ new Date(new Date(activeJamResponse.jam.startTime).getTime() + (activeJamResponse.jam.jammingHours * 60 * 60 * 1000))}
|
targetDate={
|
||||||
|
new Date(
|
||||||
|
new Date(activeJamResponse.jam.startTime).getTime() +
|
||||||
|
activeJamResponse.jam.jammingHours * 60 * 60 * 1000
|
||||||
|
)
|
||||||
|
}
|
||||||
/>
|
/>
|
||||||
<Spacer y={8} />
|
<Spacer y={8} />
|
||||||
<p>Site under construction</p>
|
<p>Site under construction</p>
|
||||||
|
@ -57,7 +66,13 @@ export default function Timers() {
|
||||||
<div className="text-[#333] dark:text-white transition-color duration-250">
|
<div className="text-[#333] dark:text-white transition-color duration-250">
|
||||||
<Timer
|
<Timer
|
||||||
name="Rating ends in"
|
name="Rating ends in"
|
||||||
targetDate={new Date(new Date(activeJamResponse.jam.startTime).getTime() + (activeJamResponse.jam.jammingHours * 60 * 60 * 1000) + (activeJamResponse.jam.ratingHours * 60 * 60 * 1000))}
|
targetDate={
|
||||||
|
new Date(
|
||||||
|
new Date(activeJamResponse.jam.startTime).getTime() +
|
||||||
|
activeJamResponse.jam.jammingHours * 60 * 60 * 1000 +
|
||||||
|
activeJamResponse.jam.ratingHours * 60 * 60 * 1000
|
||||||
|
)
|
||||||
|
}
|
||||||
/>
|
/>
|
||||||
<Spacer y={8} />
|
<Spacer y={8} />
|
||||||
<p>Site under construction</p>
|
<p>Site under construction</p>
|
||||||
|
@ -73,5 +88,4 @@ export default function Timers() {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue