ant-design/components/progress/progress.tsx

158 lines
4.9 KiB
TypeScript
Raw Normal View History

import PropTypes from 'prop-types';
import * as React from 'react';
2016-03-31 17:46:35 +08:00
import Icon from '../icon';
2016-04-05 16:51:26 +08:00
import { Circle } from 'rc-progress';
import classNames from 'classnames';
2016-04-05 16:51:26 +08:00
const statusColorMap = {
2016-11-13 18:57:45 +08:00
normal: '#108ee9',
2016-04-05 16:51:26 +08:00
exception: '#ff5500',
2016-05-11 09:32:33 +08:00
success: '#87d068',
2016-04-05 16:51:26 +08:00
};
2016-03-31 17:46:35 +08:00
export type ProgressType = 'line' | 'circle' | 'dashboard';
export type ProgressSize = 'default' | 'small';
2016-08-09 15:04:02 +08:00
export interface ProgressProps {
2016-12-19 15:19:15 +08:00
prefixCls?: string;
className?: string;
type?: ProgressType;
2016-08-09 15:04:02 +08:00
percent?: number;
2018-01-19 15:22:37 +08:00
successPercent?: number;
format?: (percent?: number, successPercent?: number) => string;
2016-08-09 15:04:02 +08:00
status?: 'success' | 'active' | 'exception';
showInfo?: boolean;
strokeWidth?: number;
2016-12-19 15:19:15 +08:00
trailColor?: string;
2016-08-09 15:04:02 +08:00
width?: number;
style?: React.CSSProperties;
gapDegree?: number;
gapPosition?: 'top' | 'bottom' | 'left' | 'right';
size?: ProgressSize;
2016-08-09 15:04:02 +08:00
}
const validProgress = (progress: number | undefined) => {
if (!progress || progress < 0) {
return 0;
} else if (progress > 100) {
return 100;
}
return progress;
};
export default class Progress extends React.Component<ProgressProps, {}> {
2016-08-09 15:04:02 +08:00
static Line: any;
static Circle: any;
2016-03-31 17:46:35 +08:00
static defaultProps = {
type: 'line' as ProgressType,
2016-03-31 17:46:35 +08:00
percent: 0,
showInfo: true,
2016-04-05 16:51:26 +08:00
trailColor: '#f3f3f3',
prefixCls: 'ant-progress',
size: 'default' as ProgressSize,
2016-07-13 11:14:24 +08:00
};
2016-03-31 17:46:35 +08:00
static propTypes = {
2016-04-05 16:51:26 +08:00
status: PropTypes.oneOf(['normal', 'exception', 'active', 'success']),
type: PropTypes.oneOf(['line', 'circle', 'dashboard']),
2016-04-05 16:51:26 +08:00
showInfo: PropTypes.bool,
percent: PropTypes.number,
2016-04-05 16:55:52 +08:00
width: PropTypes.number,
2016-04-05 16:51:26 +08:00
strokeWidth: PropTypes.number,
trailColor: PropTypes.string,
format: PropTypes.func,
gapDegree: PropTypes.number,
default: PropTypes.oneOf(['default', 'small']),
2016-07-13 11:14:24 +08:00
};
2016-03-31 17:46:35 +08:00
render() {
2016-12-19 15:19:15 +08:00
const props = this.props;
const {
2018-01-19 15:22:37 +08:00
prefixCls, className, percent = 0, status, format, trailColor, size, successPercent,
type, strokeWidth, width, showInfo, gapDegree = 0, gapPosition, ...restProps,
2016-12-19 15:19:15 +08:00
} = props;
const progressStatus = parseInt((successPercent ? successPercent.toString() : percent.toString()), 10) >= 100 &&
!('status' in props) ? 'success' : (status || 'normal');
2016-03-31 17:46:35 +08:00
let progressInfo;
2016-04-05 16:51:26 +08:00
let progress;
const textFormatter = format || (percentNumber => `${percentNumber}%`);
2016-03-31 17:46:35 +08:00
2016-04-05 16:51:26 +08:00
if (showInfo) {
let text;
const iconType = (type === 'circle' || type === 'dashboard') ? '' : '-circle';
if (format || (progressStatus !== 'exception' && progressStatus !== 'success')) {
2018-04-28 11:04:10 +08:00
text = textFormatter(validProgress(percent), validProgress(successPercent));
} else if (progressStatus === 'exception') {
text = <Icon type={`cross${iconType}`} />;
} else if (progressStatus === 'success') {
text = <Icon type={`check${iconType}`} />;
2016-03-31 17:46:35 +08:00
}
2016-04-05 16:51:26 +08:00
progressInfo = <span className={`${prefixCls}-text`}>{text}</span>;
2016-03-31 17:46:35 +08:00
}
2016-04-05 16:51:26 +08:00
if (type === 'line') {
const percentStyle = {
width: `${validProgress(percent)}%`,
height: strokeWidth || (size === 'small' ? 6 : 8),
2016-04-05 16:51:26 +08:00
};
2018-01-19 15:22:37 +08:00
const successPercentStyle = {
width: `${validProgress(successPercent)}%`,
2018-01-19 15:22:37 +08:00
height: strokeWidth || (size === 'small' ? 6 : 8),
};
const successSegment = successPercent !== undefined
? <div className={`${prefixCls}-success-bg`} style={successPercentStyle} />
: null;
2016-04-05 16:51:26 +08:00
progress = (
<div>
<div className={`${prefixCls}-outer`}>
<div className={`${prefixCls}-inner`}>
<div className={`${prefixCls}-bg`} style={percentStyle} />
2018-01-19 15:22:37 +08:00
{successSegment}
2016-04-05 16:51:26 +08:00
</div>
2016-03-31 17:46:35 +08:00
</div>
2016-04-05 16:51:26 +08:00
{progressInfo}
2016-03-31 17:46:35 +08:00
</div>
2016-04-05 16:51:26 +08:00
);
} else if (type === 'circle' || type === 'dashboard') {
const circleSize = width || 120;
2016-04-05 16:51:26 +08:00
const circleStyle = {
width: circleSize,
height: circleSize,
fontSize: circleSize * 0.15 + 6,
2016-04-05 16:51:26 +08:00
};
2016-09-30 15:21:03 +08:00
const circleWidth = strokeWidth || 6;
const gapPos = gapPosition || type === 'dashboard' && 'bottom' || 'top';
const gapDeg = gapDegree || type === 'dashboard' && 75;
2016-04-05 16:51:26 +08:00
progress = (
<div className={`${prefixCls}-inner`} style={circleStyle}>
<Circle
percent={validProgress(percent)}
strokeWidth={circleWidth}
trailWidth={circleWidth}
strokeColor={(statusColorMap as any)[progressStatus]}
trailColor={trailColor}
prefixCls={prefixCls}
gapDegree={gapDeg}
gapPosition={gapPos}
/>
2016-04-05 16:51:26 +08:00
{progressInfo}
</div>
);
}
const classString = classNames(prefixCls, {
[`${prefixCls}-${type === 'dashboard' && 'circle' || type}`]: true,
2016-04-05 16:51:26 +08:00
[`${prefixCls}-status-${progressStatus}`]: true,
[`${prefixCls}-show-info`]: showInfo,
[`${prefixCls}-${size}`]: size,
}, className);
2016-04-05 16:51:26 +08:00
return (
<div {...restProps} className={classString}>
{progress}
2016-03-31 17:46:35 +08:00
</div>
);
}
}