ant-design/components/progress/index.jsx

122 lines
2.9 KiB
React
Raw Normal View History

2015-07-29 22:20:05 +08:00
import {Circle as Progresscircle} from 'rc-progress';
import React from 'react';
import assign from 'object-assign';
2015-06-14 12:55:44 +08:00
2015-07-29 22:20:05 +08:00
const prefixCls = 'ant-progress';
const statusColorMap = {
2015-07-30 15:54:08 +08:00
'normal': '#2db7f5',
'exception': '#ff6600',
'success': '#87d068'
2015-07-29 22:20:05 +08:00
};
2015-06-14 12:55:44 +08:00
var Line = React.createClass({
2015-07-06 10:58:34 +08:00
getDefaultProps() {
2015-06-14 12:55:44 +08:00
return {
percent: 0,
2015-07-29 22:20:05 +08:00
strokeWidth: '10px',
2015-06-15 11:00:27 +08:00
status: 'normal' // exception
2015-06-15 11:48:30 +08:00
};
2015-06-14 12:55:44 +08:00
},
render() {
2015-07-08 20:53:11 +08:00
var props = assign({}, this.props);
if (parseInt(props.percent) === 100) {
props.status = 'success';
2015-06-14 19:50:23 +08:00
}
2015-06-15 11:48:30 +08:00
var progressInfo;
2015-07-08 20:53:11 +08:00
if (props.status === 'exception') {
2015-06-14 12:55:44 +08:00
progressInfo = (
2015-07-29 22:20:05 +08:00
<span className={prefixCls + '-line-text'}>
<i className="anticon anticon-exclamation-circle"></i>
2015-06-14 19:50:23 +08:00
</span>
2015-06-15 11:48:30 +08:00
);
2015-07-08 20:53:11 +08:00
} else if (props.status === 'success') {
2015-06-14 19:50:23 +08:00
progressInfo = (
2015-07-29 22:20:05 +08:00
<span className={prefixCls + '-line-text'}>
<i className="anticon anticon-check-circle"></i>
2015-06-14 19:50:23 +08:00
</span>
2015-06-15 11:48:30 +08:00
);
2015-07-06 10:58:34 +08:00
} else {
2015-06-14 12:55:44 +08:00
progressInfo = (
2015-07-29 22:20:05 +08:00
<span className={prefixCls + '-line-text'}>{props.percent}%</span>
2015-06-15 11:48:30 +08:00
);
2015-06-14 12:55:44 +08:00
}
2015-07-29 22:20:05 +08:00
var persentStyle = {
width: props.percent + '%',
height: props.strokeWidth
};
2015-06-14 12:55:44 +08:00
return (
2015-07-29 22:20:05 +08:00
<div className={prefixCls + '-line-wrap clearfix status-' + props.status}>
2015-06-14 12:55:44 +08:00
{progressInfo}
2015-07-29 22:20:05 +08:00
<div className={prefixCls + '-line-outer'}>
<div className={prefixCls + '-line-inner'}>
<div className={prefixCls + '-line-bg'} style={persentStyle}></div>
</div>
</div>
2015-06-14 12:55:44 +08:00
</div>
);
}
});
var Circle = React.createClass({
2015-06-14 19:50:23 +08:00
getDefaultProps: function () {
2015-06-14 12:55:44 +08:00
return {
2015-06-15 17:30:24 +08:00
width: 132,
2015-06-14 12:55:44 +08:00
percent: 0,
2015-06-15 17:30:24 +08:00
strokeWidth: 6,
2015-06-15 11:00:27 +08:00
status: 'normal' // exception
2015-06-15 11:48:30 +08:00
};
2015-06-14 12:55:44 +08:00
},
render() {
2015-07-08 20:53:11 +08:00
var props = assign({}, this.props);
if (parseInt(props.percent) === 100) {
props.status = 'success';
2015-06-14 20:07:21 +08:00
}
2015-06-14 12:55:44 +08:00
var style = {
2015-07-08 20:53:11 +08:00
'width': props.width,
2015-07-29 23:32:24 +08:00
'height': props.width,
2015-07-08 20:53:11 +08:00
'fontSize': props.width * 0.16 + 6
2015-06-15 11:48:30 +08:00
};
var progressInfo;
2015-07-08 20:53:11 +08:00
if (props.status === 'exception') {
2015-06-14 12:55:44 +08:00
progressInfo = (
2015-07-29 23:32:24 +08:00
<span className={prefixCls + '-circle-text'}>
2015-06-15 11:00:27 +08:00
<i className='anticon anticon-exclamation'></i>
2015-06-14 20:07:21 +08:00
</span>
2015-06-15 11:48:30 +08:00
);
2015-07-08 20:53:11 +08:00
} else if (props.status === 'success') {
2015-06-15 16:16:51 +08:00
progressInfo = (
2015-07-29 23:32:24 +08:00
<span className={prefixCls + '-circle-text'}>
2015-06-15 16:16:51 +08:00
<i className="anticon anticon-check"></i>
</span>
);
2015-07-06 10:58:34 +08:00
} else {
2015-06-14 12:55:44 +08:00
progressInfo = (
2015-07-29 22:20:05 +08:00
<span className={prefixCls + '-circle-text'}>{props.percent}%</span>
2015-06-15 11:48:30 +08:00
);
2015-06-14 12:55:44 +08:00
}
return (
2015-07-29 23:32:24 +08:00
<div className={prefixCls + '-circle-wrap status-' + props.status} >
2015-07-29 22:20:05 +08:00
<div className={prefixCls + '-circle-inner'} style={style}>
2015-07-08 20:53:11 +08:00
<Progresscircle percent={props.percent} strokeWidth={props.strokeWidth}
strokeColor={statusColorMap[props.status]} trailColor="#e9e9e9" />
2015-06-14 20:07:21 +08:00
{progressInfo}
</div>
2015-06-14 12:55:44 +08:00
</div>
);
}
});
export default {
2015-06-14 12:55:44 +08:00
Line: Line,
Circle: Circle
};