mhsf-dev/src/components/ui/dropdown-menu.tsx

231 lines
8.4 KiB
TypeScript
Raw Normal View History

2024-10-05 09:07:26 -05:00
/*
* MHSF, Minehut Server List
* All external content is rather licensed under the ECA Agreement
* located here: https://list.mlnehut.com/docs/legal/external-content-agreement
*
* All code under MHSF is licensed under the MIT License
* by open source contributors
*
* Copyright (c) 2024 dvelo
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
2024-11-03 09:38:25 -06:00
"use client";
2024-07-23 18:49:21 -05:00
2024-11-03 09:38:25 -06:00
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
import { Check, ChevronRight, Circle } from "lucide-react";
import * as React from "react";
2024-07-23 18:49:21 -05:00
2024-11-03 09:38:25 -06:00
import { cn } from "@/lib/utils";
2024-07-23 18:49:21 -05:00
2024-11-03 09:38:25 -06:00
const DropdownMenu = DropdownMenuPrimitive.Root;
2024-07-23 18:49:21 -05:00
2024-11-03 09:38:25 -06:00
const DropdownMenuTrigger = DropdownMenuPrimitive.Trigger;
2024-07-23 18:49:21 -05:00
2024-11-03 09:38:25 -06:00
const DropdownMenuGroup = DropdownMenuPrimitive.Group;
2024-07-23 18:49:21 -05:00
2024-11-03 09:38:25 -06:00
const DropdownMenuPortal = DropdownMenuPrimitive.Portal;
2024-07-23 18:49:21 -05:00
2024-11-03 09:38:25 -06:00
const DropdownMenuSub = DropdownMenuPrimitive.Sub;
2024-07-23 18:49:21 -05:00
2024-11-03 09:38:25 -06:00
const DropdownMenuRadioGroup = DropdownMenuPrimitive.RadioGroup;
2024-07-23 18:49:21 -05:00
const DropdownMenuSubTrigger = React.forwardRef<
2024-11-03 09:38:25 -06:00
React.ElementRef<typeof DropdownMenuPrimitive.SubTrigger>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubTrigger> & {
inset?: boolean;
}
2024-07-23 18:49:21 -05:00
>(({ className, inset, children, ...props }, ref) => (
2024-11-03 09:38:25 -06:00
<DropdownMenuPrimitive.SubTrigger
ref={ref}
className={cn(
"flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-accent data-[state=open]:bg-accent",
inset && "pl-8",
className,
)}
{...props}
>
{children}
<ChevronRight className="ml-auto h-4 w-4" />
</DropdownMenuPrimitive.SubTrigger>
));
2024-07-23 18:49:21 -05:00
DropdownMenuSubTrigger.displayName =
2024-11-03 09:38:25 -06:00
DropdownMenuPrimitive.SubTrigger.displayName;
2024-07-23 18:49:21 -05:00
const DropdownMenuSubContent = React.forwardRef<
2024-11-03 09:38:25 -06:00
React.ElementRef<typeof DropdownMenuPrimitive.SubContent>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubContent>
2024-07-23 18:49:21 -05:00
>(({ className, ...props }, ref) => (
2024-11-03 09:38:25 -06:00
<DropdownMenuPrimitive.SubContent
ref={ref}
className={cn(
"z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
className,
)}
{...props}
/>
));
2024-07-23 18:49:21 -05:00
DropdownMenuSubContent.displayName =
2024-11-03 09:38:25 -06:00
DropdownMenuPrimitive.SubContent.displayName;
2024-07-23 18:49:21 -05:00
const DropdownMenuContent = React.forwardRef<
2024-11-03 09:38:25 -06:00
React.ElementRef<typeof DropdownMenuPrimitive.Content>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Content>
2024-07-23 18:49:21 -05:00
>(({ className, sideOffset = 4, ...props }, ref) => (
2024-11-03 09:38:25 -06:00
<DropdownMenuPrimitive.Portal>
<DropdownMenuPrimitive.Content
ref={ref}
sideOffset={sideOffset}
className={cn(
"z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
className,
)}
{...props}
/>
</DropdownMenuPrimitive.Portal>
));
DropdownMenuContent.displayName = DropdownMenuPrimitive.Content.displayName;
2024-07-23 18:49:21 -05:00
const DropdownMenuItem = React.forwardRef<
2024-11-03 09:38:25 -06:00
React.ElementRef<typeof DropdownMenuPrimitive.Item>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Item> & {
inset?: boolean;
}
2024-07-23 18:49:21 -05:00
>(({ className, inset, ...props }, ref) => (
2024-11-03 09:38:25 -06:00
<DropdownMenuPrimitive.Item
ref={ref}
className={cn(
"relative flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&>svg]:size-4 [&>svg]:shrink-0",
inset && "pl-8",
className,
)}
{...props}
/>
));
DropdownMenuItem.displayName = DropdownMenuPrimitive.Item.displayName;
2024-07-23 18:49:21 -05:00
const DropdownMenuCheckboxItem = React.forwardRef<
2024-11-03 09:38:25 -06:00
React.ElementRef<typeof DropdownMenuPrimitive.CheckboxItem>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.CheckboxItem>
2024-07-23 18:49:21 -05:00
>(({ className, children, checked, ...props }, ref) => (
2024-11-03 09:38:25 -06:00
<DropdownMenuPrimitive.CheckboxItem
ref={ref}
className={cn(
"relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
className,
)}
checked={checked}
{...props}
>
<span className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center">
<DropdownMenuPrimitive.ItemIndicator>
<Check className="h-4 w-4" />
</DropdownMenuPrimitive.ItemIndicator>
</span>
{children}
</DropdownMenuPrimitive.CheckboxItem>
));
2024-07-23 18:49:21 -05:00
DropdownMenuCheckboxItem.displayName =
2024-11-03 09:38:25 -06:00
DropdownMenuPrimitive.CheckboxItem.displayName;
2024-07-23 18:49:21 -05:00
const DropdownMenuRadioItem = React.forwardRef<
2024-11-03 09:38:25 -06:00
React.ElementRef<typeof DropdownMenuPrimitive.RadioItem>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.RadioItem>
2024-07-23 18:49:21 -05:00
>(({ className, children, ...props }, ref) => (
2024-11-03 09:38:25 -06:00
<DropdownMenuPrimitive.RadioItem
ref={ref}
className={cn(
"relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&>svg]:size-4 [&>svg]:shrink-0 gap-3",
className,
)}
{...props}
>
<span className="absolute left-2 flex h-3.5 w-3.5 items-center justify-center">
<DropdownMenuPrimitive.ItemIndicator>
<Circle className="h-2 w-2 fill-current" />
</DropdownMenuPrimitive.ItemIndicator>
</span>
{children}
</DropdownMenuPrimitive.RadioItem>
));
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive.RadioItem.displayName;
2024-07-23 18:49:21 -05:00
const DropdownMenuLabel = React.forwardRef<
2024-11-03 09:38:25 -06:00
React.ElementRef<typeof DropdownMenuPrimitive.Label>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Label> & {
inset?: boolean;
}
2024-07-23 18:49:21 -05:00
>(({ className, inset, ...props }, ref) => (
2024-11-03 09:38:25 -06:00
<DropdownMenuPrimitive.Label
ref={ref}
className={cn(
"px-2 py-1.5 text-sm font-semibold",
inset && "pl-8",
className,
)}
{...props}
/>
));
DropdownMenuLabel.displayName = DropdownMenuPrimitive.Label.displayName;
2024-07-23 18:49:21 -05:00
const DropdownMenuSeparator = React.forwardRef<
2024-11-03 09:38:25 -06:00
React.ElementRef<typeof DropdownMenuPrimitive.Separator>,
React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Separator>
2024-07-23 18:49:21 -05:00
>(({ className, ...props }, ref) => (
2024-11-03 09:38:25 -06:00
<DropdownMenuPrimitive.Separator
ref={ref}
className={cn("-mx-1 my-1 h-px bg-muted", className)}
{...props}
/>
));
DropdownMenuSeparator.displayName = DropdownMenuPrimitive.Separator.displayName;
2024-07-23 18:49:21 -05:00
const DropdownMenuShortcut = ({
2024-11-03 09:38:25 -06:00
className,
...props
2024-07-23 18:49:21 -05:00
}: React.HTMLAttributes<HTMLSpanElement>) => {
2024-11-03 09:38:25 -06:00
return (
<span
className={cn("ml-auto text-xs tracking-widest opacity-60", className)}
{...props}
/>
);
};
DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
2024-07-23 18:49:21 -05:00
export {
2024-11-03 09:38:25 -06:00
DropdownMenu,
DropdownMenuTrigger,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuCheckboxItem,
DropdownMenuRadioItem,
DropdownMenuLabel,
DropdownMenuSeparator,
DropdownMenuShortcut,
DropdownMenuGroup,
DropdownMenuPortal,
DropdownMenuSub,
DropdownMenuSubContent,
DropdownMenuSubTrigger,
DropdownMenuRadioGroup,
};