import Link from "next/link"; import { useState } from "react"; import { Controller, useFieldArray, useForm } from "react-hook-form"; import { getPaymentAppData } from "@calcom/app-store/_utils/payments/getPaymentAppData"; import type { getEventLocationValue } from "@calcom/app-store/locations"; import { getSuccessPageLocationMessage, guessEventLocationType } from "@calcom/app-store/locations"; import dayjs from "@calcom/dayjs"; // TODO: Use browser locale, implement Intl in Dayjs maybe? import "@calcom/dayjs/locales"; import { Dialog } from "@calcom/features/components/controlled-dialog"; import { MeetingSessionDetailsDialog } from "@calcom/features/ee/video/MeetingSessionDetailsDialog"; import ViewRecordingsDialog from "@calcom/features/ee/video/ViewRecordingsDialog"; import { formatTime } from "@calcom/lib/dayjs"; import { useCopy } from "@calcom/lib/hooks/useCopy"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { useGetTheme } from "@calcom/lib/hooks/useTheme"; import isSmsCalEmail from "@calcom/lib/isSmsCalEmail"; import { getEveryFreqFor } from "@calcom/lib/recurringStrings"; import type { AssignmentReason } from "@calcom/prisma/client"; import { BookingStatus } from "@calcom/prisma/enums"; import { bookingMetadataSchema } from "@calcom/prisma/zod-utils"; import type { RouterInputs, RouterOutputs } from "@calcom/trpc/react"; import { trpc } from "@calcom/trpc/react"; import type { Ensure } from "@calcom/types/utils"; import classNames from "@calcom/ui/classNames"; import { Badge } from "@calcom/ui/components/badge"; import { Button } from "@calcom/ui/components/button"; import { DialogContent, DialogFooter, DialogClose } from "@calcom/ui/components/dialog"; import { Dropdown, DropdownItem, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, DropdownMenuPortal, } from "@calcom/ui/components/dropdown"; import { TextAreaField } from "@calcom/ui/components/form"; import { Icon } from "@calcom/ui/components/icon"; import { MeetingTimeInTimezones } from "@calcom/ui/components/popover"; import { TableActions } from "@calcom/ui/components/table"; import type { ActionType } from "@calcom/ui/components/table"; import { showToast } from "@calcom/ui/components/toast"; import { Tooltip } from "@calcom/ui/components/tooltip"; import assignmentReasonBadgeTitleMap from "@lib/booking/assignmentReasonBadgeTitleMap"; import { AddGuestsDialog } from "@components/dialog/AddGuestsDialog"; import { ChargeCardDialog } from "@components/dialog/ChargeCardDialog"; import { EditLocationDialog } from "@components/dialog/EditLocationDialog"; import { ReassignDialog } from "@components/dialog/ReassignDialog"; import { RerouteDialog } from "@components/dialog/RerouteDialog"; import { RescheduleDialog } from "@components/dialog/RescheduleDialog"; import { getPendingActions, getCancelEventAction, getEditEventActions, getAfterEventActions, shouldShowPendingActions, shouldShowEditActions, shouldShowRecurringCancelAction, type BookingActionContext, } from "./bookingActions"; type BookingListingStatus = RouterInputs["viewer"]["bookings"]["get"]["filters"]["status"]; type BookingItem = RouterOutputs["viewer"]["bookings"]["get"]["bookings"][number]; export type BookingItemProps = BookingItem & { listingStatus: BookingListingStatus; recurringInfo: RouterOutputs["viewer"]["bookings"]["get"]["recurringInfo"][number] | undefined; loggedInUser: { userId: number | undefined; userTimeZone: string | undefined; userTimeFormat: number | null | undefined; userEmail: string | undefined; }; isToday: boolean; }; type ParsedBooking = ReturnType; type TeamEvent = Ensure, "team">; type TeamEventBooking = Omit & { eventType: TeamEvent; }; type ReroutableBooking = Ensure; function buildParsedBooking(booking: BookingItemProps) { // The way we fetch bookings there could be eventType object even without an eventType, but id confirms its existence const bookingEventType = booking.eventType.id ? (booking.eventType as Ensure< typeof booking.eventType, // It would only ensure that the props are present, if they are optional in the original type. So, it is safe to assert here. "id" | "length" | "title" | "slug" | "schedulingType" | "team" >) : null; const parsedMetadata = bookingMetadataSchema.safeParse(booking.metadata ?? null); const bookingMetadata = parsedMetadata.success ? parsedMetadata.data : null; return { ...booking, eventType: bookingEventType, metadata: bookingMetadata, }; } const isBookingReroutable = (booking: ParsedBooking): booking is ReroutableBooking => { // We support only team bookings for now for rerouting // Though `routedFromRoutingFormReponse` could be there for a non-team booking, we don't want to support it for now. // Let's not support re-routing for a booking without an event-type for now. // Such a booking has its event-type deleted and there might not be something to reroute to. return !!booking.routedFromRoutingFormReponse && !!booking.eventType?.team; }; function BookingListItem(booking: BookingItemProps) { const parsedBooking = buildParsedBooking(booking); const { userTimeZone, userTimeFormat, userEmail } = booking.loggedInUser; const { t, i18n: { language }, } = useLocale(); const utils = trpc.useUtils(); const [rejectionReason, setRejectionReason] = useState(""); const [rejectionDialogIsOpen, setRejectionDialogIsOpen] = useState(false); const [chargeCardDialogIsOpen, setChargeCardDialogIsOpen] = useState(false); const [viewRecordingsDialogIsOpen, setViewRecordingsDialogIsOpen] = useState(false); const [meetingSessionDetailsDialogIsOpen, setMeetingSessionDetailsDialogIsOpen] = useState(false); const [isNoShowDialogOpen, setIsNoShowDialogOpen] = useState(false); const cardCharged = booking?.payment[0]?.success; const attendeeList = booking.attendees.map((attendee) => { return { name: attendee.name, email: attendee.email, id: attendee.id, noShow: attendee.noShow || false, phoneNumber: attendee.phoneNumber, }; }); const noShowMutation = trpc.viewer.loggedInViewerRouter.markNoShow.useMutation({ onSuccess: async (data) => { showToast(data.message, "success"); // Invalidate and refetch the bookings query to update the UI await utils.viewer.bookings.invalidate(); }, onError: (err) => { showToast(err.message, "error"); }, }); const mutation = trpc.viewer.bookings.confirm.useMutation({ onSuccess: (data) => { if (data?.status === BookingStatus.REJECTED) { setRejectionDialogIsOpen(false); showToast(t("booking_rejection_success"), "success"); } else { showToast(t("booking_confirmation_success"), "success"); } utils.viewer.bookings.invalidate(); }, onError: () => { showToast(t("booking_confirmation_failed"), "error"); utils.viewer.bookings.invalidate(); }, }); const isUpcoming = new Date(booking.endTime) >= new Date(); const isOngoing = isUpcoming && new Date() >= new Date(booking.startTime); const isBookingInPast = new Date(booking.endTime) < new Date(); const isCancelled = booking.status === BookingStatus.CANCELLED; const isConfirmed = booking.status === BookingStatus.ACCEPTED; const isRejected = booking.status === BookingStatus.REJECTED; const isPending = booking.status === BookingStatus.PENDING; const isRescheduled = booking.fromReschedule !== null; const isRecurring = booking.recurringEventId !== null; const isTabRecurring = booking.listingStatus === "recurring"; const isTabUnconfirmed = booking.listingStatus === "unconfirmed"; const isBookingFromRoutingForm = isBookingReroutable(parsedBooking); const paymentAppData = getPaymentAppData(booking.eventType); const location = booking.location as ReturnType; const locationVideoCallUrl = parsedBooking.metadata?.videoCallUrl; const { resolvedTheme, forcedTheme } = useGetTheme(); const hasDarkTheme = !forcedTheme && resolvedTheme === "dark"; const eventTypeColor = booking.eventType.eventTypeColor && booking.eventType.eventTypeColor[hasDarkTheme ? "darkEventTypeColor" : "lightEventTypeColor"]; const locationToDisplay = getSuccessPageLocationMessage( locationVideoCallUrl ? locationVideoCallUrl : location, t, booking.status ); const provider = guessEventLocationType(location); const isDisabledCancelling = booking.eventType.disableCancelling; const isDisabledRescheduling = booking.eventType.disableRescheduling; const bookingConfirm = async (confirm: boolean) => { let body = { bookingId: booking.id, confirmed: confirm, reason: rejectionReason, }; /** * Only pass down the recurring event id when we need to confirm the entire series, which happens in * the "Recurring" tab and "Unconfirmed" tab, to support confirming discretionally in the "Recurring" tab. */ if ((isTabRecurring || isTabUnconfirmed) && isRecurring) { body = Object.assign({}, body, { recurringEventId: booking.recurringEventId }); } mutation.mutate(body); }; const getSeatReferenceUid = () => { if (!booking.seatsReferences[0]) { return undefined; } return booking.seatsReferences[0].referenceUid; }; const actionContext: BookingActionContext = { booking, isUpcoming, isOngoing, isBookingInPast, isCancelled, isConfirmed, isRejected, isPending, isRescheduled, isRecurring, isTabRecurring, isTabUnconfirmed, isBookingFromRoutingForm, isDisabledCancelling, isDisabledRescheduling, isCalVideoLocation: !booking.location || booking.location === "integrations:daily" || (typeof booking.location === "string" && booking.location.trim() === ""), showPendingPayment: paymentAppData.enabled && booking.payment.length && !booking.paid, cardCharged, attendeeList, getSeatReferenceUid, t, } as BookingActionContext; const basePendingActions = getPendingActions(actionContext); const pendingActions: ActionType[] = basePendingActions.map((action) => ({ ...action, onClick: action.id === "reject" ? () => setRejectionDialogIsOpen(true) : action.id === "confirm" ? () => bookingConfirm(true) : undefined, disabled: action.disabled || mutation.isPending, })) as ActionType[]; const cancelEventAction = getCancelEventAction(actionContext); const RequestSentMessage = () => { return ( {t("reschedule_request_sent")} ); }; const bookingYear = dayjs(booking.startTime).year(); const currentYear = dayjs().year(); const isDifferentYear = bookingYear !== currentYear; const startTime = dayjs(booking.startTime) .tz(userTimeZone) .locale(language) .format(isUpcoming ? (isDifferentYear ? "ddd, D MMM YYYY" : "ddd, D MMM") : "D MMMM YYYY"); const [isOpenRescheduleDialog, setIsOpenRescheduleDialog] = useState(false); const [isOpenReassignDialog, setIsOpenReassignDialog] = useState(false); const [isOpenSetLocationDialog, setIsOpenLocationDialog] = useState(false); const [isOpenAddGuestsDialog, setIsOpenAddGuestsDialog] = useState(false); const [rerouteDialogIsOpen, setRerouteDialogIsOpen] = useState(false); const setLocationMutation = trpc.viewer.bookings.editLocation.useMutation({ onSuccess: () => { showToast(t("location_updated"), "success"); setIsOpenLocationDialog(false); utils.viewer.bookings.invalidate(); }, onError: (e) => { const errorMessages: Record = { UNAUTHORIZED: t("you_are_unauthorized_to_make_this_change_to_the_booking"), BAD_REQUEST: e.message, }; const message = errorMessages[e.data?.code as string] || t("location_update_failed"); showToast(message, "error"); }, }); const saveLocation = async ({ newLocation, credentialId, }: { newLocation: string; /** * It could be set for conferencing locations that support team level installations. */ credentialId: number | null; }) => { try { await setLocationMutation.mutateAsync({ bookingId: booking.id, newLocation, credentialId, }); } catch { // Errors are shown through the mutation onError handler } }; // Getting accepted recurring dates to show const recurringDates = booking.recurringInfo?.bookings[BookingStatus.ACCEPTED] .concat(booking.recurringInfo?.bookings[BookingStatus.CANCELLED]) .concat(booking.recurringInfo?.bookings[BookingStatus.PENDING]) .sort((date1: Date, date2: Date) => date1.getTime() - date2.getTime()); const buildBookingLink = () => { const urlSearchParams = new URLSearchParams({ allRemainingBookings: isTabRecurring.toString(), }); if (booking.attendees?.[0]?.email) urlSearchParams.set("email", booking.attendees[0].email); return `/booking/${booking.uid}?${urlSearchParams.toString()}`; }; const bookingLink = buildBookingLink(); const title = booking.title; const isCalVideoLocation = !booking.location || booking.location === "integrations:daily" || (typeof booking.location === "string" && booking.location.trim() === ""); const showPendingPayment = paymentAppData.enabled && booking.payment.length && !booking.paid; const baseEditEventActions = getEditEventActions(actionContext); const editEventActions: ActionType[] = baseEditEventActions.map((action) => ({ ...action, onClick: action.id === "reschedule_request" ? () => setIsOpenRescheduleDialog(true) : action.id === "reroute" ? () => setRerouteDialogIsOpen(true) : action.id === "change_location" ? () => setIsOpenLocationDialog(true) : action.id === "add_members" ? () => setIsOpenAddGuestsDialog(true) : action.id === "reassign" ? () => setIsOpenReassignDialog(true) : undefined, })) as ActionType[]; const baseAfterEventActions = getAfterEventActions(actionContext); const afterEventActions: ActionType[] = baseAfterEventActions.map((action) => ({ ...action, onClick: action.id === "view_recordings" ? () => setViewRecordingsDialogIsOpen(true) : action.id === "meeting_session_details" ? () => setMeetingSessionDetailsDialogIsOpen(true) : action.id === "charge_card" ? () => setChargeCardDialogIsOpen(true) : action.id === "no_show" ? () => { if (attendeeList.length === 1) { const attendee = attendeeList[0]; noShowMutation.mutate({ bookingUid: booking.uid, attendees: [{ email: attendee.email, noShow: !attendee.noShow }], }); return; } setIsNoShowDialogOpen(true); } : undefined, disabled: action.disabled || (action.id === "no_show" && !(isBookingInPast || isOngoing)) || (action.id === "view_recordings" && !booking.isRecorded), })) as ActionType[]; return ( <> {isOpenReassignDialog && ( )} {booking.paid && booking.payment[0] && ( )} {isCalVideoLocation && ( )} {isCalVideoLocation && meetingSessionDetailsDialogIsOpen && ( )} {isNoShowDialogOpen && ( )}
{t("rejection_reason")} (Optional) } value={rejectionReason} onChange={(e) => setRejectionReason(e.target.value)} />
{eventTypeColor && (
)}
{startTime}
{formatTime(booking.startTime, userTimeFormat, userTimeZone)} -{" "} {formatTime(booking.endTime, userTimeFormat, userTimeZone)}
{!isPending && ( )}
{/* Time and Badges for mobile */}
{startTime}
{formatTime(booking.startTime, userTimeFormat, userTimeZone)} -{" "} {formatTime(booking.endTime, userTimeFormat, userTimeZone)}
{isPending && ( {t("unconfirmed")} )} {booking.eventType?.team && ( {booking.eventType.team.name} )} {showPendingPayment && ( {t("pending_payment")} )} {recurringDates !== undefined && (
)}
{title} {showPendingPayment && ( {t("pending_payment")} )}
{booking.description && (
"{booking.description}"
)} {booking.attendees.length !== 0 && ( )} {isCancelled && booking.rescheduled && (
)}
{shouldShowPendingActions(actionContext) && } {shouldShowEditActions(actionContext) && (
{isBookingFromRoutingForm && ( )} ); } const BookingItemBadges = ({ booking, isPending, recurringDates, userTimeFormat, userTimeZone, isRescheduled, }: { booking: BookingItemProps; isPending: boolean; recurringDates: Date[] | undefined; userTimeFormat: number | null | undefined; userTimeZone: string | undefined; isRescheduled: boolean; }) => { const { t } = useLocale(); return (
{isPending && ( {t("unconfirmed")} )} {isRescheduled && ( {t("rescheduled")} )} {booking.eventType?.team && ( {booking.eventType.team.name} )} {booking?.assignmentReason.length > 0 && ( )} {booking.paid && !booking.payment[0] ? ( {t("error_collecting_card")} ) : booking.paid ? ( {booking.payment[0].paymentOption === "HOLD" ? t("card_held") : t("paid")} ) : null} {recurringDates !== undefined && (
)}
); }; interface RecurringBookingsTooltipProps { booking: BookingItemProps; recurringDates: Date[]; userTimeZone: string | undefined; userTimeFormat: number | null | undefined; } const RecurringBookingsTooltip = ({ booking, recurringDates, userTimeZone, userTimeFormat, }: RecurringBookingsTooltipProps) => { const { t, i18n: { language }, } = useLocale(); const now = new Date(); const recurringCount = recurringDates.filter((recurringDate) => { return ( recurringDate >= now && !booking.recurringInfo?.bookings[BookingStatus.CANCELLED] .map((date) => date.toString()) .includes(recurringDate.toString()) ); }).length; return ( (booking.recurringInfo && booking.eventType?.recurringEvent?.freq && (booking.listingStatus === "recurring" || booking.listingStatus === "unconfirmed" || booking.listingStatus === "cancelled") && (
{ const pastOrCancelled = aDate < now || booking.recurringInfo?.bookings[BookingStatus.CANCELLED] .map((date) => date.toString()) .includes(aDate.toString()); return (

{formatTime(aDate, userTimeFormat, userTimeZone)} {" - "} {dayjs(aDate).locale(language).format("D MMMM YYYY")}

); })}>

{booking.status === BookingStatus.ACCEPTED ? `${t("event_remaining_other", { count: recurringCount, })}` : getEveryFreqFor({ t, recurringEvent: booking.eventType.recurringEvent, recurringCount: booking.recurringInfo.count, })}

)) || null ); }; interface UserProps { id: number; name: string | null; email: string; } const FirstAttendee = ({ user, currentEmail, }: { user: UserProps; currentEmail: string | null | undefined; }) => { const { t } = useLocale(); return user.email === currentEmail ? (
{t("you")}
) : ( e.stopPropagation()}> {user.name || user.email} ); }; type AttendeeProps = { name?: string; email: string; phoneNumber: string | null; id: number; noShow: boolean; }; type NoShowProps = { bookingUid: string; isBookingInPast: boolean; }; const Attendee = (attendeeProps: AttendeeProps & NoShowProps) => { const { email, name, bookingUid, isBookingInPast, noShow, phoneNumber } = attendeeProps; const { t } = useLocale(); const utils = trpc.useUtils(); const [openDropdown, setOpenDropdown] = useState(false); const { copyToClipboard, isCopied } = useCopy(); const noShowMutation = trpc.viewer.loggedInViewerRouter.markNoShow.useMutation({ onSuccess: async (data) => { showToast(data.message, "success"); await utils.viewer.bookings.invalidate(); }, onError: (err) => { showToast(err.message, "error"); }, }); return ( {!isSmsCalEmail(email) && ( { setOpenDropdown(false); e.stopPropagation(); }}> {t("email")} )} { e.preventDefault(); const isEmailCopied = isSmsCalEmail(email); copyToClipboard(isEmailCopied ? email : phoneNumber ?? ""); setOpenDropdown(false); showToast(isEmailCopied ? t("email_copied") : t("phone_number_copied"), "success"); }}> {!isCopied ? t("copy") : t("copied")} {isBookingInPast && ( { e.preventDefault(); setOpenDropdown(false); noShowMutation.mutate({ bookingUid, attendees: [{ noShow: !noShow, email }] }); }} StartIcon={noShow ? "eye" : "eye-off"}> {noShow ? t("unmark_as_no_show") : t("mark_as_no_show")} )} ); }; type GroupedAttendeeProps = { attendees: AttendeeProps[]; bookingUid: string; }; const GroupedAttendees = (groupedAttendeeProps: GroupedAttendeeProps) => { const { bookingUid } = groupedAttendeeProps; const attendees = groupedAttendeeProps.attendees.map((attendee) => { return { id: attendee.id, email: attendee.email, name: attendee.name, noShow: attendee.noShow || false, }; }); const { t } = useLocale(); const utils = trpc.useUtils(); const noShowMutation = trpc.viewer.loggedInViewerRouter.markNoShow.useMutation({ onSuccess: async (data) => { showToast(t(data.message), "success"); await utils.viewer.bookings.invalidate(); }, onError: (err) => { showToast(err.message, "error"); }, }); const { control, handleSubmit } = useForm<{ attendees: AttendeeProps[]; }>({ defaultValues: { attendees, }, mode: "onBlur", }); const { fields } = useFieldArray({ control, name: "attendees", }); const onSubmit = (data: { attendees: AttendeeProps[] }) => { const filteredData = data.attendees.slice(1); noShowMutation.mutate({ bookingUid, attendees: filteredData }); setOpenDropdown(false); }; const [openDropdown, setOpenDropdown] = useState(false); return ( {t("mark_as_no_show_title")}
{fields.slice(1).map((field, index) => ( ( { e.preventDefault(); onChange(!value); }}> {field.email} )} /> ))}
); }; const NoShowAttendeesDialog = ({ attendees, isOpen, setIsOpen, bookingUid, }: { attendees: AttendeeProps[]; isOpen: boolean; setIsOpen: (value: boolean) => void; bookingUid: string; }) => { const { t } = useLocale(); const [noShowAttendees, setNoShowAttendees] = useState( attendees.map((attendee) => ({ id: attendee.id, email: attendee.email, name: attendee.name, noShow: attendee.noShow || false, })) ); const utils = trpc.useUtils(); const noShowMutation = trpc.viewer.loggedInViewerRouter.markNoShow.useMutation({ onSuccess: async (data) => { const newValue = data.attendees[0]; setNoShowAttendees((old) => old.map((attendee) => attendee.email === newValue.email ? { ...attendee, noShow: newValue.noShow } : attendee ) ); showToast(t(data.message), "success"); await utils.viewer.bookings.invalidate(); }, onError: (err) => { showToast(err.message, "error"); }, }); return ( setIsOpen(false)}> {noShowAttendees.map((attendee) => (
{ e.preventDefault(); noShowMutation.mutate({ bookingUid, attendees: [{ email: attendee.email, noShow: !attendee.noShow }], }); }}>
{attendee.name} {attendee.email && ({attendee.email})}
))} {t("done")}
); }; const GroupedGuests = ({ guests }: { guests: AttendeeProps[] }) => { const [openDropdown, setOpenDropdown] = useState(false); const { t } = useLocale(); const { copyToClipboard, isCopied } = useCopy(); const [selectedEmail, setSelectedEmail] = useState(""); return ( { setOpenDropdown(value); setSelectedEmail(""); }}> {t("guests")} {guests.slice(1).map((guest) => ( { e.preventDefault(); setSelectedEmail(guest.email); }}> {guest.email} ))}
); }; const DisplayAttendees = ({ attendees, user, currentEmail, bookingUid, isBookingInPast, }: { attendees: AttendeeProps[]; user: UserProps | null; currentEmail?: string | null; bookingUid: string; isBookingInPast: boolean; }) => { const { t } = useLocale(); attendees.sort((a, b) => a.id - b.id); return (
{user && } {attendees.length > 1 ? :  {t("and")} } {attendees.length > 1 && ( <>
 {t("and")} 
{attendees.length > 2 ? ( (

))}> {isBookingInPast ? ( ) : ( )}
) : ( )} )}
); }; const AssignmentReasonTooltip = ({ assignmentReason }: { assignmentReason: AssignmentReason }) => { const { t } = useLocale(); const badgeTitle = assignmentReasonBadgeTitleMap(assignmentReason.reasonEnum); return ( {assignmentReason.reasonString}

}> {t(badgeTitle)}
); }; export default BookingListItem;