2024-03-19 01:41:21 +00:00
|
|
|
import {
|
|
|
|
Toast,
|
2024-03-19 15:38:42 +00:00
|
|
|
ToastAction,
|
2024-03-19 01:41:21 +00:00
|
|
|
ToastClose,
|
|
|
|
ToastDescription,
|
|
|
|
ToastProvider,
|
|
|
|
ToastTitle,
|
|
|
|
ToastViewport,
|
|
|
|
} from "~/components/ui/toast"
|
|
|
|
import { useToast } from "~/components/ui/use-toast"
|
|
|
|
|
|
|
|
export function Toaster() {
|
|
|
|
const { toasts } = useToast()
|
|
|
|
|
|
|
|
return (
|
|
|
|
<ToastProvider>
|
2024-03-22 12:47:50 +00:00
|
|
|
{toasts.map(({ id, title, description, action, cancelMutation, ...props }) => {
|
2024-03-19 15:38:42 +00:00
|
|
|
const undoButton = cancelMutation ? <ToastAction altText="Undo" onClick={cancelMutation}>Undo</ToastAction> : undefined
|
2024-03-19 01:41:21 +00:00
|
|
|
return (
|
|
|
|
<Toast key={id} {...props}>
|
|
|
|
<div className="grid gap-1">
|
|
|
|
{title && <ToastTitle>{title}</ToastTitle>}
|
|
|
|
{description && (
|
|
|
|
<ToastDescription>{description}</ToastDescription>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
{action}
|
2024-03-19 15:38:42 +00:00
|
|
|
{undoButton}
|
2024-03-19 01:41:21 +00:00
|
|
|
<ToastClose />
|
|
|
|
</Toast>
|
|
|
|
)
|
|
|
|
})}
|
|
|
|
<ToastViewport />
|
|
|
|
</ToastProvider>
|
|
|
|
)
|
|
|
|
}
|