wwf
2025-05-20 938c3e5a587ce950a94964ea509b9e7f8834dfae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
'use client'
import type { FC } from 'react'
import React, { useRef } from 'react'
import { useHover } from 'ahooks'
import { RiResetLeftLine } from '@remixicon/react'
import Tooltip from '@/app/components/base/tooltip'
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 popupContent={t('common.operation.reset')}>
          <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>
        </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)