import * as Popover from "@radix-ui/react-popover"; import { formatTime, isNextDayInTimezone, isPreviousDayInTimezone, sortByTimezone, } from "@calcom/lib/date-fns"; import { FiGlobe } from "../icon"; type Attendee = { id: number; email: string; name: string; timeZone: string; locale: string | null; bookingId: number | null; }; interface MeetingTimeInTimezonesProps { attendees: Attendee[]; userTimezone?: string; timeFormat?: number | null; startTime: string; endTime: string; } const MeetingTimeInTimezones = ({ attendees, userTimezone, timeFormat, startTime, endTime, }: MeetingTimeInTimezonesProps) => { if (!userTimezone || !attendees.length) return null; const attendeeTimezones = attendees.map((attendee) => attendee.timeZone); const uniqueTimezones = [userTimezone, ...attendeeTimezones].filter( (value, index, self) => self.indexOf(value) === index ); // Convert times to time in timezone, and then sort from earliest to latest time in timezone. const times = uniqueTimezones .map((timezone) => { const isPreviousDay = isPreviousDayInTimezone(startTime, userTimezone, timezone); const isNextDay = isNextDayInTimezone(startTime, userTimezone, timezone); return { startTime: formatTime(startTime, timeFormat, timezone), endTime: formatTime(endTime, timeFormat, timezone), timezone, isPreviousDay, isNextDay, }; }) .sort((timeA, timeB) => sortByTimezone(timeA.timezone, timeB.timezone)); // We don't show the popover if there's only one timezone. if (times.length === 1) return null; return ( {times.map((time) => ( {time.startTime} - {time.endTime} {(time.isNextDay || time.isPreviousDay) && ( {time.isNextDay ? "+1" : "-1"} )}
{time.timezone}
))}
); }; MeetingTimeInTimezones.displayName = "MeetingTimeInTimezones"; // Prevents propagation so the click on eg booking overview won't // bubble to the row of the table, causing a navigation to the // detaill page. const preventBubbling = (event: React.MouseEvent) => { event.stopPropagation(); }; export default MeetingTimeInTimezones;