import * as React from 'react'; import { presetPrimaryColors } from '@ant-design/colors'; import { ProgressGradient, ProgressProps, StringGradients } from './progress'; import { validProgress, getSuccessPercent } from './utils'; interface LineProps extends ProgressProps { prefixCls: string; children: React.ReactNode; } /** * { * '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(', '); }; /** * { * '0%': '#afc163', * '25%': '#66FF00', * '50%': '#00CC00', ====> linear-gradient(to right, #afc163 0%, #66FF00 25%, * '75%': '#009900', #00CC00 50%, #009900 75%, #ffffff 100%) * '100%': '#ffffff' * } * * 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. */ export const handleGradient = (strokeColor: ProgressGradient) => { const { from = presetPrimaryColors.blue, to = presetPrimaryColors.blue, direction = '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, percent, strokeWidth, size, strokeColor, strokeLinecap, children, trailColor, success, } = props; const backgroundProps = strokeColor && typeof strokeColor !== 'string' ? handleGradient(strokeColor) : { background: strokeColor, }; const trailStyle = trailColor ? { backgroundColor: trailColor, } : undefined; const percentStyle = { width: `${validProgress(percent)}%`, height: strokeWidth || (size === 'small' ? 6 : 8), borderRadius: strokeLinecap === 'square' ? 0 : '', ...backgroundProps, } as React.CSSProperties; const successPercent = getSuccessPercent(props); const successPercentStyle = { width: `${validProgress(successPercent)}%`, height: strokeWidth || (size === 'small' ? 6 : 8), borderRadius: strokeLinecap === 'square' ? 0 : '', backgroundColor: success?.strokeColor, } as React.CSSProperties; const successSegment = successPercent !== undefined ? (
) : null; return ( <>
{successSegment}
{children} ); }; export default Line;