mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-17 23:50:52 +08:00

* basic flex * chore: style basic * chore: status style * chore: small size * chore: label vertical * chore: more style * chore: hover disabled * chore: variant * chore: dot variant * chore: max width * chore: hover dot * chore: update style * chore: click style * chore: init percent * chore: pass detail * chore: for progress * chore: clean up * chore: clean up * chore: multiple css var * chore: status text * chore: status use var * chore: fix nest * chore: use svg * chore: type of panel * chore: offset support * chore: inline offset * chore: warning of steps * docs: add semantic preview * chore: semantic transition * chore: hover * chore: adjust style * chore: update semantic preview * chore: fix nav style * chore: patch panel motion * chore: update semantic preview * docs: update config provider doc * chore: fix part ts def * chore: fix test ts * test: update test case * test: coverage * chore: fix lint * test: update test case * test: update snapshot * chore: adjust style * chore: fix rtl * docs: update design * chore: update sctructure * chore: update comment * chore: clean up * chore: clean up * chore: cursor style * chore: coverage * docs: add missing part * chore: order * test: add test case * chore: fix ts * chore: clean up
58 lines
1.4 KiB
TypeScript
58 lines
1.4 KiB
TypeScript
import * as React from 'react';
|
|
import useEvent from '@rc-component/util/lib/hooks/useEvent';
|
|
import raf from '@rc-component/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';
|
|
import type { WaveProps } from '.';
|
|
|
|
const useWave = (
|
|
nodeRef: React.RefObject<HTMLElement>,
|
|
className: string,
|
|
component?: WaveComponent,
|
|
colorSource?: WaveProps['colorSource'],
|
|
) => {
|
|
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 || {};
|
|
|
|
// Customize wave effect
|
|
(showEffect || showWaveEffect)(targetNode, {
|
|
className,
|
|
token,
|
|
component,
|
|
event,
|
|
hashId,
|
|
colorSource,
|
|
});
|
|
});
|
|
|
|
const rafId = React.useRef<number>(null);
|
|
|
|
// Merge trigger event into one for each frame
|
|
const showDebounceWave: ShowWave = (event) => {
|
|
raf.cancel(rafId.current!);
|
|
|
|
rafId.current = raf(() => {
|
|
showWave(event);
|
|
});
|
|
};
|
|
|
|
return showDebounceWave;
|
|
};
|
|
|
|
export default useWave;
|