forked from cerc-io/snowballtools-base
🔧 chore: add id to allow singular toast deletion
This commit is contained in:
parent
fffc370d40
commit
5be29a9745
@ -17,13 +17,15 @@ interface CtaProps extends ButtonBaseProps, ButtonTheme {
|
||||
buttonLabel: string;
|
||||
}
|
||||
export interface SimpleToastProps extends ToastProps {
|
||||
id: string;
|
||||
title: string;
|
||||
variant?: SimpleToastTheme['variant'];
|
||||
cta?: CtaProps[];
|
||||
onDismiss: (id?: string) => void;
|
||||
onDismiss: (toastId: string) => void;
|
||||
}
|
||||
|
||||
export const SimpleToast = ({
|
||||
id,
|
||||
className,
|
||||
title,
|
||||
variant = 'success',
|
||||
@ -62,11 +64,11 @@ export const SimpleToast = ({
|
||||
|
||||
const renderCloseButton = useMemo(
|
||||
() => (
|
||||
<div onClick={() => onDismiss(props.id)} className={closeIconCls()}>
|
||||
<div onClick={() => onDismiss(id)} className={closeIconCls()}>
|
||||
<CrossIcon className="h-3 w-3" />
|
||||
</div>
|
||||
),
|
||||
[],
|
||||
[id],
|
||||
);
|
||||
|
||||
return (
|
||||
|
@ -11,7 +11,7 @@ export const Toaster = ({}: ToasterProps) => {
|
||||
const renderToasts = useMemo(
|
||||
() =>
|
||||
toasts.map(({ id, ...props }) => (
|
||||
<SimpleToast key={id} {...(props as SimpleToastProps)} />
|
||||
<SimpleToast key={id} {...(props as SimpleToastProps)} id={id} />
|
||||
)),
|
||||
[toasts],
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user