cal.pub0.org/packages/ui/components/toast/showToast.tsx

85 lines
2.5 KiB
TypeScript

import classNames from "classnames";
import toast from "react-hot-toast";
import { FiCheck, FiInfo } from "@calcom/ui/components/icon";
type IToast = {
message: string;
toastVisible: boolean;
};
export const SuccessToast = ({ message, toastVisible }: IToast) => (
<div
className={classNames(
"data-testid-toast-success bg-brand-500 mb-2 flex h-auto items-center space-x-2 rounded-md p-3 text-sm font-semibold text-white shadow-md rtl:space-x-reverse md:max-w-sm",
toastVisible && "animate-fade-in-up"
)}>
<span>
<FiCheck className="h-4 w-4" />
</span>
<p>{message}</p>
</div>
);
export const ErrorToast = ({ message, toastVisible }: IToast) => (
<div
className={classNames(
"animate-fade-in-up mb-2 flex h-auto items-center space-x-2 rounded-md bg-red-100 p-3 text-sm font-semibold text-red-900 shadow-md rtl:space-x-reverse md:max-w-sm",
toastVisible && "animate-fade-in-up"
)}>
<span>
<FiInfo className="h-4 w-4" />
</span>
<p>{message}</p>
</div>
);
export const WarningToast = ({ message, toastVisible }: IToast) => (
<div
className={classNames(
"animate-fade-in-up bg-brand-500 mb-2 flex h-auto items-center space-x-2 rounded-md p-3 text-sm font-semibold text-white shadow-md rtl:space-x-reverse md:max-w-sm",
toastVisible && "animate-fade-in-up"
)}>
<span>
<FiInfo className="h-4 w-4" />
</span>
<p>{message}</p>
</div>
);
export const DefaultToast = ({ message, toastVisible }: IToast) => (
<div
className={classNames(
"animate-fade-in-up bg-brand-500 mb-2 flex h-auto items-center space-x-2 rounded-md p-3 text-sm font-semibold text-white shadow-md rtl:space-x-reverse md:max-w-sm",
toastVisible && "animate-fade-in-up"
)}>
<span>
<FiCheck className="h-4 w-4" />
</span>
<p>{message}</p>
</div>
);
const TOAST_VISIBLE_DURATION = 6000;
export function showToast(
message: string,
variant: "success" | "warning" | "error",
duration = TOAST_VISIBLE_DURATION
) {
switch (variant) {
case "success":
toast.custom((t) => <SuccessToast message={message} toastVisible={t.visible} />, { duration });
break;
case "error":
toast.custom((t) => <ErrorToast message={message} toastVisible={t.visible} />, { duration });
break;
case "warning":
toast.custom((t) => <WarningToast message={message} toastVisible={t.visible} />, { duration });
break;
default:
toast.custom((t) => <DefaultToast message={message} toastVisible={t.visible} />, { duration });
break;
}
}