| import * as React from 'react'; |
| import useEvent from 'rc-util/lib/hooks/useEvent'; |
| import raf from 'rc-util/lib/raf'; |
|
|
| import { ConfigContext } from '../../config-provider'; |
| import useToken from '../../theme/useToken'; |
| import { TARGET_CLS } from './interface'; |
| import type { ShowWave, WaveComponent } from './interface'; |
| import showWaveEffect from './WaveEffect'; |
|
|
| const useWave = ( |
| nodeRef: React.RefObject<HTMLElement>, |
| className: string, |
| component?: WaveComponent, |
| ) => { |
| const { wave } = React.useContext(ConfigContext); |
| const [, token, hashId] = useToken(); |
|
|
| const showWave = useEvent<ShowWave>((event) => { |
| const node = nodeRef.current!; |
|
|
| if (wave?.disabled || !node) { |
| return; |
| } |
|
|
| const targetNode = node.querySelector<HTMLElement>(`.${TARGET_CLS}`) || node; |
|
|
| const { showEffect } = wave || {}; |
|
|
| |
| (showEffect || showWaveEffect)(targetNode, { |
| className, |
| token, |
| component, |
| event, |
| hashId, |
| }); |
| }); |
|
|
| const rafId = React.useRef<number>(null); |
|
|
| |
| const showDebounceWave: ShowWave = (event) => { |
| raf.cancel(rafId.current!); |
|
|
| rafId.current = raf(() => { |
| showWave(event); |
| }); |
| }; |
|
|
| return showDebounceWave; |
| }; |
|
|
| export default useWave; |
|
|