mirror of
https://github.com/langgenius/dify.git
synced 2026-05-02 16:38:04 +08:00
47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import { Tooltip, TooltipContent, TooltipTrigger } from '@langgenius/dify-ui/tooltip'
|
|
import { RiResetLeftLine } from '@remixicon/react'
|
|
import { useHover } from 'ahooks'
|
|
import * as React from 'react'
|
|
import { useRef } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
type Props = {
|
|
onReset: () => void
|
|
}
|
|
|
|
const EditedBeacon: FC<Props> = ({
|
|
onReset,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
const ref = useRef(null)
|
|
const isHovering = useHover(ref)
|
|
|
|
return (
|
|
<div ref={ref} className="size-4 cursor-pointer">
|
|
{isHovering
|
|
? (
|
|
<Tooltip>
|
|
<TooltipTrigger
|
|
render={(
|
|
<div className="flex size-4 items-center justify-center rounded-full bg-text-accent-secondary" onClick={onReset}>
|
|
<RiResetLeftLine className="size-[10px] text-text-primary-on-surface" />
|
|
</div>
|
|
)}
|
|
/>
|
|
<TooltipContent>
|
|
{t('operation.reset', { ns: 'common' })}
|
|
</TooltipContent>
|
|
</Tooltip>
|
|
)
|
|
: (
|
|
<div className="flex size-4 items-center justify-center">
|
|
<div className="size-1 rounded-full bg-text-accent-secondary"></div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
export default React.memo(EditedBeacon)
|