import { presetPrimaryColors } from '@ant-design/colors'; import * as React from 'react'; import type { DirectionType } from '../config-provider'; import warning from '../_util/warning'; import type { ProgressGradient, ProgressProps, StringGradients } from './progress'; import { getSize, getSuccessPercent, validProgress } from './utils'; interface LineProps extends ProgressProps { prefixCls: string; direction?: DirectionType; children: React.ReactNode; strokeColor?: string | ProgressGradient; } /** * @example * { * "0%": "#afc163", * "75%": "#009900", * "50%": "green", // ====> '#afc163 0%, #66FF00 25%, #00CC00 50%, #009900 75%, #ffffff 100%' * "25%": "#66FF00", * "100%": "#ffffff" * } */ export const sortGradient = (gradients: StringGradients) => { let tempArr: any[] = []; Object.keys(gradients).forEach((key) => { const formattedKey = parseFloat(key.replace(/%/g, '')); if (!isNaN(formattedKey)) { tempArr.push({ key: formattedKey, value: gradients[key], }); } }); tempArr = tempArr.sort((a, b) => a.key - b.key); return tempArr.map(({ key, value }) => `${value} ${key}%`).join(', '); }; /** * Then this man came to realize the truth: Besides six pence, there is the moon. Besides bread and * butter, there is the bug. And... Besides women, there is the code. * * @example * { * "0%": "#afc163", * "25%": "#66FF00", * "50%": "#00CC00", // ====> linear-gradient(to right, #afc163 0%, #66FF00 25%, * "75%": "#009900", // #00CC00 50%, #009900 75%, #ffffff 100%) * "100%": "#ffffff" * } */ export const handleGradient = ( strokeColor: ProgressGradient, directionConfig?: DirectionType, ): React.CSSProperties => { const { from = presetPrimaryColors.blue, to = presetPrimaryColors.blue, direction = directionConfig === 'rtl' ? 'to left' : 'to right', ...rest } = strokeColor; if (Object.keys(rest).length !== 0) { const sortedGradients = sortGradient(rest as StringGradients); return { backgroundImage: `linear-gradient(${direction}, ${sortedGradients})` }; } return { backgroundImage: `linear-gradient(${direction}, ${from}, ${to})` }; }; const Line: React.FC = (props) => { const { prefixCls, direction: directionConfig, percent, size, strokeWidth, strokeColor, strokeLinecap = 'round', children, trailColor = null, success, } = props; const backgroundProps: React.CSSProperties = strokeColor && typeof strokeColor !== 'string' ? handleGradient(strokeColor, directionConfig) : { backgroundColor: strokeColor }; const borderRadius = strokeLinecap === 'square' || strokeLinecap === 'butt' ? 0 : undefined; const trailStyle: React.CSSProperties = { backgroundColor: trailColor || undefined, borderRadius, }; const mergedSize = size ?? [-1, strokeWidth || (size === 'small' ? 6 : 8)]; const [width, height] = getSize(mergedSize, 'line', { strokeWidth }); if (process.env.NODE_ENV !== 'production') { warning( !('strokeWidth' in props), 'Progress', '`strokeWidth` is deprecated. Please use `size` instead.', ); } const percentStyle: React.CSSProperties = { width: `${validProgress(percent)}%`, height, borderRadius, ...backgroundProps, }; const successPercent = getSuccessPercent(props); const successPercentStyle: React.CSSProperties = { width: `${validProgress(successPercent)}%`, height, borderRadius, backgroundColor: success?.strokeColor, }; const outerStyle: React.CSSProperties = { width: width < 0 ? '100%' : width, height, }; return ( <>
{successPercent !== undefined ? (
) : null}
{children} ); }; export default Line;