mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 00:49:39 +08:00
25 lines
769 B
TypeScript
25 lines
769 B
TypeScript
|
/* eslint-disable import/prefer-default-export */
|
||
|
|
||
|
import type * as React from 'react';
|
||
|
import classNames from 'classnames';
|
||
|
import { PresetColorTypes } from '../_util/colors';
|
||
|
|
||
|
const PresetColorRegex = new RegExp(`^(${PresetColorTypes.join('|')})(-inverse)?$`);
|
||
|
|
||
|
export function parseColor(prefixCls: string, color?: string) {
|
||
|
const className = classNames({
|
||
|
[`${prefixCls}-${color}`]: color && PresetColorRegex.test(color),
|
||
|
});
|
||
|
|
||
|
let overlayStyle: React.CSSProperties | undefined;
|
||
|
let arrowStyle: React.CSSProperties | undefined;
|
||
|
|
||
|
if (color && !PresetColorRegex.test(color)) {
|
||
|
overlayStyle = { background: color };
|
||
|
// @ts-ignore
|
||
|
arrowStyle = { '--antd-arrow-background-color': color };
|
||
|
}
|
||
|
|
||
|
return { className, overlayStyle, arrowStyle };
|
||
|
}
|