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.

182 lines
5.0 KiB

import { Circle as Progresscircle } from 'rc-progress';
import React from 'react';
import assign from 'object-assign';
import warning from 'warning';
9 years ago
import Icon from '../icon';
10 years ago
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,
]),
},
10 years ago
getDefaultProps() {
10 years ago
return {
percent: 0,
strokeWidth: 10,
status: 'normal', // exception active
showInfo: true,
trailColor: '#e9e9e9'
10 years ago
};
10 years ago
},
render() {
let props = assign({}, this.props);
10 years ago
if (parseInt(props.percent, 10) === 100) {
10 years ago
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 = (
<span className={prefixCls + '-line-text'}>
{props.format ? text : <Icon type="exclamation" />}
</span>
);
} else if (props.status === 'success') {
progressInfo = (
<span className={prefixCls + '-line-text'}>
{props.format ? text : <Icon type="check" />}
</span>
);
} else {
progressInfo = (
<span className={prefixCls + '-line-text'}>{text}</span>
);
}
9 years ago
} else {
fullCls = ' ' + prefixCls + '-line-wrap-full';
10 years ago
}
let percentStyle = {
width: props.percent + '%',
height: props.strokeWidth
};
10 years ago
return (
<div className={prefixCls + '-line-wrap clearfix status-' + props.status + fullCls} style={props.style}>
10 years ago
{progressInfo}
<div className={prefixCls + '-line-outer'}>
<div className={prefixCls + '-line-inner'}>
<div className={prefixCls + '-line-bg'} style={percentStyle}></div>
</div>
</div>
10 years ago
</div>
);
}
});
let Circle = React.createClass({
propTypes: {
status: React.PropTypes.oneOf(['normal', 'exception', 'success']),
percent: React.PropTypes.number,
strokeWidth: React.PropTypes.number,
width: React.PropTypes.number,
trailColor: React.PropTypes.string,
format: React.PropTypes.oneOfType([
React.PropTypes.node,
React.PropTypes.string,
React.PropTypes.func,
]),
},
getDefaultProps() {
10 years ago
return {
width: 132,
10 years ago
percent: 0,
strokeWidth: 6,
status: 'normal', // exception
trailColor: '#f9f9f9',
10 years ago
};
10 years ago
},
render() {
let props = assign({}, this.props);
10 years ago
if (parseInt(props.percent, 10) === 100) {
10 years ago
props.status = 'success';
}
let style = {
width: props.width,
height: props.width,
fontSize: props.width * 0.16 + 6
10 years ago
};
let progressInfo;
let text = props.format || `${props.percent}%`;
if (props.format) {
warning(typeof props.format === 'function',
'antd.Progress props.format type is function, change format={xxx} to format={() => xxx}');
}
if (typeof props.format === 'string') {
// 向下兼容原来的字符串替换方式
text = props.format.replace('${percent}', props.percent);
} else if (typeof props.format === 'function') {
text = props.format(props.percent);
}
10 years ago
if (props.status === 'exception') {
10 years ago
progressInfo = (
<span className={prefixCls + '-circle-text'}>
{props.format ? text : <Icon type="exclamation" />}
</span>
10 years ago
);
10 years ago
} else if (props.status === 'success') {
10 years ago
progressInfo = (
<span className={prefixCls + '-circle-text'}>
{props.format ? text : <Icon type="check" />}
10 years ago
</span>
);
10 years ago
} else {
10 years ago
progressInfo = (
<span className={prefixCls + '-circle-text'}>{text}</span>
10 years ago
);
10 years ago
}
return (
<div className={prefixCls + '-circle-wrap status-' + props.status} style={props.style}>
<div className={prefixCls + '-circle-inner'} style={style}>
10 years ago
<Progresscircle percent={props.percent} strokeWidth={props.strokeWidth}
strokeColor={statusColorMap[props.status]} trailColor={props.trailColor} />
{progressInfo}
</div>
10 years ago
</div>
);
}
});
export default {
Line,
Circle,
10 years ago
};