You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
3.4 KiB
123 lines
3.4 KiB
import { PropTypes } from 'react';
|
|
import React from 'react';
|
|
import Icon from '../icon';
|
|
import { Circle } from 'rc-progress';
|
|
import classNames from 'classnames';
|
|
const statusColorMap = {
|
|
normal: '#108ee9',
|
|
exception: '#ff5500',
|
|
success: '#87d068',
|
|
};
|
|
|
|
export interface ProgressProps {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
type?: 'line' | 'circle';
|
|
percent?: number;
|
|
format?: (percent: number) => string;
|
|
status?: 'success' | 'active' | 'exception';
|
|
showInfo?: boolean;
|
|
strokeWidth?: number;
|
|
trailColor?: string;
|
|
width?: number;
|
|
style?: React.CSSProperties;
|
|
}
|
|
|
|
export default class Progress extends React.Component<ProgressProps, any> {
|
|
static Line: any;
|
|
static Circle: any;
|
|
|
|
static defaultProps = {
|
|
type: 'line',
|
|
percent: 0,
|
|
showInfo: true,
|
|
trailColor: '#f3f3f3',
|
|
prefixCls: 'ant-progress',
|
|
};
|
|
|
|
static propTypes = {
|
|
status: PropTypes.oneOf(['normal', 'exception', 'active', 'success']),
|
|
type: PropTypes.oneOf(['line', 'circle']),
|
|
showInfo: PropTypes.bool,
|
|
percent: PropTypes.number,
|
|
width: PropTypes.number,
|
|
strokeWidth: PropTypes.number,
|
|
trailColor: PropTypes.string,
|
|
format: PropTypes.func,
|
|
};
|
|
|
|
render() {
|
|
const props = this.props;
|
|
const {
|
|
prefixCls, className, percent = 0, status, format, trailColor,
|
|
type, strokeWidth, width, showInfo, ...restProps,
|
|
} = props;
|
|
const progressStatus = parseInt(percent.toString(), 10) >= 100 && !('status' in props) ?
|
|
'success' : (status || 'normal');
|
|
let progressInfo;
|
|
let progress;
|
|
const textFormatter = format || (percentNumber => `${percentNumber}%`);
|
|
|
|
if (showInfo) {
|
|
let text;
|
|
const iconType = type === 'circle' ? '' : '-circle';
|
|
if (progressStatus === 'exception') {
|
|
text = format ? textFormatter(percent) : <Icon type={`cross${iconType}`} />;
|
|
} else if (progressStatus === 'success') {
|
|
text = format ? textFormatter(percent) : <Icon type={`check${iconType}`} />;
|
|
} else {
|
|
text = textFormatter(percent);
|
|
}
|
|
progressInfo = <span className={`${prefixCls}-text`}>{text}</span>;
|
|
}
|
|
|
|
if (type === 'line') {
|
|
const percentStyle = {
|
|
width: `${percent}%`,
|
|
height: strokeWidth || 10,
|
|
};
|
|
progress = (
|
|
<div>
|
|
<div className={`${prefixCls}-outer`}>
|
|
<div className={`${prefixCls}-inner`}>
|
|
<div className={`${prefixCls}-bg`} style={percentStyle} />
|
|
</div>
|
|
</div>
|
|
{progressInfo}
|
|
</div>
|
|
);
|
|
} else if (type === 'circle') {
|
|
const circleSize = width || 132;
|
|
const circleStyle = {
|
|
width: circleSize,
|
|
height: circleSize,
|
|
fontSize: circleSize * 0.16 + 6,
|
|
};
|
|
const circleWidth = strokeWidth || 6;
|
|
progress = (
|
|
<div className={`${prefixCls}-inner`} style={circleStyle}>
|
|
<Circle
|
|
percent={percent}
|
|
strokeWidth={circleWidth}
|
|
trailWidth={circleWidth}
|
|
strokeColor={statusColorMap[progressStatus]}
|
|
trailColor={trailColor}
|
|
/>
|
|
{progressInfo}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const classString = classNames(prefixCls, {
|
|
[`${prefixCls}-${type}`]: true,
|
|
[`${prefixCls}-status-${progressStatus}`]: true,
|
|
[`${prefixCls}-show-info`]: showInfo,
|
|
}, className);
|
|
|
|
return (
|
|
<div {...restProps} className={classString}>
|
|
{progress}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|