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';
|
2019-08-13 14:07:17 +08:00
|
|
|
import { Check, Close } from '@ant-design/icons';
|
|
|
|
|
2018-12-05 19:12:18 +08:00
|
|
|
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
|
2015-06-26 10:43:01 +08:00
|
|
|
|
2016-08-10 09:46:56 +08:00
|
|
|
export interface StepsProps {
|
2019-08-14 11:18:36 +08:00
|
|
|
type?: 'default' | 'navigation';
|
2018-12-13 22:03:12 +08:00
|
|
|
className?: string;
|
2016-08-10 09:46:56 +08:00
|
|
|
current?: number;
|
2019-02-18 20:23:04 +08:00
|
|
|
direction?: 'horizontal' | 'vertical';
|
|
|
|
iconPrefix?: string;
|
2018-08-22 13:54:51 +08:00
|
|
|
initial?: number;
|
2018-10-10 16:48:26 +08:00
|
|
|
labelPlacement?: 'horizontal' | 'vertical';
|
2019-02-18 20:23:04 +08:00
|
|
|
prefixCls?: string;
|
2017-01-23 14:37:40 +08:00
|
|
|
progressDot?: boolean | Function;
|
2019-02-18 20:23:04 +08:00
|
|
|
size?: 'default' | 'small';
|
|
|
|
status?: 'wait' | 'process' | 'finish' | 'error';
|
2018-01-26 10:38:28 +08:00
|
|
|
style?: React.CSSProperties;
|
2019-05-29 00:09:38 +08:00
|
|
|
onChange?: (current: number) => void;
|
2016-08-10 09:46:56 +08:00
|
|
|
}
|
|
|
|
|
2019-01-22 17:11:31 +08:00
|
|
|
export interface StepProps {
|
2019-02-18 20:23:04 +08:00
|
|
|
className?: string;
|
2019-01-22 17:11:31 +08:00
|
|
|
description?: React.ReactNode;
|
|
|
|
icon?: React.ReactNode;
|
2019-06-16 20:51:47 +08:00
|
|
|
onClick?: React.MouseEventHandler<HTMLElement>;
|
2019-01-22 17:11:31 +08:00
|
|
|
status?: 'wait' | 'process' | 'finish' | 'error';
|
2019-08-14 11:18:36 +08:00
|
|
|
disabled?: boolean;
|
2019-01-22 17:11:31 +08:00
|
|
|
title?: React.ReactNode;
|
2019-08-28 15:25:12 +08:00
|
|
|
subTitle?: React.ReactNode;
|
2019-03-14 09:57:30 +08:00
|
|
|
style?: React.CSSProperties;
|
2019-01-22 17:11:31 +08:00
|
|
|
}
|
|
|
|
|
2016-08-10 09:46:56 +08:00
|
|
|
export default class Steps extends React.Component<StepsProps, any> {
|
2019-01-22 17:11:31 +08:00
|
|
|
static Step = RcSteps.Step as React.ClassicComponentClass<StepProps>;
|
2016-03-29 14:01:10 +08:00
|
|
|
|
|
|
|
static defaultProps = {
|
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,
|
|
|
|
};
|
|
|
|
|
2018-12-05 19:12:18 +08:00
|
|
|
renderSteps = ({ getPrefixCls }: ConfigConsumerProps) => {
|
|
|
|
const prefixCls = getPrefixCls('steps', this.props.prefixCls);
|
|
|
|
const iconPrefix = getPrefixCls('', this.props.iconPrefix);
|
2018-08-31 18:52:23 +08:00
|
|
|
const icons = {
|
2019-08-13 14:07:17 +08:00
|
|
|
finish: <Check className={`${prefixCls}-finish-icon`} />,
|
|
|
|
error: <Close className={`${prefixCls}-error-icon`} />,
|
2018-08-31 18:52:23 +08:00
|
|
|
};
|
2018-12-07 20:02:01 +08:00
|
|
|
return <RcSteps icons={icons} {...this.props} prefixCls={prefixCls} iconPrefix={iconPrefix} />;
|
|
|
|
};
|
2018-12-05 19:12:18 +08:00
|
|
|
|
|
|
|
render() {
|
2018-12-07 20:02:01 +08:00
|
|
|
return <ConfigConsumer>{this.renderSteps}</ConfigConsumer>;
|
2015-06-26 10:43:01 +08:00
|
|
|
}
|
2016-03-18 10:31:25 +08:00
|
|
|
}
|