⚡️ feat: implement toast component
This commit is contained in:
parent
cb928c3360
commit
675112079c
@ -5,6 +5,7 @@ export const simpleToastTheme = tv(
|
||||
slots: {
|
||||
wrapper: [
|
||||
'flex',
|
||||
'items-center',
|
||||
'py-2',
|
||||
'pl-2',
|
||||
'pr-1.5',
|
||||
@ -18,6 +19,15 @@ export const simpleToastTheme = tv(
|
||||
'shadow-sm',
|
||||
],
|
||||
icon: ['flex', 'items-center', 'justify-center', 'w-5', 'h-5'],
|
||||
closeIcon: [
|
||||
'cursor-pointer',
|
||||
'flex',
|
||||
'items-center',
|
||||
'justify-center',
|
||||
'w-6',
|
||||
'h-6',
|
||||
'text-elements-on-high-contrast',
|
||||
],
|
||||
title: ['text-sm', 'text-elements-on-high-contrast'],
|
||||
},
|
||||
variants: {
|
||||
|
@ -2,41 +2,80 @@ import React, { useMemo } from 'react';
|
||||
import * as ToastPrimitive from '@radix-ui/react-toast';
|
||||
import { ToastProps } from '@radix-ui/react-toast';
|
||||
import { simpleToastTheme, type SimpleToastTheme } from './SimpleToast.theme';
|
||||
import { CheckIcon, CheckRoundFilledIcon } from 'components/shared/CustomIcon';
|
||||
import {
|
||||
LoadingIcon,
|
||||
CheckRoundFilledIcon,
|
||||
CrossIcon,
|
||||
InfoRoundFilledIcon,
|
||||
WarningIcon,
|
||||
} from 'components/shared/CustomIcon';
|
||||
import { Button, ButtonBaseProps, ButtonTheme } from 'components/shared/Button';
|
||||
import { cloneIcon } from 'utils/cloneIcon';
|
||||
import { cn } from 'utils/classnames';
|
||||
|
||||
interface CtaProps extends ButtonBaseProps, ButtonTheme {
|
||||
buttonLabel: string;
|
||||
}
|
||||
export interface SimpleToastProps extends ToastProps {
|
||||
title: string;
|
||||
variant?: SimpleToastTheme['variant'];
|
||||
cta?: CtaProps[];
|
||||
onDismiss: (id?: string) => void;
|
||||
}
|
||||
|
||||
export const SimpleToast = ({
|
||||
className,
|
||||
title,
|
||||
variant = 'success',
|
||||
cta = [],
|
||||
onDismiss,
|
||||
...props
|
||||
}: SimpleToastProps) => {
|
||||
const hasCta = cta.length > 0;
|
||||
const {
|
||||
wrapper: wrapperCls,
|
||||
icon: iconCls,
|
||||
closeIcon: closeIconCls,
|
||||
title: titleCls,
|
||||
} = simpleToastTheme({ variant });
|
||||
|
||||
const Icon = useMemo(() => {
|
||||
if (variant === 'success') return <CheckRoundFilledIcon />;
|
||||
if (variant === 'error') return <CheckIcon />;
|
||||
if (variant === 'warning') return <CheckIcon />;
|
||||
if (variant === 'info') return <CheckIcon />;
|
||||
return <CheckIcon />; // variant === 'loading'
|
||||
if (variant === 'error') return <WarningIcon />;
|
||||
if (variant === 'warning') return <WarningIcon />;
|
||||
if (variant === 'info') return <InfoRoundFilledIcon />;
|
||||
return <LoadingIcon />; // variant === 'loading'
|
||||
}, [variant]);
|
||||
|
||||
const renderCta = useMemo(
|
||||
() =>
|
||||
hasCta ? (
|
||||
<div className="flex gap-1.5 ml-2">
|
||||
{cta.map(({ buttonLabel, ...props }, index) => (
|
||||
<Button key={index} {...props}>
|
||||
{buttonLabel}
|
||||
</Button>
|
||||
))}
|
||||
</div>
|
||||
) : null,
|
||||
[],
|
||||
);
|
||||
|
||||
const renderCloseButton = () => (
|
||||
<div onClick={() => onDismiss(props.id)} className={closeIconCls()}>
|
||||
<CrossIcon className="h-3 w-3" />
|
||||
</div>
|
||||
);
|
||||
|
||||
return (
|
||||
<ToastPrimitive.Root {...props} asChild>
|
||||
<div className={wrapperCls({ class: className })}>
|
||||
<div className={wrapperCls({ class: cn(className) })}>
|
||||
{cloneIcon(Icon, { className: iconCls() })}
|
||||
<ToastPrimitive.Title asChild>
|
||||
<p className={titleCls()}>{title}</p>
|
||||
</ToastPrimitive.Title>
|
||||
{renderCta}
|
||||
{renderCloseButton()}
|
||||
</div>
|
||||
</ToastPrimitive.Root>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user