mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
7753ba2d37
Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Yeuoly <admin@srmxy.cn> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: StyleZhang <jasonapring2015@outlook.com> Co-authored-by: jyong <jyong@dify.ai> Co-authored-by: nite-knite <nkCoding@gmail.com> Co-authored-by: jyong <718720800@qq.com>
53 lines
1.4 KiB
TypeScript
53 lines
1.4 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'
|
|
|
|
type TooltipProps = {
|
|
selector: string
|
|
content?: string
|
|
disabled?: boolean
|
|
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
|
|
noArrow?: boolean
|
|
}
|
|
|
|
const Tooltip: FC<TooltipProps> = ({
|
|
selector,
|
|
content,
|
|
disabled,
|
|
position = 'top',
|
|
children,
|
|
htmlContent,
|
|
className,
|
|
clickable,
|
|
noArrow,
|
|
}) => {
|
|
return (
|
|
<div className='tooltip-container'>
|
|
{React.cloneElement(children as React.ReactElement, {
|
|
'data-tooltip-id': selector,
|
|
})
|
|
}
|
|
<ReactTooltip
|
|
id={selector}
|
|
content={content}
|
|
className={classNames('!z-[999] !bg-white !text-xs !font-normal !text-gray-700 !shadow-lg !opacity-100', className)}
|
|
place={position}
|
|
clickable={clickable}
|
|
isOpen={disabled ? false : undefined}
|
|
noArrow={noArrow}
|
|
>
|
|
{htmlContent && htmlContent}
|
|
</ReactTooltip>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Tooltip
|