mirror of
https://github.com/DocNR/POWR.git
synced 2025-04-23 01:01:27 +00:00
46 lines
1.8 KiB
TypeScript
46 lines
1.8 KiB
TypeScript
![]() |
import * as HoverCardPrimitive from '@rn-primitives/hover-card';
|
||
|
import * as React from 'react';
|
||
|
import { Platform, StyleSheet } from 'react-native';
|
||
|
import Animated, { FadeIn } from 'react-native-reanimated';
|
||
|
import { cn } from '@/lib/utils';
|
||
|
import { TextClassContext } from '@/components/ui/text';
|
||
|
|
||
|
const HoverCard = HoverCardPrimitive.Root;
|
||
|
|
||
|
const HoverCardTrigger = HoverCardPrimitive.Trigger;
|
||
|
|
||
|
const HoverCardContent = React.forwardRef<
|
||
|
HoverCardPrimitive.ContentRef,
|
||
|
HoverCardPrimitive.ContentProps
|
||
|
>(({ className, align = 'center', sideOffset = 4, ...props }, ref) => {
|
||
|
const { open } = HoverCardPrimitive.useRootContext();
|
||
|
return (
|
||
|
<HoverCardPrimitive.Portal>
|
||
|
<HoverCardPrimitive.Overlay
|
||
|
style={Platform.OS !== 'web' ? StyleSheet.absoluteFill : undefined}
|
||
|
>
|
||
|
<Animated.View entering={FadeIn}>
|
||
|
<TextClassContext.Provider value='text-popover-foreground'>
|
||
|
<HoverCardPrimitive.Content
|
||
|
ref={ref}
|
||
|
align={align}
|
||
|
sideOffset={sideOffset}
|
||
|
className={cn(
|
||
|
'z-50 w-64 rounded-md border border-border bg-popover p-4 shadow-md shadow-foreground/5 web:outline-none web:cursor-auto 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',
|
||
|
open
|
||
|
? 'web:animate-in web:fade-in-0 web:zoom-in-95'
|
||
|
: 'web:animate-out web:fade-out-0 web:zoom-out-95',
|
||
|
className
|
||
|
)}
|
||
|
{...props}
|
||
|
/>
|
||
|
</TextClassContext.Provider>
|
||
|
</Animated.View>
|
||
|
</HoverCardPrimitive.Overlay>
|
||
|
</HoverCardPrimitive.Portal>
|
||
|
);
|
||
|
});
|
||
|
HoverCardContent.displayName = HoverCardPrimitive.Content.displayName;
|
||
|
|
||
|
export { HoverCard, HoverCardContent, HoverCardTrigger };
|