import { Circle as Progresscircle } from 'rc-progress';
import React from 'react';
import assign from 'object-assign';
import warning from 'warning';
import Icon from '../icon';
const prefixCls = 'ant-progress';
const statusColorMap = {
normal: '#2db7f5',
exception: '#ff6600',
success: '#87d068'
};
let Line = React.createClass({
propTypes: {
status: React.PropTypes.oneOf(['normal', 'exception', 'active', 'success']),
showInfo: React.PropTypes.bool,
percent: React.PropTypes.number,
strokeWidth: React.PropTypes.number,
trailColor: React.PropTypes.string,
format: React.PropTypes.oneOfType([
React.PropTypes.node,
React.PropTypes.string,
React.PropTypes.func,
]),
},
getDefaultProps() {
return {
percent: 0,
strokeWidth: 10,
status: 'normal', // exception active
showInfo: true,
trailColor: '#e9e9e9'
};
},
render() {
let props = assign({}, this.props);
if (parseInt(props.percent, 10) === 100) {
props.status = 'success';
}
let progressInfo;
let fullCls = '';
if (props.format) {
warning(typeof props.format === 'function',
'antd.Progress props.format type is function, change format={xxx} to format={() => xxx}');
}
let text = props.format || `${props.percent}%`;
if (typeof props.format === 'string') {
// 向下兼容原来的字符串替换方式
text = props.format.replace('${percent}', props.percent);
} else if (typeof props.format === 'function') {
text = props.format(props.percent);
}
if (props.showInfo === true) {
if (props.status === 'exception') {
progressInfo = (
{props.format ? text :