mirror of
https://github.com/langgenius/webapp-conversation.git
synced 2025-12-08 17:32:27 +08:00
- Replace .eslintrc.json with eslint.config.mjs - Simplify configuration using @antfu/eslint-config - Add necessary ESLint plugin dependencies - Disable overly strict style rules - Set package.json type to module for ESM support - Fix ESLint disable comment format 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
'use client'
|
|
import classNames from 'classnames'
|
|
import type { FC } from 'react'
|
|
import React from 'react'
|
|
import { Tooltip as ReactTooltip } from 'react-tooltip' // fixed version to 5.8.3 https://github.com/ReactTooltip/react-tooltip/issues/972
|
|
import 'react-tooltip/dist/react-tooltip.css'
|
|
|
|
interface TooltipProps {
|
|
selector: string
|
|
content?: string
|
|
htmlContent?: React.ReactNode
|
|
className?: string // This should use !impornant to override the default styles eg: '!bg-white'
|
|
position?: 'top' | 'right' | 'bottom' | 'left'
|
|
clickable?: boolean
|
|
children: React.ReactNode
|
|
}
|
|
|
|
const Tooltip: FC<TooltipProps> = ({
|
|
selector,
|
|
content,
|
|
position = 'top',
|
|
children,
|
|
htmlContent,
|
|
className,
|
|
clickable,
|
|
}) => {
|
|
return (
|
|
<div className='tooltip-container'>
|
|
{React.cloneElement(children as React.ReactElement, {
|
|
'data-tooltip-id': selector,
|
|
})
|
|
}
|
|
<ReactTooltip
|
|
id={selector}
|
|
content={content}
|
|
className={classNames('!bg-white !text-xs !font-normal !text-gray-700 !shadow-lg !opacity-100', className)}
|
|
place={position}
|
|
clickable={clickable}
|
|
>
|
|
{htmlContent && htmlContent}
|
|
</ReactTooltip>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Tooltip
|