ant-design/components/steps/index.tsx

59 lines
1.7 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';
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
2016-08-10 09:46:56 +08:00
export interface StepsProps {
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;
initial?: number;
labelPlacement?: 'horizontal' | 'vertical';
2019-02-18 20:23:04 +08:00
prefixCls?: string;
progressDot?: boolean | Function;
2019-02-18 20:23:04 +08:00
size?: 'default' | 'small';
status?: 'wait' | 'process' | 'finish' | 'error';
style?: React.CSSProperties;
2019-05-29 00:09:38 +08:00
onChange?: (current: number) => void;
2016-08-10 09:46:56 +08:00
}
export interface StepProps {
2019-02-18 20:23:04 +08:00
className?: string;
description?: React.ReactNode;
icon?: React.ReactNode;
onClick?: React.MouseEventHandler<HTMLElement>;
status?: 'wait' | 'process' | 'finish' | 'error';
title?: React.ReactNode;
style?: React.CSSProperties;
}
2016-08-10 09:46:56 +08:00
export default class Steps extends React.Component<StepsProps, any> {
static Step = RcSteps.Step as React.ClassicComponentClass<StepProps>;
static defaultProps = {
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,
};
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 = {
finish: <Icon type="check" className={`${prefixCls}-finish-icon`} />,
error: <Icon type="close" className={`${prefixCls}-error-icon`} />,
};
2018-12-07 20:02:01 +08:00
return <RcSteps icons={icons} {...this.props} prefixCls={prefixCls} iconPrefix={iconPrefix} />;
};
render() {
2018-12-07 20:02:01 +08:00
return <ConfigConsumer>{this.renderSteps}</ConfigConsumer>;
}
}