From 7d369bf8fb231212cc1183099f31830c60f00524 Mon Sep 17 00:00:00 2001 From: ap-justin <89639563+ap-justin@users.noreply.github.com> Date: Tue, 24 Sep 2024 14:40:58 +0800 Subject: [PATCH] dashboard on maintenance --- .../Admin/Charity/Dashboard/Maintenance.tsx | 64 +++++++++++++++++++ src/pages/Admin/Charity/Dashboard/index.tsx | 2 +- 2 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 src/pages/Admin/Charity/Dashboard/Maintenance.tsx diff --git a/src/pages/Admin/Charity/Dashboard/Maintenance.tsx b/src/pages/Admin/Charity/Dashboard/Maintenance.tsx new file mode 100644 index 0000000000..3645beae11 --- /dev/null +++ b/src/pages/Admin/Charity/Dashboard/Maintenance.tsx @@ -0,0 +1,64 @@ +import { laira } from "assets/laira/laira"; +import { useEffect, useState } from "react"; + +export default function Component() { + const [time, setTime] = useState(120); // Start with 120 minutes (2 hours) + + useEffect(() => { + const updateTime = () => { + const now = new Date(); + const startTime = new Date(now); + startTime.setUTCHours(6, 30, 0, 0); + const endTime = new Date(startTime.getTime() + 2 * 60 * 60 * 1000); // 2 hours later + + if (now >= startTime && now < endTime) { + const remaining = Math.floor( + (endTime.getTime() - now.getTime()) / 60000 + ); + setTime(remaining); + } else if (now < startTime) { + setTime(120); // If before 6:30 UTC, show full 2 hours + } else { + setTime(0); // If after 8:30 UTC, show 0 + } + }; + + updateTime(); // Initial update + const interval = setInterval(updateTime, 60000); // Update every minute + + return () => clearInterval(interval); + }, []); + + const formatTime = (time: number) => { + const hours = Math.floor(time / 60); + const minutes = time % 60; + if (hours > 0) { + return `${hours} hour${hours > 1 ? "s" : ""} ${minutes} minute${minutes !== 1 ? "s" : ""}`; + } else { + return `${minutes} minute${minutes !== 1 ? "s" : ""}`; + } + }; + + return ( +
+

Dashboard

+
+

+ Your new dashboard experience is underway +

+ Laira jumping +
+

+ Please bear with us while we bring final pieces together 🙏 +

+

+ Changes are expected to be live in{" "} + {formatTime(time)} +

+
+ ); +} diff --git a/src/pages/Admin/Charity/Dashboard/index.tsx b/src/pages/Admin/Charity/Dashboard/index.tsx index fe1d3922d7..0b54130224 100644 --- a/src/pages/Admin/Charity/Dashboard/index.tsx +++ b/src/pages/Admin/Charity/Dashboard/index.tsx @@ -1 +1 @@ -export { default as Component } from "./Dashboard"; +export { default as Component } from "./Maintenance";