2015-07-23 22:23:11 +08:00
|
|
|
import React from 'react';
|
2016-03-18 10:31:25 +08:00
|
|
|
import RcSteps from 'rc-steps';
|
2015-06-26 10:43:01 +08:00
|
|
|
|
2016-03-18 10:31:25 +08:00
|
|
|
export default class Steps extends React.Component {
|
2016-03-29 14:01:10 +08:00
|
|
|
static Step = RcSteps.Step;
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
prefixCls: 'ant-steps',
|
|
|
|
iconPrefix: 'ant',
|
|
|
|
maxDescriptionWidth: 100,
|
|
|
|
current: 0
|
|
|
|
}
|
|
|
|
|
2015-06-26 10:43:01 +08:00
|
|
|
render() {
|
2015-09-16 18:23:34 +08:00
|
|
|
let maxDescriptionWidth = this.props.maxDescriptionWidth;
|
|
|
|
if (this.props.direction === 'vertical') {
|
|
|
|
maxDescriptionWidth = 'auto';
|
|
|
|
}
|
2015-09-01 17:43:08 +08:00
|
|
|
return (
|
2016-03-18 10:31:25 +08:00
|
|
|
<RcSteps size={this.props.size}
|
2016-01-07 17:46:46 +08:00
|
|
|
current={this.props.current}
|
|
|
|
direction={this.props.direction}
|
|
|
|
iconPrefix={this.props.iconPrefix}
|
|
|
|
maxDescriptionWidth={maxDescriptionWidth}
|
|
|
|
prefixCls={this.props.prefixCls}>
|
2015-09-01 17:43:08 +08:00
|
|
|
{this.props.children}
|
2016-03-18 10:31:25 +08:00
|
|
|
</RcSteps>
|
2015-09-01 17:43:08 +08:00
|
|
|
);
|
2015-06-26 10:43:01 +08:00
|
|
|
}
|
2016-03-18 10:31:25 +08:00
|
|
|
}
|