mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 17:31:25 +08:00
4e45276c4e
* 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>
46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
export function getValidateContainer(nodeRoot: Node): Element {
|
|
if (nodeRoot instanceof Document) {
|
|
return nodeRoot.body;
|
|
}
|
|
|
|
return Array.from(nodeRoot.childNodes).find(
|
|
(ele) => ele?.nodeType === Node.ELEMENT_NODE,
|
|
) as Element;
|
|
}
|
|
|
|
export function isNotGrey(color: string) {
|
|
// eslint-disable-next-line no-useless-escape
|
|
const match = (color || '').match(/rgba?\((\d*), (\d*), (\d*)(, [\d.]*)?\)/);
|
|
if (match && match[1] && match[2] && match[3]) {
|
|
return !(match[1] === match[2] && match[2] === match[3]);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
export function isValidWaveColor(color: string) {
|
|
return (
|
|
color &&
|
|
color !== '#fff' &&
|
|
color !== '#ffffff' &&
|
|
color !== 'rgb(255, 255, 255)' &&
|
|
color !== 'rgba(255, 255, 255, 1)' &&
|
|
isNotGrey(color) &&
|
|
!/rgba\((?:\d*, ){3}0\)/.test(color) && // any transparent rgba color
|
|
color !== 'transparent'
|
|
);
|
|
}
|
|
|
|
export function getTargetWaveColor(node: HTMLElement) {
|
|
const { borderTopColor, borderColor, backgroundColor } = getComputedStyle(node);
|
|
if (isValidWaveColor(borderTopColor)) {
|
|
return borderTopColor;
|
|
}
|
|
if (isValidWaveColor(borderColor)) {
|
|
return borderColor;
|
|
}
|
|
if (isValidWaveColor(backgroundColor)) {
|
|
return backgroundColor;
|
|
}
|
|
return null;
|
|
}
|