thêm chức năng Sos và thêm glustack-ui
This commit is contained in:
131
components/ui/gluestack-ui-provider/tooltip/index.tsx
Normal file
131
components/ui/gluestack-ui-provider/tooltip/index.tsx
Normal file
@@ -0,0 +1,131 @@
|
||||
'use client';
|
||||
import React from 'react';
|
||||
import { createTooltip } from '@gluestack-ui/core/tooltip/creator';
|
||||
import { View, Text, ViewStyle } from 'react-native';
|
||||
import type { VariantProps } from '@gluestack-ui/utils/nativewind-utils';
|
||||
import { tva } from '@gluestack-ui/utils/nativewind-utils';
|
||||
import { withStyleContext } from '@gluestack-ui/utils/nativewind-utils';
|
||||
import {
|
||||
Motion,
|
||||
AnimatePresence,
|
||||
MotionComponentProps,
|
||||
} from '@legendapp/motion';
|
||||
import { cssInterop } from 'nativewind';
|
||||
|
||||
type IMotionViewProps = React.ComponentProps<typeof View> &
|
||||
MotionComponentProps<typeof View, ViewStyle, unknown, unknown, unknown>;
|
||||
|
||||
const MotionView = Motion.View as React.ComponentType<IMotionViewProps>;
|
||||
|
||||
export const UITooltip = createTooltip({
|
||||
Root: withStyleContext(View),
|
||||
Content: MotionView,
|
||||
Text: Text,
|
||||
AnimatePresence: AnimatePresence,
|
||||
});
|
||||
|
||||
cssInterop(MotionView, { className: 'style' });
|
||||
|
||||
const tooltipStyle = tva({
|
||||
base: 'w-full h-full web:pointer-events-none',
|
||||
});
|
||||
|
||||
const tooltipContentStyle = tva({
|
||||
base: 'py-1 px-3 rounded-sm bg-background-900 web:pointer-events-auto',
|
||||
});
|
||||
|
||||
const tooltipTextStyle = tva({
|
||||
base: 'font-normal tracking-normal web:select-none text-xs text-typography-50',
|
||||
|
||||
variants: {
|
||||
isTruncated: {
|
||||
true: 'line-clamp-1 truncate',
|
||||
},
|
||||
bold: {
|
||||
true: 'font-bold',
|
||||
},
|
||||
underline: {
|
||||
true: 'underline',
|
||||
},
|
||||
strikeThrough: {
|
||||
true: 'line-through',
|
||||
},
|
||||
size: {
|
||||
'2xs': 'text-2xs',
|
||||
'xs': 'text-xs',
|
||||
'sm': 'text-sm',
|
||||
'md': 'text-base',
|
||||
'lg': 'text-lg',
|
||||
'xl': 'text-xl',
|
||||
'2xl': 'text-2xl',
|
||||
'3xl': 'text-3xl',
|
||||
'4xl': 'text-4xl',
|
||||
'5xl': 'text-5xl',
|
||||
'6xl': 'text-6xl',
|
||||
},
|
||||
sub: {
|
||||
true: 'text-xs',
|
||||
},
|
||||
italic: {
|
||||
true: 'italic',
|
||||
},
|
||||
highlight: {
|
||||
true: 'bg-yellow-500',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
type ITooltipProps = React.ComponentProps<typeof UITooltip> &
|
||||
VariantProps<typeof tooltipStyle> & { className?: string };
|
||||
type ITooltipContentProps = React.ComponentProps<typeof UITooltip.Content> &
|
||||
VariantProps<typeof tooltipContentStyle> & { className?: string };
|
||||
type ITooltipTextProps = React.ComponentProps<typeof UITooltip.Text> &
|
||||
VariantProps<typeof tooltipTextStyle> & { className?: string };
|
||||
|
||||
const Tooltip = React.forwardRef<
|
||||
React.ComponentRef<typeof UITooltip>,
|
||||
ITooltipProps
|
||||
>(function Tooltip({ className, ...props }, ref) {
|
||||
return (
|
||||
<UITooltip
|
||||
ref={ref}
|
||||
className={tooltipStyle({ class: className })}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
});
|
||||
|
||||
const TooltipContent = React.forwardRef<
|
||||
React.ComponentRef<typeof UITooltip.Content>,
|
||||
ITooltipContentProps & { className?: string }
|
||||
>(function TooltipContent({ className, ...props }, ref) {
|
||||
return (
|
||||
<UITooltip.Content
|
||||
ref={ref}
|
||||
{...props}
|
||||
className={tooltipContentStyle({
|
||||
class: className,
|
||||
})}
|
||||
pointerEvents="auto"
|
||||
/>
|
||||
);
|
||||
});
|
||||
|
||||
const TooltipText = React.forwardRef<
|
||||
React.ComponentRef<typeof UITooltip.Text>,
|
||||
ITooltipTextProps & { className?: string }
|
||||
>(function TooltipText({ size, className, ...props }, ref) {
|
||||
return (
|
||||
<UITooltip.Text
|
||||
ref={ref}
|
||||
className={tooltipTextStyle({ size, class: className })}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
});
|
||||
|
||||
Tooltip.displayName = 'Tooltip';
|
||||
TooltipContent.displayName = 'TooltipContent';
|
||||
TooltipText.displayName = 'TooltipText';
|
||||
|
||||
export { Tooltip, TooltipContent, TooltipText };
|
||||
Reference in New Issue
Block a user