mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 15:49:10 +08:00
4f16966e28
* fix * refactor[Wave]: CC => FC * fix lint * fix * fix * fix * add test case * add test case * fix test * fix test * test case * add test case * fix * fix * fix * fix * raname * fix * test case * test case * test case * fix test * test case * refactor: Use React way * test: coverage * chore: clean up * rerun fail ci * fix: React 17 error * test: fix test case * test: fix test case * fix borderRadius * test: fix test case * chore: clean up * chore: clean up Co-authored-by: 二货机器人 <smith3816@gmail.com>
72 lines
2.2 KiB
TypeScript
72 lines
2.2 KiB
TypeScript
import classNames from 'classnames';
|
|
import { composeRef, supportRef } from 'rc-util/lib/ref';
|
|
import isVisible from 'rc-util/lib/Dom/isVisible';
|
|
import React, { useContext, useRef } from 'react';
|
|
import type { ConfigConsumerProps } from '../../config-provider';
|
|
import { ConfigContext } from '../../config-provider';
|
|
import { cloneElement } from '../reactNode';
|
|
import useStyle from './style';
|
|
import useWave from './useWave';
|
|
|
|
export interface WaveProps {
|
|
disabled?: boolean;
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
const Wave: React.FC<WaveProps> = (props) => {
|
|
const { children, disabled } = props;
|
|
const { getPrefixCls } = useContext<ConfigConsumerProps>(ConfigContext);
|
|
const containerRef = useRef<HTMLElement>(null);
|
|
|
|
// ============================== Style ===============================
|
|
const prefixCls = getPrefixCls('wave');
|
|
const [, hashId] = useStyle(prefixCls);
|
|
|
|
// =============================== Wave ===============================
|
|
const showWave = useWave(containerRef, classNames(prefixCls, hashId));
|
|
|
|
// ============================== Effect ==============================
|
|
React.useEffect(() => {
|
|
const node = containerRef.current;
|
|
if (!node || node.nodeType !== 1 || disabled) {
|
|
return;
|
|
}
|
|
|
|
// Click handler
|
|
const onClick = (e: MouseEvent) => {
|
|
// Fix radio button click twice
|
|
if (
|
|
(e.target as HTMLElement).tagName === 'INPUT' ||
|
|
!isVisible(e.target as HTMLElement) ||
|
|
// No need wave
|
|
!node.getAttribute ||
|
|
node.getAttribute('disabled') ||
|
|
(node as HTMLInputElement).disabled ||
|
|
node.className.includes('disabled') ||
|
|
node.className.includes('-leave')
|
|
) {
|
|
return;
|
|
}
|
|
|
|
showWave();
|
|
};
|
|
|
|
// Bind events
|
|
node.addEventListener('click', onClick, true);
|
|
return () => {
|
|
node.removeEventListener('click', onClick, true);
|
|
};
|
|
}, [disabled]);
|
|
|
|
// ============================== Render ==============================
|
|
if (!React.isValidElement(children)) {
|
|
return (children ?? null) as unknown as React.ReactElement;
|
|
}
|
|
|
|
const ref = supportRef(children) ? composeRef((children as any).ref, containerRef) : containerRef;
|
|
|
|
return cloneElement(children, { ref });
|
|
};
|
|
|
|
export default Wave;
|