ant-design-vue/components/steps/index.jsx
zkwolf 65f49b97d7
feat: update step (#2379)
* feat: update step

* fix: step use v-model can't click

* fix: avoid step auto mount attrs

* chore: use props to transfer event

* docs: add steps breakchange
2020-06-22 14:21:40 +08:00

66 lines
2.2 KiB
Vue

import { inject } from 'vue';
import CloseOutlined from '@ant-design/icons-vue/CloseOutlined';
import CheckOutlined from '@ant-design/icons-vue/CheckOutlined';
import PropTypes from '../_util/vue-types';
import { initDefaultProps, getOptionProps, getComponent } from '../_util/props-util';
import VcSteps from '../vc-steps';
import { ConfigConsumerProps } from '../config-provider';
const getStepsProps = (defaultProps = {}) => {
const props = {
prefixCls: PropTypes.string,
iconPrefix: PropTypes.string,
current: PropTypes.number,
initial: PropTypes.number,
labelPlacement: PropTypes.oneOf(['horizontal', 'vertical']).def('horizontal'),
status: PropTypes.oneOf(['wait', 'process', 'finish', 'error']),
size: PropTypes.oneOf(['default', 'small']),
direction: PropTypes.oneOf(['horizontal', 'vertical']),
progressDot: PropTypes.oneOfType([PropTypes.bool, PropTypes.func]),
type: PropTypes.oneOf(['default', 'navigation']),
};
return initDefaultProps(props, defaultProps);
};
const Steps = {
name: 'ASteps',
props: getStepsProps({
current: 0,
}),
setup() {
return {
configProvider: inject('configProvider', ConfigConsumerProps),
};
},
Step: { ...VcSteps.Step, name: 'AStep' },
render() {
const props = getOptionProps(this);
const { prefixCls: customizePrefixCls, iconPrefix: customizeIconPrefixCls } = props;
const getPrefixCls = this.configProvider.getPrefixCls;
const prefixCls = getPrefixCls('steps', customizePrefixCls);
const iconPrefix = getPrefixCls('', customizeIconPrefixCls);
const progressDot = getComponent(this, 'progressDot', this, false);
const icons = {
finish: <CheckOutlined class={`${prefixCls}-finish-icon`} />,
error: <CloseOutlined class={`${prefixCls}-error-icon`} />,
};
const stepsProps = {
icons,
iconPrefix,
prefixCls,
progressDot,
...props,
};
return <VcSteps {...stepsProps}>{this.$slots.default && this.$slots.default()}</VcSteps>;
},
};
/* istanbul ignore next */
Steps.install = function(app) {
app.component(Steps.name, Steps);
app.component(Steps.Step.name, Steps.Step);
};
export default Steps;