ant-design/components/steps/index.tsx

44 lines
1.1 KiB
TypeScript
Raw Normal View History

import * as React from 'react';
2018-08-07 21:07:52 +08:00
import * as PropTypes from 'prop-types';
import RcSteps from 'rc-steps';
2018-08-31 18:52:23 +08:00
import Icon from '../icon';
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;
initial?: number;
labelPlacement?: 'horizontal' | 'vertical';
2016-08-10 09:46:56 +08:00
status?: 'wait' | 'process' | 'finish' | 'error';
size?: 'default' | 'small';
direction?: 'horizontal' | 'vertical';
progressDot?: boolean | Function;
style?: React.CSSProperties;
2016-08-10 09:46:56 +08:00
}
export default class Steps extends React.Component<StepsProps, any> {
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-08-10 09:46:56 +08:00
static propTypes = {
prefixCls: PropTypes.string,
iconPrefix: PropTypes.string,
current: PropTypes.number,
};
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} />;
}
}