ant-design-vue/components/vc-steps/Step.jsx

112 lines
3.8 KiB
Vue
Raw Normal View History

2019-01-12 03:33:27 +00:00
import PropTypes from '../_util/vue-types';
import { getOptionProps, getComponentFromProp } from '../_util/props-util';
2018-03-19 02:16:27 +00:00
2019-01-12 03:33:27 +00:00
function isString(str) {
return typeof str === 'string';
2018-03-07 02:50:11 +00:00
}
export default {
name: 'Step',
props: {
prefixCls: PropTypes.string,
wrapperStyle: PropTypes.object,
2018-03-11 04:48:04 +00:00
itemWidth: PropTypes.string,
2018-03-07 02:50:11 +00:00
status: PropTypes.string,
iconPrefix: PropTypes.string,
2018-12-15 14:11:21 +00:00
icon: PropTypes.any,
2018-03-11 04:48:04 +00:00
adjustMarginRight: PropTypes.string,
2018-03-07 02:50:11 +00:00
stepNumber: PropTypes.string,
description: PropTypes.any,
title: PropTypes.any,
2019-01-12 03:33:27 +00:00
progressDot: PropTypes.oneOfType([PropTypes.bool, PropTypes.func]),
2018-03-07 02:50:11 +00:00
tailContent: PropTypes.any,
2018-11-09 09:51:56 +00:00
icons: PropTypes.shape({
finish: PropTypes.any,
error: PropTypes.any,
}).loose,
2018-03-07 02:50:11 +00:00
},
methods: {
2019-01-12 03:33:27 +00:00
renderIconNode() {
const { prefixCls, stepNumber, status, iconPrefix, icons } = getOptionProps(this);
let progressDot = this.progressDot;
2018-03-13 02:19:00 +00:00
if (progressDot === undefined) {
2019-01-12 03:33:27 +00:00
progressDot = this.$scopedSlots.progressDot;
2018-03-13 02:19:00 +00:00
}
2019-01-12 03:33:27 +00:00
const icon = getComponentFromProp(this, 'icon');
const title = getComponentFromProp(this, 'title');
const description = getComponentFromProp(this, 'description');
let iconNode;
2018-03-07 02:50:11 +00:00
const iconClassName = {
[`${prefixCls}-icon`]: true,
[`${iconPrefix}icon`]: true,
[`${iconPrefix}icon-${icon}`]: icon && isString(icon),
2018-11-09 09:51:56 +00:00
[`${iconPrefix}icon-check`]: !icon && status === 'finish' && (icons && !icons.finish),
[`${iconPrefix}icon-close`]: !icon && status === 'error' && (icons && !icons.error),
2019-01-12 03:33:27 +00:00
};
const iconDot = <span class={`${prefixCls}-icon-dot`} />;
2018-03-07 02:50:11 +00:00
// `progressDot` enjoy the highest priority
if (progressDot) {
if (typeof progressDot === 'function') {
iconNode = (
<span class={`${prefixCls}-icon`}>
2018-03-13 02:19:00 +00:00
{progressDot({ index: stepNumber - 1, status, title, description, prefixCls })}
2018-03-07 02:50:11 +00:00
</span>
2019-01-12 03:33:27 +00:00
);
2018-03-07 02:50:11 +00:00
} else {
2019-01-12 03:33:27 +00:00
iconNode = <span class={`${prefixCls}-icon`}>{iconDot}</span>;
2018-03-07 02:50:11 +00:00
}
} else if (icon && !isString(icon)) {
2019-01-12 03:33:27 +00:00
iconNode = <span class={`${prefixCls}-icon`}>{icon}</span>;
2018-11-09 09:51:56 +00:00
} else if (icons && icons.finish && status === 'finish') {
2019-01-12 03:33:27 +00:00
iconNode = <span class={`${prefixCls}-icon`}>{icons.finish}</span>;
2018-11-09 09:51:56 +00:00
} else if (icons && icons.error && status === 'error') {
2019-01-12 03:33:27 +00:00
iconNode = <span class={`${prefixCls}-icon`}>{icons.error}</span>;
2018-03-07 02:50:11 +00:00
} else if (icon || status === 'finish' || status === 'error') {
2019-01-12 03:33:27 +00:00
iconNode = <span class={iconClassName} />;
2018-03-07 02:50:11 +00:00
} else {
2019-01-12 03:33:27 +00:00
iconNode = <span class={`${prefixCls}-icon`}>{stepNumber}</span>;
2018-03-07 02:50:11 +00:00
}
2019-01-12 03:33:27 +00:00
return iconNode;
2018-03-07 02:50:11 +00:00
},
},
2019-01-12 03:33:27 +00:00
render() {
2018-03-07 02:50:11 +00:00
const {
2019-01-12 03:33:27 +00:00
prefixCls,
itemWidth,
status = 'wait',
tailContent,
2018-03-11 04:48:04 +00:00
adjustMarginRight,
2019-01-12 03:33:27 +00:00
} = getOptionProps(this);
2018-03-07 02:50:11 +00:00
2019-01-12 03:33:27 +00:00
const title = getComponentFromProp(this, 'title');
const description = getComponentFromProp(this, 'description');
2018-03-10 12:46:57 +00:00
2018-03-07 02:50:11 +00:00
const classString = {
[`${prefixCls}-item`]: true,
[`${prefixCls}-item-${status}`]: true,
2018-12-15 08:06:00 +00:00
[`${prefixCls}-item-custom`]: getComponentFromProp(this, 'icon'),
2019-01-12 03:33:27 +00:00
};
2018-03-07 02:50:11 +00:00
const stepProps = {
class: classString,
on: this.$listeners,
2019-01-12 03:33:27 +00:00
};
const stepItemStyle = {};
2018-03-11 04:48:04 +00:00
if (itemWidth) {
2019-01-12 03:33:27 +00:00
stepItemStyle.width = itemWidth;
2018-03-11 04:48:04 +00:00
}
if (adjustMarginRight) {
2019-01-12 03:33:27 +00:00
stepItemStyle.marginRight = adjustMarginRight;
2018-03-11 04:48:04 +00:00
}
2018-03-07 02:50:11 +00:00
return (
2019-01-12 03:33:27 +00:00
<div {...stepProps} style={stepItemStyle}>
<div class={`${prefixCls}-item-tail`}>{tailContent}</div>
<div class={`${prefixCls}-item-icon`}>{this.renderIconNode()}</div>
2018-03-07 02:50:11 +00:00
<div class={`${prefixCls}-item-content`}>
2019-01-12 03:33:27 +00:00
<div class={`${prefixCls}-item-title`}>{title}</div>
2018-03-07 02:50:11 +00:00
{description && <div class={`${prefixCls}-item-description`}>{description}</div>}
</div>
</div>
2019-01-12 03:33:27 +00:00
);
2018-03-07 02:50:11 +00:00
},
2019-01-12 03:33:27 +00:00
};