* fix * move event types components to web * update import paths * mv apps components * migrate form builder * fix * mv sso * fix * mv * update import paths * update import paths * mv * mv * mv * fix * update Booker * fix * fix * fix * fix * mv video * mv embed components to web * update import paths * mv calendar weekly view components * update import paths * fix * fixp * fix * fix * fix * fix: update FormBuilder imports to use @calcom/features/form-builder Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: update broken import paths after file migrations Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: correct import paths for platform atoms and moved components Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: apply CSS type fixes and add missing atoms exports Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: resolve type errors in test files after component migrations Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: resolve remaining type errors in test files Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix * migrate * fix: resolve type errors in test and mock files - Add missing bookingForm, bookerFormErrorRef, instantConnectCooldownMs to Booker.test.tsx bookings prop - Add all required BookerEvent properties to event.mock.ts - Add vi import from vitest to all mock files - Fix date parameter types in packages/dayjs/__mocks__/index.ts - Add verificationCode and setVerificationCode to test-utils.tsx mock store - Remove children.type access in Section.tsx mock to fix type error - Fix lint issues: remove unused React imports, use import type where needed, add return types - Add biome-ignore comments for pre-existing lint warnings in test files Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * migrate * migrate * migrate * update import paths * update import paths * update import paths * fix * migrate data table * migrate data table * fix * fix * fix * migrate insights components * migrate insights components * fix * mv * update import paths * fix * fix * fix * fix * fix * fix: resolve type errors in test mocks - Booker.test.tsx: Add all required UseFormReturn methods to bookingForm mock - event.mock.ts: Fix entity, subsetOfHosts, instantMeetingParameters, fieldTranslations, image types - dayjs/__mocks__/index.ts: Use Object.assign for proper typing of mock properties - Section.tsx: Change 'class' to 'className' in JSX with biome-ignore comment Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing hasDataErrors and dataErrors to bookings.errors mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing loadingStates properties to bookings mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing slots properties (setTentativeSelectedTimeslots, tentativeSelectedTimeslots, slotReservationId) Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: update quickAvailabilityChecks to include utcEndIso and use valid status type Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing bookerForm properties (formName, beforeVerifyEmail, formErrors) Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing UseFormReturn properties to bookerForm.bookingForm mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add hasFormErrors and formErrors to bookerForm.formErrors mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add hasFormErrors and formErrors to bookerForm.errors mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing isError property to mockEvent Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: use complete BookerEvent mock in Booker.test.tsx Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: use branded bookingFields type in event mock Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: add missing schedule mock properties (isError, isSuccess, isLoading, dataUpdatedAt) Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * revert * fix * fix * fix * fix build * fix * fix * fix * fix: correct AddMembersWithSwitch test wrapper to use initial assignAllTeamMembers value - Fixed test wrapper to initialize useState with componentProps.assignAllTeamMembers instead of hardcoded false, allowing tests to properly test different states - Updated test expectations for ALL_TEAM_MEMBERS_ENABLED_AND_SEGMENT_NOT_APPLICABLE state to match actual component behavior (toggle should be present and checked) - Fixed 'should show Segment when toggled on' test to start with assignAllTeamMembers: false to properly test the flow of enabling it - Added explicit types to satisfy biome lint requirements Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: use JSX.Element instead of React.JSX.Element for type compatibility Co-Authored-By: benny@cal.com <sldisek783@gmail.com> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
252 lines
8.7 KiB
TypeScript
252 lines
8.7 KiB
TypeScript
import { useCallback, useMemo } from "react";
|
|
import { shallow } from "zustand/shallow";
|
|
|
|
import { useIsPlatform } from "@calcom/atoms/hooks/useIsPlatform";
|
|
import dayjs from "@calcom/dayjs";
|
|
import { useIsEmbed } from "@calcom/embed-core/embed-iframe";
|
|
import { useBookerStoreContext } from "@calcom/features/bookings/Booker/BookerStoreProvider";
|
|
import { useInitializeWeekStart } from "@calcom/features/bookings/Booker/components/hooks/useInitializeWeekStart";
|
|
import { WEBAPP_URL } from "@calcom/lib/constants";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { BookerLayouts } from "@calcom/prisma/zod-utils";
|
|
import { Button } from "@calcom/ui/components/button";
|
|
import { ButtonGroup } from "@calcom/ui/components/buttonGroup";
|
|
import { ToggleGroup } from "@calcom/ui/components/form";
|
|
import { Icon } from "@calcom/ui/components/icon";
|
|
import { Tooltip } from "@calcom/ui/components/tooltip";
|
|
|
|
import { TimeFormatToggle } from "@calcom/web/modules/bookings/components/TimeFormatToggle";
|
|
import type { BookerLayout } from "@calcom/features/bookings/Booker/types";
|
|
|
|
export function Header({
|
|
extraDays,
|
|
isMobile,
|
|
enabledLayouts,
|
|
nextSlots,
|
|
eventSlug,
|
|
isMyLink,
|
|
renderOverlay,
|
|
isCalendarView,
|
|
}: {
|
|
extraDays: number;
|
|
isMobile: boolean;
|
|
enabledLayouts: BookerLayouts[];
|
|
nextSlots: number;
|
|
eventSlug: string;
|
|
isMyLink: boolean;
|
|
renderOverlay?: () => JSX.Element | null;
|
|
isCalendarView?: boolean;
|
|
}) {
|
|
const { t, i18n } = useLocale();
|
|
const isEmbed = useIsEmbed();
|
|
const isPlatform = useIsPlatform();
|
|
const [layout, setLayout] = useBookerStoreContext((state) => [state.layout, state.setLayout], shallow);
|
|
const selectedDateString = useBookerStoreContext((state) => state.selectedDate);
|
|
const setSelectedDate = useBookerStoreContext((state) => state.setSelectedDate);
|
|
const addToSelectedDate = useBookerStoreContext((state) => state.addToSelectedDate);
|
|
const isMonthView = isCalendarView !== undefined ? !isCalendarView : layout === BookerLayouts.MONTH_VIEW;
|
|
const today = dayjs();
|
|
const selectedDate = selectedDateString ? dayjs(selectedDateString) : today;
|
|
const selectedDateMin3DaysDifference = useMemo(() => {
|
|
const diff = today.diff(selectedDate, "days");
|
|
return diff > 3 || diff < -3;
|
|
}, [today, selectedDate]);
|
|
|
|
useInitializeWeekStart(isPlatform, isCalendarView ?? false);
|
|
|
|
const onLayoutToggle = useCallback(
|
|
(newLayout: string) => {
|
|
if (layout === newLayout || !newLayout) return;
|
|
setLayout(newLayout as BookerLayout);
|
|
},
|
|
[setLayout, layout]
|
|
);
|
|
|
|
if (isMobile || !enabledLayouts) return null;
|
|
|
|
// In month view we only show the layout toggle.
|
|
if (isMonthView) {
|
|
return (
|
|
<div className="flex gap-2">
|
|
{isMyLink && !isEmbed ? (
|
|
<Tooltip content={t("troubleshooter_tooltip")} side="bottom">
|
|
<Button
|
|
color="primary"
|
|
target="_blank"
|
|
href={`${WEBAPP_URL}/availability/troubleshoot?eventType=${eventSlug}`}>
|
|
{t("need_help")}
|
|
</Button>
|
|
</Tooltip>
|
|
) : (
|
|
renderOverlay?.()
|
|
)}
|
|
<LayoutToggleWithData
|
|
layout={layout}
|
|
enabledLayouts={enabledLayouts}
|
|
onLayoutToggle={onLayoutToggle}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
const endDate = selectedDate.add(layout === BookerLayouts.COLUMN_VIEW ? extraDays : extraDays - 1, "days");
|
|
|
|
const isSameMonth = () => {
|
|
return selectedDate.format("MMM") === endDate.format("MMM");
|
|
};
|
|
|
|
const isSameYear = () => {
|
|
return selectedDate.format("YYYY") === endDate.format("YYYY");
|
|
};
|
|
const formattedMonth = new Intl.DateTimeFormat(i18n.language ?? "en", { month: "short" });
|
|
const FormattedSelectedDateRange = () => {
|
|
return (
|
|
<h3 className="min-w-[150px] text-base font-semibold leading-4">
|
|
{formattedMonth.format(selectedDate.toDate())} {selectedDate.format("D")}
|
|
{!isSameYear() && <span className="text-subtle">, {selectedDate.format("YYYY")} </span>}-{" "}
|
|
{!isSameMonth() && formattedMonth.format(endDate.toDate())} {endDate.format("D")},{" "}
|
|
<span className="text-subtle">
|
|
{isSameYear() ? selectedDate.format("YYYY") : endDate.format("YYYY")}
|
|
</span>
|
|
</h3>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<div className="border-default relative z-10 flex border-b px-5 py-4 ltr:border-l rtl:border-r">
|
|
<div className="flex items-center gap-5 rtl:grow">
|
|
<FormattedSelectedDateRange />
|
|
<ButtonGroup>
|
|
<Button
|
|
className="group rtl:ml-1 rtl:rotate-180"
|
|
variant="icon"
|
|
color="minimal"
|
|
StartIcon="chevron-left"
|
|
aria-label="Previous Day"
|
|
onClick={() => addToSelectedDate(layout === BookerLayouts.COLUMN_VIEW ? -nextSlots : -extraDays)}
|
|
/>
|
|
<Button
|
|
className="group rtl:mr-1 rtl:rotate-180"
|
|
variant="icon"
|
|
color="minimal"
|
|
StartIcon="chevron-right"
|
|
aria-label="Next Day"
|
|
onClick={() => addToSelectedDate(layout === BookerLayouts.COLUMN_VIEW ? nextSlots : extraDays)}
|
|
/>
|
|
{selectedDateMin3DaysDifference && (
|
|
<Button
|
|
className="capitalize ltr:ml-2 rtl:mr-2"
|
|
color="secondary"
|
|
onClick={() => {
|
|
const selectedDate = (isCalendarView ? today.startOf("week") : today).format("YYYY-MM-DD");
|
|
setSelectedDate({ date: selectedDate });
|
|
}}>
|
|
{t("today")}
|
|
</Button>
|
|
)}
|
|
</ButtonGroup>
|
|
</div>
|
|
<div className="ml-auto flex gap-2">
|
|
{renderOverlay?.()}
|
|
<TimeFormatToggle />
|
|
<div className="fixed top-4 ltr:right-4 rtl:left-4">
|
|
<LayoutToggleWithData
|
|
layout={layout}
|
|
enabledLayouts={enabledLayouts}
|
|
onLayoutToggle={onLayoutToggle}
|
|
/>
|
|
</div>
|
|
{/*
|
|
This second layout toggle is hidden, but needed to reserve the correct spot in the DIV
|
|
for the fixed toggle above to fit into. If we wouldn't make it fixed in this view, the transition
|
|
would be really weird, because the element is positioned fixed in the month view, and then
|
|
when switching layouts wouldn't anymore, causing it to animate from the center to the top right,
|
|
while it actually already was on place. That's why we have this element twice.
|
|
*/}
|
|
<div className="pointer-events-none opacity-0" aria-hidden>
|
|
<LayoutToggleWithData
|
|
layout={layout}
|
|
enabledLayouts={enabledLayouts}
|
|
onLayoutToggle={onLayoutToggle}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const LayoutToggle = ({
|
|
onLayoutToggle,
|
|
layout,
|
|
enabledLayouts,
|
|
}: {
|
|
onLayoutToggle: (layout: string) => void;
|
|
layout: string;
|
|
enabledLayouts?: BookerLayouts[];
|
|
}) => {
|
|
const isEmbed = useIsEmbed();
|
|
const isPlatform = useIsPlatform();
|
|
|
|
const { t } = useLocale();
|
|
|
|
const layoutOptions = useMemo(() => {
|
|
return [
|
|
{
|
|
value: BookerLayouts.MONTH_VIEW,
|
|
label: (
|
|
<>
|
|
<Icon name="calendar" width="16" height="16" />
|
|
<span className="sr-only">${t("switch_monthly")}</span>
|
|
</>
|
|
),
|
|
tooltip: t("switch_monthly"),
|
|
},
|
|
{
|
|
value: BookerLayouts.WEEK_VIEW,
|
|
label: (
|
|
<>
|
|
<Icon name="grid-3x3" width="16" height="16" />
|
|
<span className="sr-only">${t("switch_weekly")}</span>
|
|
</>
|
|
),
|
|
tooltip: t("switch_weekly"),
|
|
},
|
|
{
|
|
value: BookerLayouts.COLUMN_VIEW,
|
|
label: (
|
|
<>
|
|
<Icon name="columns-3" width="16" height="16" />
|
|
<span className="sr-only">${t("switch_columnview")}</span>
|
|
</>
|
|
),
|
|
tooltip: t("switch_columnview"),
|
|
},
|
|
].filter((layout) => enabledLayouts?.includes(layout.value as BookerLayouts));
|
|
}, [t, enabledLayouts]);
|
|
|
|
// We don't want to show the layout toggle in embed mode as of now as it doesn't look rightly placed when embedded.
|
|
// There is a Embed API to control the layout toggle from outside of the iframe.
|
|
if (isEmbed) {
|
|
return null;
|
|
}
|
|
|
|
// just like embed the layout toggle doesn't look rightly placed in platform
|
|
// the layout can be toggled via props in the booker atom
|
|
if (isPlatform) return null;
|
|
|
|
return <ToggleGroup onValueChange={onLayoutToggle} defaultValue={layout} options={layoutOptions} />;
|
|
};
|
|
|
|
const LayoutToggleWithData = ({
|
|
enabledLayouts,
|
|
onLayoutToggle,
|
|
layout,
|
|
}: {
|
|
enabledLayouts: BookerLayouts[];
|
|
onLayoutToggle: (layout: string) => void;
|
|
layout: string;
|
|
}) => {
|
|
return enabledLayouts.length <= 1 ? null : (
|
|
<LayoutToggle onLayoutToggle={onLayoutToggle} layout={layout} enabledLayouts={enabledLayouts} />
|
|
);
|
|
};
|