diff --git a/src/client/src/FrontPage.js b/src/client/src/FrontPage.js
index 99687b5..3cfc07d 100644
--- a/src/client/src/FrontPage.js
+++ b/src/client/src/FrontPage.js
@@ -56,6 +56,34 @@ function TournamentListItem(props) {
;
}
}
+
+ function Countdown() {
+ const [remainingTime, setremainingTime] = React.useState(Math.abs(props.tournament.startTime - new Date()))
+ React.useEffect(() => {
+ const interval = setInterval(() =>
+ setremainingTime(Math.abs(props.tournament.startTime - new Date()))
+ , 1000);
+ return () => {
+ clearInterval(interval);
+ };
+ }, []);
+
+ let remainingDays = Math.floor(remainingTime / (1000 * 60 * 60 * 24));
+ let remainingHours = Math.floor(remainingTime / (1000 * 60 * 60)) - remainingDays * 24
+ let remainingMins = Math.floor(remainingTime / (1000 * 60)) - (remainingDays * 24 * 60 + remainingHours * 60)
+ let remainingSecs = Math.floor(remainingTime / 1000) - (remainingDays * 24 * 60 * 60 + remainingHours * 60 * 60 + remainingMins * 60)
+ if (props.tournament.startTime < new Date()) {
+ return (
+ Started!
+ )
+ } else {
+ return(
+ Starts in: {remainingDays} Days, {remainingHours} Hours, {remainingMins} Minutes and {remainingSecs} Seconds
+
+ )
+ }
+ }
+
return (
@@ -73,7 +101,7 @@ function TournamentListItem(props) {
End: {props.tournament.endTime.toLocaleString()}
- Players {props.tournament.teamCount} / {props.tournament.teamLimit}
+ Players: {props.tournament.teamCount} / {props.tournament.teamLimit}
@@ -92,6 +120,8 @@ function TournamentListItem(props) {
+
+
diff --git a/src/client/src/TournamentHistory.js b/src/client/src/TournamentHistory.js
index e874523..5845096 100644
--- a/src/client/src/TournamentHistory.js
+++ b/src/client/src/TournamentHistory.js
@@ -51,7 +51,7 @@ function shorten(description, maxLength) {
End: {props.tournament.endTime.toLocaleString()}
- Players {props.tournament.teamCount} / {props.tournament.teamLimit}
+ Players: {props.tournament.teamCount} / {props.tournament.teamLimit}