mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-05-09 06:55:28 +03:00
* implement hook to return resolved "24hour" | "12hour" string delegate to existing use24HourTime(), which correctly detects the browser's locale preference via Intl.DateTimeFormat * update frontend to use use24HourTime(config) or useTimeFormat(config) instead of directly comparing config.ui.time_format
119 lines
2.9 KiB
TypeScript
119 lines
2.9 KiB
TypeScript
import { FrigateConfig } from "@/types/frigateConfig";
|
|
import { formatUnixTimestampToDateTime } from "@/utils/dateUtil";
|
|
import { useMemo } from "react";
|
|
import { useDateLocale } from "@/hooks/use-date-locale";
|
|
|
|
export function useFormattedTimestamp(
|
|
timestamp: number,
|
|
format: string,
|
|
timezone?: string,
|
|
) {
|
|
const locale = useDateLocale();
|
|
|
|
const formattedTimestamp = useMemo(() => {
|
|
return formatUnixTimestampToDateTime(timestamp, {
|
|
timezone,
|
|
date_format: format,
|
|
locale,
|
|
});
|
|
}, [format, timestamp, timezone, locale]);
|
|
|
|
return formattedTimestamp;
|
|
}
|
|
|
|
export function useFormattedRange(
|
|
start: number,
|
|
end: number,
|
|
format: string,
|
|
timezone?: string,
|
|
) {
|
|
const locale = useDateLocale();
|
|
|
|
const formattedStart = useMemo(() => {
|
|
return formatUnixTimestampToDateTime(start, {
|
|
timezone,
|
|
date_format: format,
|
|
locale,
|
|
});
|
|
}, [format, start, timezone, locale]);
|
|
|
|
const formattedEnd = useMemo(() => {
|
|
return formatUnixTimestampToDateTime(end, {
|
|
timezone,
|
|
date_format: format,
|
|
locale,
|
|
});
|
|
}, [format, end, timezone, locale]);
|
|
|
|
return `${formattedStart} - ${formattedEnd}`;
|
|
}
|
|
|
|
export function useTimezone(config: FrigateConfig | undefined) {
|
|
return useMemo(() => {
|
|
if (!config) {
|
|
return undefined;
|
|
}
|
|
|
|
return (
|
|
config.ui?.timezone || Intl.DateTimeFormat().resolvedOptions().timeZone
|
|
);
|
|
}, [config]);
|
|
}
|
|
|
|
export function use24HourTime(config: FrigateConfig | undefined) {
|
|
const localeUses24HourTime = useMemo(
|
|
() =>
|
|
new Intl.DateTimeFormat(undefined, {
|
|
hour: "numeric",
|
|
})
|
|
?.formatToParts(new Date(2020, 0, 1, 13))
|
|
?.find((part) => part.type === "hour")?.value?.length === 2,
|
|
[],
|
|
);
|
|
|
|
return useMemo(() => {
|
|
if (!config) {
|
|
return false;
|
|
}
|
|
|
|
if (config.ui.time_format !== "browser") {
|
|
return config.ui.time_format === "24hour";
|
|
}
|
|
|
|
return localeUses24HourTime;
|
|
}, [config, localeUses24HourTime]);
|
|
}
|
|
|
|
/**
|
|
* Returns the resolved time format key ("24hour" | "12hour") based on config
|
|
* and browser locale. Use this instead of checking config.ui.time_format directly
|
|
* to correctly handle the "browser" setting.
|
|
*/
|
|
export function useTimeFormat(
|
|
config: FrigateConfig | undefined,
|
|
): "24hour" | "12hour" {
|
|
const is24Hour = use24HourTime(config);
|
|
return is24Hour ? "24hour" : "12hour";
|
|
}
|
|
|
|
export function useFormattedHour(
|
|
config: FrigateConfig | undefined,
|
|
time: string, // hour is assumed to be in 24 hour format per the Date object
|
|
) {
|
|
const hour24 = use24HourTime(config);
|
|
|
|
return useMemo(() => {
|
|
if (hour24) {
|
|
return time;
|
|
}
|
|
|
|
const [hour, minute] = time.includes(":") ? time.split(":") : [time, "00"];
|
|
const hourNum = parseInt(hour);
|
|
|
|
const adjustedHour = hourNum % 12 || 12;
|
|
const period = hourNum < 12 ? "AM" : "PM";
|
|
|
|
return `${adjustedHour}:${minute} ${period}`;
|
|
}, [hour24, time]);
|
|
}
|