### What problem does this PR solve? - Modify and adjust styles (CSS vars, components) to match the design system - Adjust file and directory structure of admin UI ### Type of change - [x] Refactoring
55 lines
1.8 KiB
TypeScript
55 lines
1.8 KiB
TypeScript
'use client';
|
|
|
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
import * as React from 'react';
|
|
|
|
import { cn } from '@/lib/utils';
|
|
|
|
const Popover = (props: PopoverPrimitive.PopoverProps) => {
|
|
const { children, open: openState, onOpenChange } = props;
|
|
const [open, setOpen] = React.useState(true);
|
|
React.useEffect(() => {
|
|
setOpen(!!openState);
|
|
}, [openState]);
|
|
const handleOnOpenChange = React.useCallback(
|
|
(e: boolean) => {
|
|
if (onOpenChange) {
|
|
onOpenChange?.(e);
|
|
}
|
|
setOpen(e);
|
|
},
|
|
[onOpenChange],
|
|
);
|
|
return (
|
|
<PopoverPrimitive.Root open={open} onOpenChange={handleOnOpenChange}>
|
|
{children}
|
|
</PopoverPrimitive.Root>
|
|
);
|
|
};
|
|
|
|
const PopoverTrigger = PopoverPrimitive.Trigger;
|
|
|
|
const PopoverContent = React.forwardRef<
|
|
React.ElementRef<typeof PopoverPrimitive.Content>,
|
|
React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content>
|
|
>(({ className, align = 'center', sideOffset = 4, ...props }, ref) => (
|
|
<PopoverPrimitive.Portal>
|
|
<PopoverPrimitive.Content
|
|
ref={ref}
|
|
align={align}
|
|
sideOffset={sideOffset}
|
|
className={cn(
|
|
'z-50 w-72 rounded-md border-0.5 border-border-button bg-bg-base p-4 text-text-primary shadow-lg outline-none',
|
|
'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-9',
|
|
'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}
|
|
/>
|
|
</PopoverPrimitive.Portal>
|
|
));
|
|
PopoverContent.displayName = PopoverPrimitive.Content.displayName;
|
|
|
|
export { Popover, PopoverContent, PopoverTrigger };
|