Alert Dialog
A simplified wrapper for Shadcn Alert Dialog with flexible option handling and automatic type conversion
Installation
npx shadcn@latest add @glrk-ui/alert-dialogIf you haven't set up the prerequisites yet, check out Prerequest section.
Copy and paste the following code into your project.
"use client"
import * as React from "react"
import { AlertDialog as AlertDialogPrimitive } from "@base-ui/react/alert-dialog"
import { cn } from "@/lib/utils"
import { Button } from "@/components/ui/button"
function AlertDialog(props: AlertDialogPrimitive.Root.Props) {
return <AlertDialogPrimitive.Root data-slot="alert-dialog" {...props} />
}
function AlertDialogTrigger(props: AlertDialogPrimitive.Trigger.Props) {
return <AlertDialogPrimitive.Trigger data-slot="alert-dialog-trigger" {...props} />
}
function AlertDialogPortal(props: AlertDialogPrimitive.Portal.Props) {
return <AlertDialogPrimitive.Portal data-slot="alert-dialog-portal" {...props} />
}
function AlertDialogOverlay({ className, ...props }: AlertDialogPrimitive.Backdrop.Props) {
return (
<AlertDialogPrimitive.Backdrop
data-slot="alert-dialog-overlay"
className={cn(
"fixed inset-0 bg-black/10 duration-100 supports-backdrop-filter:backdrop-blur-xs data-open:animate-in data-open:fade-in-0 data-closed:animate-out data-closed:fade-out-0",
className
)}
{...props}
/>
)
}
function AlertDialogContent({
className,
size = "default",
...props
}: AlertDialogPrimitive.Popup.Props & {
size?: "default" | "sm"
}) {
return (
<AlertDialogPortal>
<AlertDialogOverlay />
<AlertDialogPrimitive.Popup
data-slot="alert-dialog-content"
data-size={size}
className={cn(
"group/alert-dialog-content fixed top-1/2 left-1/2 grid w-full -translate-x-1/2 -translate-y-1/2 gap-4 rounded-xl bg-background p-4 ring-1 ring-foreground/10 duration-100 outline-none data-[size=default]:max-w-xs data-[size=sm]:max-w-xs data-[size=default]:sm:max-w-sm data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95",
className
)}
{...props}
/>
</AlertDialogPortal>
)
}
function AlertDialogHeader({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="alert-dialog-header"
className={cn(
"grid grid-rows-[auto_1fr] place-items-center gap-1.5 text-center has-data-[slot=alert-dialog-media]:grid-rows-[auto_auto_1fr] has-data-[slot=alert-dialog-media]:gap-x-4 sm:group-data-[size=default]/alert-dialog-content:place-items-start sm:group-data-[size=default]/alert-dialog-content:text-left sm:group-data-[size=default]/alert-dialog-content:has-data-[slot=alert-dialog-media]:grid-rows-[auto_1fr]",
className
)}
{...props}
/>
)
}
function AlertDialogFooter({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="alert-dialog-footer"
className={cn(
"-mx-4 -mb-4 flex flex-col-reverse gap-2 rounded-b-xl border-t bg-muted/50 px-4 py-2.5 group-data-[size=sm]/alert-dialog-content:grid group-data-[size=sm]/alert-dialog-content:grid-cols-2 sm:flex-row sm:justify-end",
className
)}
{...props}
/>
)
}
function AlertDialogMedia({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="alert-dialog-media"
className={cn(
"mb-2 inline-flex size-10 items-center justify-center rounded-md bg-muted sm:group-data-[size=default]/alert-dialog-content:row-span-2 *:[svg:not([class*='size-'])]:size-6",
className
)}
{...props}
/>
)
}
function AlertDialogTitle({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Title>) {
return (
<AlertDialogPrimitive.Title
data-slot="alert-dialog-title"
className={cn(
"text-base font-medium sm:group-data-[size=default]/alert-dialog-content:group-has-data-[slot=alert-dialog-media]/alert-dialog-content:col-start-2",
className
)}
{...props}
/>
)
}
function AlertDialogDescription({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Description>) {
return (
<AlertDialogPrimitive.Description
data-slot="alert-dialog-description"
className={cn(
"text-sm text-balance text-muted-foreground md:text-pretty *:[a]:underline *:[a]:underline-offset-3 *:[a]:hover:text-foreground",
className
)}
{...props}
/>
)
}
function AlertDialogAction({ className, ...props }: React.ComponentProps<typeof Button>) {
return (
<Button
data-slot="alert-dialog-action"
className={cn(className)}
{...props}
/>
)
}
function AlertDialogCancel({
className,
variant = "outline",
size = "default",
...props
}: AlertDialogPrimitive.Close.Props &
Pick<React.ComponentProps<typeof Button>, "variant" | "size">) {
return (
<AlertDialogPrimitive.Close
data-slot="alert-dialog-cancel"
className={cn(className)}
render={<Button variant={variant} size={size} />}
{...props}
/>
)
}
type AlertDialogFooterWrapperProps = {
cancel?: React.ReactNode
action?: React.ReactNode
footerCls?: string
actionCls?: string
cancelCls?: string
onAction?: () => void
onCancel?: () => void
}
function AlertDialogFooterWrapper({
cancel,
action,
footerCls,
actionCls,
cancelCls,
onAction = () => { },
onCancel = () => { },
}: AlertDialogFooterWrapperProps) {
return (
<AlertDialogFooter className={cn(footerCls)}>
{
cancel &&
<AlertDialogCancel
onClick={onCancel}
className={cn(cancelCls)}
>
{cancel}
</AlertDialogCancel>
}
{
action &&
<AlertDialogAction
onClick={onAction}
className={cn(actionCls)}
>
{action}
</AlertDialogAction>
}
</AlertDialogFooter>
)
}
type AlertDialogWrapperProps = {
title?: React.ReactNode
trigger?: React.ReactNode
children?: React.ReactNode
description?: React.ReactNode
triggerCls?: string
descriptionCls?: string
contentCls?: string
headerCls?: string
titleCls?: string
} & AlertDialogFooterWrapperProps
function AlertDialogWrapper({
trigger,
title = "Are you absolutely sure?",
description = "This action cannot be undone. This will permanently remove your data from our servers.",
children,
triggerCls,
contentCls,
headerCls,
titleCls,
descriptionCls,
cancel = "Cancel",
action = "Confirm",
footerCls,
actionCls,
cancelCls,
onAction,
onCancel,
...props
}: React.ComponentProps<typeof AlertDialogPrimitive.Root> & AlertDialogWrapperProps) {
return (
<AlertDialog {...props}>
{
trigger &&
<AlertDialogTrigger className={cn(triggerCls)}>
{trigger}
</AlertDialogTrigger>
}
<AlertDialogContent className={cn(contentCls)}>
<AlertDialogHeader className={cn(headerCls)}>
<AlertDialogTitle className={cn(titleCls)}>{title}</AlertDialogTitle>
{description && (
<AlertDialogDescription className={cn(descriptionCls)}>
{description}
</AlertDialogDescription>
)}
</AlertDialogHeader>
{children}
{
(!!cancel || !!action) &&
<AlertDialogFooterWrapper
cancel={cancel}
action={action}
footerCls={footerCls}
actionCls={actionCls}
cancelCls={cancelCls}
onAction={onAction}
onCancel={onCancel}
/>
}
</AlertDialogContent>
</AlertDialog>
)
}
export {
AlertDialog,
AlertDialogAction,
AlertDialogCancel,
AlertDialogContent,
AlertDialogDescription,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogMedia,
AlertDialogOverlay,
AlertDialogPortal,
AlertDialogTitle,
AlertDialogTrigger,
AlertDialogWrapper,
AlertDialogFooterWrapper,
}Usage
Basic
import { AlertDialogWrapper } from "@/components/ui/alert-dialog";
import { Button } from "@/components/ui/button";
export function Basic() {
return (
<AlertDialogWrapper
trigger={<Button>Delete</Button>}
/>
)
}Controlled
import { useState } from "react"
import { AlertDialogWrapper } from "@/components/ui/alert-dialog";
import { Button } from "@/components/ui/button";
export function Controlled() {
const [open, setOpen] = useState(false)
return (
<AlertDialogWrapper
open={open}
onOpenChange={setOpen}
trigger={<Button>Controlled</Button>}
onAction={() => setOpen(false)}
/>
)
}
// Programaticaly open model without trigger
export function Controlled2() {
const [open, setOpen] = useState(false)
const updateOpen = () => setOpen(p => !p)
return (
<>
<Button onClick={updateOpen}>Controlled 2</Button>
<AlertDialogWrapper
open={open}
onOpenChange={updateOpen}
onAction={updateOpen}
/>
</>
)
}Custom
export function Custom() {
return (
<AlertDialogWrapper
trigger={<Button>Delete</Button>}
title="Some Custom Modal"
description=""
// to remove footer make cancel and action empty
cancel=""
action=""
>
<div>...</div>
</AlertDialogWrapper>
)
}Reference
AlertDialogFooterWrapper
AlertDialogWrapper
Prop
Type
Properties of AlertDialogFooterWrapper can be passed directly.