Co-authored-by: homarr-renovate[bot] <158783068+homarr-renovate[bot]@users.noreply.github.com> Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
72 lines
2.4 KiB
TypeScript
72 lines
2.4 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useMemo, useRef, useState } from "react";
|
|
import { Stack, Text } from "@mantine/core";
|
|
import dayjs from "dayjs";
|
|
import advancedFormat from "dayjs/plugin/advancedFormat";
|
|
import timezones from "dayjs/plugin/timezone";
|
|
import utc from "dayjs/plugin/utc";
|
|
|
|
import type { WidgetComponentProps } from "../definition";
|
|
|
|
dayjs.extend(advancedFormat);
|
|
dayjs.extend(utc);
|
|
dayjs.extend(timezones);
|
|
|
|
export default function ClockWidget({ options }: WidgetComponentProps<"clock">) {
|
|
const secondsFormat = options.showSeconds ? ":ss" : "";
|
|
const timeFormat = options.is24HourFormat ? `HH:mm${secondsFormat}` : `h:mm${secondsFormat} A`;
|
|
const dateFormat = options.dateFormat;
|
|
const timezone = options.useCustomTimezone ? options.timezone : Intl.DateTimeFormat().resolvedOptions().timeZone;
|
|
const time = useCurrentTime(options);
|
|
return (
|
|
<Stack className="clock-text-stack" h="100%" align="center" justify="center" gap="10cqmin">
|
|
{options.customTitleToggle && (
|
|
<Text className="clock-customTitle-text" size="12.5cqmin" ta="center">
|
|
{options.customTitle}
|
|
</Text>
|
|
)}
|
|
<Text className="clock-time-text" fw={700} size="22.5cqmin" lh="1">
|
|
{dayjs(time).tz(timezone).format(timeFormat)}
|
|
</Text>
|
|
{options.showDate && (
|
|
<Text className="clock-date-text" size="12.5cqmin" pt="1cqmin" lineClamp={1}>
|
|
{dayjs(time).tz(timezone).format(dateFormat)}
|
|
</Text>
|
|
)}
|
|
</Stack>
|
|
);
|
|
}
|
|
|
|
interface UseCurrentTimeProps {
|
|
showSeconds: boolean;
|
|
}
|
|
|
|
const useCurrentTime = ({ showSeconds }: UseCurrentTimeProps) => {
|
|
const [time, setTime] = useState(new Date());
|
|
const timeoutRef = useRef<NodeJS.Timeout>(null);
|
|
const intervalRef = useRef<NodeJS.Timeout>(null);
|
|
const intervalMultiplier = useMemo(() => (showSeconds ? 1 : 60), [showSeconds]);
|
|
|
|
useEffect(() => {
|
|
setTime(new Date());
|
|
timeoutRef.current = setTimeout(
|
|
() => {
|
|
setTime(new Date());
|
|
|
|
intervalRef.current = setInterval(() => {
|
|
setTime(new Date());
|
|
}, intervalMultiplier * 1000);
|
|
},
|
|
intervalMultiplier * 1000 - (1000 * (showSeconds ? 0 : dayjs().second()) + dayjs().millisecond()),
|
|
);
|
|
|
|
return () => {
|
|
if (timeoutRef.current) clearTimeout(timeoutRef.current);
|
|
if (intervalRef.current) clearInterval(intervalRef.current);
|
|
};
|
|
}, [intervalMultiplier, showSeconds]);
|
|
|
|
return time;
|
|
};
|