🌈 An enterprise-class UI components based on Ant Design and Vue. 🐜
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

69 lines
2.1 KiB

import PropTypes from '../_util/vue-types';
import { initDefaultProps, getOptionProps, getListeners } from '../_util/props-util';
import VcSteps from '../vc-steps';
import Icon from '../icon';
import { ConfigConsumerProps } from '../config-provider';
import Base from '../base';
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,
}),
inject: {
configProvider: { default: () => ConfigConsumerProps },
},
model: {
prop: 'current',
event: 'change',
},
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 icons = {
finish: <Icon type="check" class={`${prefixCls}-finish-icon`} />,
error: <Icon type="close" class={`${prefixCls}-error-icon`} />,
};
const stepsProps = {
props: {
icons,
iconPrefix,
prefixCls,
...props,
},
on: getListeners(this),
scopedSlots: this.$scopedSlots,
};
return <VcSteps {...stepsProps}>{this.$slots.default}</VcSteps>;
},
};
/* istanbul ignore next */
Steps.install = function(Vue) {
Vue.use(Base);
Vue.component(Steps.name, Steps);
Vue.component(Steps.Step.name, Steps.Step);
};
export default Steps;