2017-11-17 14:38:54 +08:00
|
|
|
import * as React from 'react';
|
2018-08-07 21:07:52 +08:00
|
|
|
import * as PropTypes from 'prop-types';
|
2016-03-18 10:31:25 +08:00
|
|
|
import RcSteps from 'rc-steps';
|
2018-08-31 18:52:23 +08:00
|
|
|
import Icon from '../icon';
|
2015-06-26 10:43:01 +08:00
|
|
|
|
2016-08-10 09:46:56 +08:00
|
|
|
export interface StepsProps {
|
|
|
|
prefixCls?: string;
|
|
|
|
iconPrefix?: string;
|
2018-12-12 17:13:39 +08:00
|
|
|
className?: string;
|
2016-08-10 09:46:56 +08:00
|
|
|
current?: number;
|
2018-08-22 13:54:51 +08:00
|
|
|
initial?: number;
|
2018-10-10 16:48:26 +08:00
|
|
|
labelPlacement?: 'horizontal' | 'vertical';
|
2016-08-10 09:46:56 +08:00
|
|
|
status?: 'wait' | 'process' | 'finish' | 'error';
|
|
|
|
size?: 'default' | 'small';
|
|
|
|
direction?: 'horizontal' | 'vertical';
|
2017-01-23 14:37:40 +08:00
|
|
|
progressDot?: boolean | Function;
|
2018-01-26 10:38:28 +08:00
|
|
|
style?: React.CSSProperties;
|
2016-08-10 09:46:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default class Steps extends React.Component<StepsProps, any> {
|
2016-03-29 14:01:10 +08:00
|
|
|
static Step = RcSteps.Step;
|
|
|
|
|
|
|
|
static defaultProps = {
|
|
|
|
prefixCls: 'ant-steps',
|
|
|
|
iconPrefix: 'ant',
|
2016-04-06 17:07:22 +08:00
|
|
|
current: 0,
|
2016-07-13 11:14:24 +08:00
|
|
|
};
|
2016-03-29 14:01:10 +08:00
|
|
|
|
2016-08-10 09:46:56 +08:00
|
|
|
static propTypes = {
|
|
|
|
prefixCls: PropTypes.string,
|
|
|
|
iconPrefix: PropTypes.string,
|
|
|
|
current: PropTypes.number,
|
|
|
|
};
|
|
|
|
|
2015-06-26 10:43:01 +08:00
|
|
|
render() {
|
2018-08-31 18:52:23 +08:00
|
|
|
const { prefixCls } = this.props;
|
|
|
|
const icons = {
|
|
|
|
finish: <Icon type="check" className={`${prefixCls}-finish-icon`} />,
|
|
|
|
error: <Icon type="close" className={`${prefixCls}-error-icon`} />,
|
|
|
|
};
|
2018-12-07 16:17:45 +08:00
|
|
|
return <RcSteps icons={icons} {...this.props} />;
|
2015-06-26 10:43:01 +08:00
|
|
|
}
|
2016-03-18 10:31:25 +08:00
|
|
|
}
|