mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
import { FC } from "react";
|
|
// plane types
|
|
import { useTranslation } from "@plane/i18n";
|
|
import { IUser } from "@plane/types";
|
|
// plane ui
|
|
// hooks
|
|
import { useCurrentTime } from "@/hooks/use-current-time";
|
|
|
|
export interface IUserGreetingsView {
|
|
user: IUser;
|
|
}
|
|
|
|
export const UserGreetingsView: FC<IUserGreetingsView> = (props) => {
|
|
const { user } = props;
|
|
// current time hook
|
|
const { currentTime } = useCurrentTime();
|
|
// store hooks
|
|
const { t } = useTranslation();
|
|
|
|
const hour = new Intl.DateTimeFormat("en-US", {
|
|
hour12: false,
|
|
hour: "numeric",
|
|
}).format(currentTime);
|
|
|
|
const date = new Intl.DateTimeFormat("en-US", {
|
|
month: "short",
|
|
day: "numeric",
|
|
}).format(currentTime);
|
|
|
|
const weekDay = new Intl.DateTimeFormat("en-US", {
|
|
weekday: "long",
|
|
}).format(currentTime);
|
|
|
|
const timeString = new Intl.DateTimeFormat("en-US", {
|
|
timeZone: user?.user_timezone,
|
|
hour12: false, // Use 24-hour format
|
|
hour: "2-digit",
|
|
minute: "2-digit",
|
|
}).format(currentTime);
|
|
|
|
const greeting = parseInt(hour, 10) < 12 ? "morning" : parseInt(hour, 10) < 18 ? "afternoon" : "evening";
|
|
|
|
return (
|
|
<div className="flex flex-col items-center my-6">
|
|
<h2 className="text-2xl font-semibold text-center">
|
|
{t("good")} {t(greeting)}, {user?.first_name} {user?.last_name}
|
|
</h2>
|
|
<h5 className="flex items-center gap-2 font-medium text-custom-text-400">
|
|
<div>{greeting === "morning" ? "🌤️" : greeting === "afternoon" ? "🌥️" : "🌙️"}</div>
|
|
<div>
|
|
{weekDay}, {date} {timeString}
|
|
</div>
|
|
</h5>
|
|
</div>
|
|
);
|
|
};
|