* fix manage test error * fix manage test error * update useBookerContext * wrap store provider around booker * replace useStore with useBookerStoreContext * replace useBookerStore with useBookerStoreContext * add initializer function for booker store provider * update props * fixup: pass more props * export StoreInitializeType type * replace useBookerStore with useBookerStoreContext * fixup: dont wrap BookerStoreProvider around booker directly * wrap BookerStoreProvider around booker web wrapper and fix local storage import * fix: wrap test components with BookerStoreProvider to fix failing unit tests - Create reusable test utility in test-utils.tsx with comprehensive mock store - Update Booker.test.tsx to use context-based testing approach - Fix DatePicker tests in both bookings and calendars packages - Simulate auto-advance behavior for month navigation tests - All 14 previously failing tests now pass Co-Authored-By: rajiv@cal.com <sahalrajiv6900@gmail.com> * add changesets * fix: complete migration from useBookerStore to useBookerStoreContext - Updated all remaining files to use useBookerStoreContext instead of useBookerStore - Fixed BookingFields.test.tsx by wrapping test component with BookerStoreProvider - Ensures all Booker components work within the new context-based store pattern - Resolves failing unit tests in CI by completing the store migration Co-Authored-By: rajiv@cal.com <sahalrajiv6900@gmail.com> * fix: add missing useBookerStoreContext import in BookerWebWrapper.tsx - Fixes TypeScript errors in CI where useBookerStoreContext was used but not imported - Completes the migration from useBookerStore to useBookerStoreContext pattern - All tests pass locally after this fix Co-Authored-By: rajiv@cal.com <sahalrajiv6900@gmail.com> * Revert "fix: add missing useBookerStoreContext import in BookerWebWrapper.tsx" This reverts commit 12947ca63f46c42e5aee74c78176ef230e2bf2cf. * Revert "fix: complete migration from useBookerStore to useBookerStoreContext" This reverts commit 87d837f2d30e4f9259d2be786049d21856f4eef0. * fixup: useBookerStoreContext and useInitializeBookerStoreContext for booker web wrapper * fixup: failing E2E tests * fixup: email embed breaking * fixup: troubleshooter crashing * replace useBookerstore with useBookerStoreContext --------- Co-authored-by: Rajiv Sahal <sahalrajiv-extc@atharvacoe.ac.in> Co-authored-by: Ryukemeister <sahalrajiv6900@gmail.com> Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Benny Joo <sldisek783@gmail.com>
243 lines
8.2 KiB
TypeScript
243 lines
8.2 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 { 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 "../../components/TimeFormatToggle";
|
|
import type { BookerLayout } from "../types";
|
|
|
|
export function Header({
|
|
extraDays,
|
|
isMobile,
|
|
enabledLayouts,
|
|
nextSlots,
|
|
eventSlug,
|
|
isMyLink,
|
|
renderOverlay,
|
|
}: {
|
|
extraDays: number;
|
|
isMobile: boolean;
|
|
enabledLayouts: BookerLayouts[];
|
|
nextSlots: number;
|
|
eventSlug: string;
|
|
isMyLink: boolean;
|
|
renderOverlay?: () => JSX.Element | null;
|
|
}) {
|
|
const { t, i18n } = useLocale();
|
|
const isEmbed = useIsEmbed();
|
|
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 = 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]);
|
|
|
|
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:flex-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={() => setSelectedDate({ date: today.format("YYYY-MM-DD") })}>
|
|
{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} />
|
|
);
|
|
};
|