|
|
|
@ -3,25 +3,40 @@ import { XIcon } from "lucide-react";
|
|
|
|
|
import * as React from "react";
|
|
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
|
|
|
|
|
|
function Sheet({ ...props }: React.ComponentProps<typeof SheetPrimitive.Root>) {
|
|
|
|
|
return <SheetPrimitive.Root data-slot="sheet" {...props} />;
|
|
|
|
|
}
|
|
|
|
|
const Sheet = React.forwardRef<React.ElementRef<typeof SheetPrimitive.Root>, React.ComponentPropsWithoutRef<typeof SheetPrimitive.Root>>(
|
|
|
|
|
({ ...props }) => {
|
|
|
|
|
return <SheetPrimitive.Root data-slot="sheet" {...props} />;
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
Sheet.displayName = "Sheet";
|
|
|
|
|
|
|
|
|
|
function SheetTrigger({ ...props }: React.ComponentProps<typeof SheetPrimitive.Trigger>) {
|
|
|
|
|
return <SheetPrimitive.Trigger data-slot="sheet-trigger" {...props} />;
|
|
|
|
|
}
|
|
|
|
|
const SheetTrigger = React.forwardRef<
|
|
|
|
|
React.ElementRef<typeof SheetPrimitive.Trigger>,
|
|
|
|
|
React.ComponentPropsWithoutRef<typeof SheetPrimitive.Trigger>
|
|
|
|
|
>(({ ...props }, ref) => {
|
|
|
|
|
return <SheetPrimitive.Trigger ref={ref} data-slot="sheet-trigger" {...props} />;
|
|
|
|
|
});
|
|
|
|
|
SheetTrigger.displayName = "SheetTrigger";
|
|
|
|
|
|
|
|
|
|
function SheetClose({ ...props }: React.ComponentProps<typeof SheetPrimitive.Close>) {
|
|
|
|
|
return <SheetPrimitive.Close data-slot="sheet-close" {...props} />;
|
|
|
|
|
}
|
|
|
|
|
const SheetClose = React.forwardRef<
|
|
|
|
|
React.ElementRef<typeof SheetPrimitive.Close>,
|
|
|
|
|
React.ComponentPropsWithoutRef<typeof SheetPrimitive.Close>
|
|
|
|
|
>(({ ...props }, ref) => {
|
|
|
|
|
return <SheetPrimitive.Close ref={ref} data-slot="sheet-close" {...props} />;
|
|
|
|
|
});
|
|
|
|
|
SheetClose.displayName = "SheetClose";
|
|
|
|
|
|
|
|
|
|
function SheetPortal({ ...props }: React.ComponentProps<typeof SheetPrimitive.Portal>) {
|
|
|
|
|
const SheetPortal = ({ ...props }: React.ComponentProps<typeof SheetPrimitive.Portal>) => {
|
|
|
|
|
return <SheetPrimitive.Portal data-slot="sheet-portal" {...props} />;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
function SheetOverlay({ className, ...props }: React.ComponentProps<typeof SheetPrimitive.Overlay>) {
|
|
|
|
|
const SheetOverlay = React.forwardRef<
|
|
|
|
|
React.ElementRef<typeof SheetPrimitive.Overlay>,
|
|
|
|
|
React.ComponentPropsWithoutRef<typeof SheetPrimitive.Overlay>
|
|
|
|
|
>(({ className, ...props }, ref) => {
|
|
|
|
|
return (
|
|
|
|
|
<SheetPrimitive.Overlay
|
|
|
|
|
ref={ref}
|
|
|
|
|
data-slot="sheet-overlay"
|
|
|
|
|
className={cn(
|
|
|
|
|
"data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-foreground/50",
|
|
|
|
@ -30,20 +45,20 @@ function SheetOverlay({ className, ...props }: React.ComponentProps<typeof Sheet
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
SheetOverlay.displayName = "SheetOverlay";
|
|
|
|
|
|
|
|
|
|
function SheetContent({
|
|
|
|
|
className,
|
|
|
|
|
children,
|
|
|
|
|
side = "right",
|
|
|
|
|
...props
|
|
|
|
|
}: React.ComponentProps<typeof SheetPrimitive.Content> & {
|
|
|
|
|
side?: "top" | "right" | "bottom" | "left";
|
|
|
|
|
}) {
|
|
|
|
|
const SheetContent = React.forwardRef<
|
|
|
|
|
React.ElementRef<typeof SheetPrimitive.Content>,
|
|
|
|
|
React.ComponentPropsWithoutRef<typeof SheetPrimitive.Content> & {
|
|
|
|
|
side?: "top" | "right" | "bottom" | "left";
|
|
|
|
|
}
|
|
|
|
|
>(({ className, children, side = "right", ...props }, ref) => {
|
|
|
|
|
return (
|
|
|
|
|
<SheetPortal>
|
|
|
|
|
<SheetOverlay />
|
|
|
|
|
<SheetPrimitive.Content
|
|
|
|
|
ref={ref}
|
|
|
|
|
data-slot="sheet-content"
|
|
|
|
|
className={cn(
|
|
|
|
|
"bg-background data-[state=open]:animate-in data-[state=closed]:animate-out fixed z-50 flex flex-col gap-4 shadow-lg transition ease-in-out data-[state=closed]:duration-300 data-[state=open]:duration-500",
|
|
|
|
@ -59,29 +74,47 @@ function SheetContent({
|
|
|
|
|
{...props}
|
|
|
|
|
>
|
|
|
|
|
{children}
|
|
|
|
|
<SheetPrimitive.Close className="ring-offset-background focus:ring-ring data-[state=open]:bg-secondary absolute top-4 right-4 rounded-xs opacity-70 transition-opacity hover:opacity-100 focus:ring-2 focus:ring-offset-2 focus:outline-hidden disabled:pointer-events-none">
|
|
|
|
|
<XIcon className="size-4" />
|
|
|
|
|
<SheetPrimitive.Close className="ring-offset-background focus:ring-ring data-[state=open]:bg-secondary absolute top-4 right-4 rounded-xs opacity-60 transition-opacity hover:opacity-100 focus:ring-2 focus:ring-offset-2 focus:outline-hidden disabled:pointer-events-none">
|
|
|
|
|
<XIcon className="size-5" />
|
|
|
|
|
<span className="sr-only">Close</span>
|
|
|
|
|
</SheetPrimitive.Close>
|
|
|
|
|
</SheetPrimitive.Content>
|
|
|
|
|
</SheetPortal>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
SheetContent.displayName = "SheetContent";
|
|
|
|
|
|
|
|
|
|
function SheetHeader({ className, ...props }: React.ComponentProps<"div">) {
|
|
|
|
|
return <div data-slot="sheet-header" className={cn("flex flex-col gap-1.5 p-4", className)} {...props} />;
|
|
|
|
|
}
|
|
|
|
|
const SheetHeader = React.forwardRef<React.ElementRef<"div">, React.ComponentPropsWithoutRef<"div">>(({ className, ...props }, ref) => {
|
|
|
|
|
return <div ref={ref} data-slot="sheet-header" className={cn("flex flex-col gap-1.5 p-4", className)} {...props} />;
|
|
|
|
|
});
|
|
|
|
|
SheetHeader.displayName = "SheetHeader";
|
|
|
|
|
|
|
|
|
|
function SheetFooter({ className, ...props }: React.ComponentProps<"div">) {
|
|
|
|
|
return <div data-slot="sheet-footer" className={cn("mt-auto flex flex-col gap-2 p-4", className)} {...props} />;
|
|
|
|
|
}
|
|
|
|
|
const SheetFooter = React.forwardRef<React.ElementRef<"div">, React.ComponentPropsWithoutRef<"div">>(({ className, ...props }, ref) => {
|
|
|
|
|
return <div ref={ref} data-slot="sheet-footer" className={cn("mt-auto flex flex-col gap-2 p-4", className)} {...props} />;
|
|
|
|
|
});
|
|
|
|
|
SheetFooter.displayName = "SheetFooter";
|
|
|
|
|
|
|
|
|
|
function SheetTitle({ className, ...props }: React.ComponentProps<typeof SheetPrimitive.Title>) {
|
|
|
|
|
return <SheetPrimitive.Title data-slot="sheet-title" className={cn("text-foreground font-semibold", className)} {...props} />;
|
|
|
|
|
}
|
|
|
|
|
const SheetTitle = React.forwardRef<
|
|
|
|
|
React.ElementRef<typeof SheetPrimitive.Title>,
|
|
|
|
|
React.ComponentPropsWithoutRef<typeof SheetPrimitive.Title>
|
|
|
|
|
>(({ className, ...props }, ref) => {
|
|
|
|
|
return <SheetPrimitive.Title ref={ref} data-slot="sheet-title" className={cn("text-foreground font-semibold", className)} {...props} />;
|
|
|
|
|
});
|
|
|
|
|
SheetTitle.displayName = "SheetTitle";
|
|
|
|
|
|
|
|
|
|
function SheetDescription({ className, ...props }: React.ComponentProps<typeof SheetPrimitive.Description>) {
|
|
|
|
|
return <SheetPrimitive.Description data-slot="sheet-description" className={cn("text-muted-foreground text-sm", className)} {...props} />;
|
|
|
|
|
}
|
|
|
|
|
const SheetDescription = React.forwardRef<
|
|
|
|
|
React.ElementRef<typeof SheetPrimitive.Description>,
|
|
|
|
|
React.ComponentPropsWithoutRef<typeof SheetPrimitive.Description>
|
|
|
|
|
>(({ className, ...props }, ref) => {
|
|
|
|
|
return (
|
|
|
|
|
<SheetPrimitive.Description
|
|
|
|
|
ref={ref}
|
|
|
|
|
data-slot="sheet-description"
|
|
|
|
|
className={cn("text-muted-foreground text-sm", className)}
|
|
|
|
|
{...props}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
SheetDescription.displayName = "SheetDescription";
|
|
|
|
|
|
|
|
|
|
export { Sheet, SheetTrigger, SheetClose, SheetContent, SheetHeader, SheetFooter, SheetTitle, SheetDescription };
|
|
|
|
|