* fix: decouple large calendar from features * fix: move calendar to features since this is the better approach * chore: move OOO slots to features * feat: add DefaultOutOfOfficeSlot fallback for calendar OOO rendering Co-Authored-By: rajiv@cal.com <sahalrajiv6900@gmail.com> * chore: cleanup unused LargeCalendar component --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
114 lines
4.0 KiB
TypeScript
114 lines
4.0 KiB
TypeScript
import dayjs from "@calcom/dayjs";
|
|
import { useCalendarStore } from "@calcom/features/calendars/weeklyview/state/store";
|
|
import type { BorderColor } from "@calcom/features/calendars/weeklyview/types/common";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import classNames from "@calcom/ui/classNames";
|
|
import type React from "react";
|
|
|
|
type Props = {
|
|
showBorder: boolean;
|
|
borderColor: BorderColor;
|
|
days: dayjs.Dayjs[];
|
|
containerNavRef: React.RefObject<HTMLDivElement>;
|
|
};
|
|
|
|
export function DateValues({ showBorder, borderColor, days, containerNavRef }: Props) {
|
|
const { i18n } = useLocale();
|
|
const timezone = useCalendarStore((state) => state.timezone);
|
|
const showTimezone = useCalendarStore((state) => state.showTimezone ?? false);
|
|
|
|
const formatDate = (date: dayjs.Dayjs): string => {
|
|
return new Intl.DateTimeFormat(i18n.language, { weekday: "short" }).format(date.toDate());
|
|
};
|
|
|
|
const getTimezoneDisplay = () => {
|
|
if (!showTimezone || !timezone) return null;
|
|
try {
|
|
const timeRaw = dayjs().tz(timezone);
|
|
const utcOffsetInMinutes = timeRaw.utcOffset();
|
|
|
|
// Convert offset to decimal hours
|
|
const offsetInHours = Math.abs(utcOffsetInMinutes / 60);
|
|
const sign = utcOffsetInMinutes < 0 ? "-" : "+";
|
|
|
|
// If offset is 0, just return "GMT"
|
|
if (utcOffsetInMinutes === 0) {
|
|
return "GMT";
|
|
}
|
|
|
|
// Format as decimal (e.g., 1.5 for 1:30, 1 for 1:00)
|
|
const offsetFormatted = `${sign}${offsetInHours}`;
|
|
|
|
return `GMT ${offsetFormatted}`;
|
|
} catch {
|
|
// Fallback to showing the timezone name if formatting fails
|
|
return timezone.split("/").pop()?.replace(/_/g, " ") || timezone;
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div
|
|
ref={containerNavRef}
|
|
className={classNames(
|
|
"bg-default dark:bg-cal-muted top-(--calendar-dates-sticky-offset,0px) z-80 sticky flex-none border-b",
|
|
borderColor === "subtle" ? "border-b-subtle" : "border-b-default",
|
|
showBorder && (borderColor === "subtle" ? "border-r-subtle border-r" : "border-r-default border-r")
|
|
)}>
|
|
<div className="text-subtle flex leading-6 sm:hidden" data-dayslength={days.length}>
|
|
{days.map((day) => {
|
|
const isToday = dayjs().isSame(day, "day");
|
|
return (
|
|
<button
|
|
key={day.toString()}
|
|
type="button"
|
|
className="flex flex-1 flex-col items-center pb-3 pt-2">
|
|
{day.format("dd")}{" "}
|
|
<span
|
|
className={classNames(
|
|
"text-emphasis mt-1 flex h-8 w-8 items-center justify-center font-medium",
|
|
isToday && "bg-inverted text-inverted rounded-sm"
|
|
)}>
|
|
{day.format("D")}
|
|
</span>
|
|
</button>
|
|
);
|
|
})}
|
|
</div>
|
|
<div className="text-subtle -mr-px hidden auto-cols-fr leading-6 sm:flex">
|
|
<div
|
|
className={classNames(
|
|
"col-end-1 flex w-16 items-center justify-center",
|
|
showBorder &&
|
|
(borderColor === "subtle" ? "border-l-subtle border-l" : "border-l-default border-l")
|
|
)}>
|
|
{showTimezone && timezone && (
|
|
<span className="text-muted text-xs font-medium">{getTimezoneDisplay()}</span>
|
|
)}
|
|
</div>
|
|
{days.map((day) => {
|
|
const isToday = dayjs().isSame(day, "day");
|
|
return (
|
|
<div
|
|
key={day.toString()}
|
|
className={classNames(
|
|
"flex flex-1 items-center justify-center py-3 text-xs font-medium uppercase",
|
|
isToday && "text-default"
|
|
)}>
|
|
<span>
|
|
{formatDate(day)}{" "}
|
|
<span
|
|
className={classNames(
|
|
"items-center justify-center p-1",
|
|
isToday && "bg-brand-default text-brand ml-1 rounded-md"
|
|
)}>
|
|
{day.format("DD")}
|
|
</span>
|
|
</span>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|