import * as DialogPrimitive from "@radix-ui/react-dialog"; import { usePathname, useRouter, useSearchParams } from "next/navigation"; import type { ReactNode } from "react"; import React, { useState } from "react"; import classNames from "@calcom/lib/classNames"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import type { SVGComponent } from "@calcom/types/SVGComponent"; import type { ButtonProps } from "../../components/button"; import { Button } from "../../components/button"; export type DialogProps = React.ComponentProps<(typeof DialogPrimitive)["Root"]> & { name?: string; clearQueryParamsOnClose?: string[]; }; const enum DIALOG_STATE { // Dialog is there in the DOM but not visible. CLOSED = "CLOSED", // State from the time b/w the Dialog is dismissed and the time the "dialog" query param is removed from the URL. CLOSING = "CLOSING", // Dialog is visible. OPEN = "OPEN", } export function Dialog(props: DialogProps) { const router = useRouter(); const pathname = usePathname(); const searchParams = useSearchParams(); const newSearchParams = new URLSearchParams(searchParams); const { children, name, ...dialogProps } = props; // only used if name is set const [dialogState, setDialogState] = useState(dialogProps.open ? DIALOG_STATE.OPEN : DIALOG_STATE.CLOSED); const shouldOpenDialog = newSearchParams.get("dialog") === name; if (name) { const clearQueryParamsOnClose = ["dialog", ...(props.clearQueryParamsOnClose || [])]; dialogProps.onOpenChange = (open) => { if (props.onOpenChange) { props.onOpenChange(open); } // toggles "dialog" query param if (open) { newSearchParams.set("dialog", name); } else { clearQueryParamsOnClose.forEach((queryParam) => { newSearchParams.delete(queryParam); }); router.push(`${pathname}?${newSearchParams.toString()}`); } setDialogState(open ? DIALOG_STATE.OPEN : DIALOG_STATE.CLOSING); }; if (dialogState === DIALOG_STATE.CLOSED && shouldOpenDialog) { setDialogState(DIALOG_STATE.OPEN); } if (dialogState === DIALOG_STATE.CLOSING && !shouldOpenDialog) { setDialogState(DIALOG_STATE.CLOSED); } // allow overriding if (!("open" in dialogProps)) { dialogProps.open = dialogState === DIALOG_STATE.OPEN ? true : false; } } return {children}; } type DialogContentProps = React.ComponentProps<(typeof DialogPrimitive)["Content"]> & { size?: "xl" | "lg" | "md"; type?: "creation" | "confirmation"; title?: string; description?: string | JSX.Element | null; closeText?: string; actionDisabled?: boolean; Icon?: SVGComponent; enableOverflow?: boolean; }; // enableOverflow:- use this prop whenever content inside DialogContent could overflow and require scrollbar export const DialogContent = React.forwardRef( ({ children, title, Icon, enableOverflow, type = "creation", ...props }, forwardedRef) => { return ( {type === "creation" && (
{children}
)} {type === "confirmation" && (
{Icon && (
)}
{children}
)} {!type && children}
); } ); type DialogHeaderProps = { title: React.ReactNode; subtitle?: React.ReactNode; }; export function DialogHeader(props: DialogHeaderProps) { if (!props.title) return null; return (
{props.subtitle &&
{props.subtitle}
}
); } export function DialogFooter(props: { children: ReactNode; className?: string; showDivider?: boolean }) { return (
{props.showDivider && ( // TODO: the -mx-8 is causing overflow in the dialog buttons
)}
{props.children}
); } DialogContent.displayName = "DialogContent"; export const DialogTrigger = DialogPrimitive.Trigger; // export const DialogClose = DialogPrimitive.Close; export function DialogClose( props: { dialogCloseProps?: React.ComponentProps<(typeof DialogPrimitive)["Close"]>; children?: ReactNode; onClick?: (e: React.MouseEvent) => void; disabled?: boolean; color?: ButtonProps["color"]; } & React.ComponentProps ) { const { t } = useLocale(); return ( {/* This will require the i18n string passed in */} ); }