import * as React from 'react'; import classNames from 'classnames'; import omit from 'rc-util/lib/omit'; import CloseOutlined from '@ant-design/icons/CloseOutlined'; import CheckOutlined from '@ant-design/icons/CheckOutlined'; import CheckCircleFilled from '@ant-design/icons/CheckCircleFilled'; import CloseCircleFilled from '@ant-design/icons/CloseCircleFilled'; import { ConfigContext } from '../config-provider'; import { tuple } from '../_util/type'; import warning from '../_util/warning'; import Line from './Line'; import Circle from './Circle'; import Steps from './Steps'; import { validProgress, getSuccessPercent } from './utils'; import useStyle from './style'; const ProgressTypes = tuple('line', 'circle', 'dashboard'); export type ProgressType = typeof ProgressTypes[number]; const ProgressStatuses = tuple('normal', 'exception', 'active', 'success'); export type ProgressSize = 'default' | 'small'; export type StringGradients = { [percentage: string]: string }; type FromToGradients = { from: string; to: string }; export type ProgressGradient = { direction?: string } & (StringGradients | FromToGradients); export interface SuccessProps { percent?: number; /** @deprecated Use `percent` instead */ progress?: number; strokeColor?: string; } export interface ProgressProps { prefixCls?: string; className?: string; type?: ProgressType; percent?: number; format?: (percent?: number, successPercent?: number) => React.ReactNode; status?: typeof ProgressStatuses[number]; showInfo?: boolean; strokeWidth?: number; strokeLinecap?: 'butt' | 'square' | 'round'; strokeColor?: string | ProgressGradient; trailColor?: string; width?: number; success?: SuccessProps; style?: React.CSSProperties; gapDegree?: number; gapPosition?: 'top' | 'bottom' | 'left' | 'right'; size?: ProgressSize; steps?: number; /** @deprecated Use `success` instead */ successPercent?: number; children?: React.ReactNode; } const Progress: React.FC = (props: ProgressProps) => { const { percent = 0, size = 'default', showInfo = true, type = 'line' } = props; function getPercentNumber() { const successPercent = getSuccessPercent(props); return parseInt( successPercent !== undefined ? successPercent.toString() : percent.toString(), 10, ); } function getProgressStatus() { const { status } = props; if (ProgressStatuses.indexOf(status!) < 0 && getPercentNumber() >= 100) { return 'success'; } return status || 'normal'; } function renderProcessInfo(prefixCls: string, progressStatus: typeof ProgressStatuses[number]) { const { format } = props; const successPercent = getSuccessPercent(props); if (!showInfo) { return null; } let text; const textFormatter = format || (percentNumber => `${percentNumber}%`); const isLineType = type === 'line'; if (format || (progressStatus !== 'exception' && progressStatus !== 'success')) { text = textFormatter(validProgress(percent), validProgress(successPercent)); } else if (progressStatus === 'exception') { text = isLineType ? : ; } else if (progressStatus === 'success') { text = isLineType ? : ; } return ( {text} ); } const { getPrefixCls, direction } = React.useContext(ConfigContext); const { prefixCls: customizePrefixCls, className, steps, strokeColor, ...restProps } = props; const prefixCls = getPrefixCls('progress', customizePrefixCls); const [wrapSSR, hashId] = useStyle(prefixCls); const progressStatus = getProgressStatus(); const progressInfo = renderProcessInfo(prefixCls, progressStatus); warning( !('successPercent' in props), 'Progress', '`successPercent` is deprecated. Please use `success.percent` instead.', ); let progress; // Render progress shape if (type === 'line') { progress = steps ? ( {progressInfo} ) : ( {progressInfo} ); } else if (type === 'circle' || type === 'dashboard') { progress = ( {progressInfo} ); } const classString = classNames( prefixCls, { [`${prefixCls}-${(type === 'dashboard' && 'circle') || (steps && 'steps') || type}`]: true, [`${prefixCls}-status-${progressStatus}`]: true, [`${prefixCls}-show-info`]: showInfo, [`${prefixCls}-${size}`]: size, [`${prefixCls}-rtl`]: direction === 'rtl', }, className, hashId, ); return wrapSSR(
{progress}
, ); }; export default Progress;