UNPKG

element-plus

Version:

A Component Library for Vue3.0

224 lines (215 loc) 7.92 kB
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var vue = require('vue'); var script = vue.defineComponent({ name: 'ElStep', props: { title: { type: String, default: '', }, icon: { type: String, default: '', }, description: { type: String, default: '', }, status: { type: String, default: '', validator: (val) => ['', 'wait', 'process', 'finish', 'error', 'success'].includes(val), }, }, setup(props) { const index = vue.ref(-1); const lineStyle = vue.ref({}); const internalStatus = vue.ref(''); const parent = vue.inject('ElSteps'); const currentInstance = vue.getCurrentInstance(); vue.onMounted(() => { vue.watch([() => parent.props.active, () => parent.props.processStatus, () => parent.props.finishStatus], ([active]) => { updateStatus(active); }, { immediate: true }); }); vue.onBeforeUnmount(() => { parent.steps.value = parent.steps.value.filter(instance => instance.uid !== currentInstance.uid); }); const currentStatus = vue.computed(() => { return props.status || internalStatus.value; }); const prevStatus = vue.computed(() => { const prevStep = parent.steps.value[index.value - 1]; return prevStep ? prevStep.currentStatus : 'wait'; }); const isCenter = vue.computed(() => { return parent.props.alignCenter; }); const isVertical = vue.computed(() => { return parent.props.direction === 'vertical'; }); const isSimple = vue.computed(() => { return parent.props.simple; }); const stepsCount = vue.computed(() => { return parent.steps.value.length; }); const isLast = vue.computed(() => { var _a; return ((_a = parent.steps.value[stepsCount.value - 1]) === null || _a === void 0 ? void 0 : _a.uid) === currentInstance.uid; }); const space = vue.computed(() => { return isSimple.value ? '' : parent.props.space; }); const style = vue.computed(() => { const style = { flexBasis: (typeof space.value === 'number' ? `${space.value}px` : space.value ? space.value : 100 / (stepsCount.value - (isCenter.value ? 0 : 1)) + '%'), }; if (isVertical.value) return style; if (isLast.value) { style.maxWidth = 100 / stepsCount.value + '%'; } return style; }); const setIndex = val => { index.value = val; }; const calcProgress = status => { let step = 100; const style = {}; style.transitionDelay = 150 * index.value + 'ms'; if (status === parent.props.processStatus) { step = 0; } else if (status === 'wait') { step = 0; style.transitionDelay = (-150 * index.value) + 'ms'; } style.borderWidth = step && !isSimple.value ? '1px' : 0; style[parent.props.direction === 'vertical' ? 'height' : 'width'] = `${step}%`; lineStyle.value = style; }; const updateStatus = activeIndex => { if (activeIndex > index.value) { internalStatus.value = parent.props.finishStatus; } else if (activeIndex === index.value && prevStatus.value !== 'error') { internalStatus.value = parent.props.processStatus; } else { internalStatus.value = 'wait'; } const prevChild = parent.steps.value[stepsCount.value - 1]; if (prevChild) prevChild.calcProgress(internalStatus.value); }; const stepItemState = vue.reactive({ uid: vue.computed(() => currentInstance.uid), currentStatus, setIndex, calcProgress, }); parent.steps.value = [...parent.steps.value, stepItemState]; return { index, lineStyle, currentStatus, isCenter, isVertical, isSimple, isLast, space, style, parent, setIndex, calcProgress, updateStatus, }; }, }); const _hoisted_1 = { class: "el-step__line" }; const _hoisted_2 = { key: 1, class: "el-step__icon-inner" }; const _hoisted_3 = { class: "el-step__main" }; const _hoisted_4 = { key: 0, class: "el-step__arrow" }; function render(_ctx, _cache, $props, $setup, $data, $options) { return (vue.openBlock(), vue.createBlock("div", { style: _ctx.style, class: [ 'el-step', _ctx.isSimple ? 'is-simple' : `is-${_ctx.parent.props.direction}`, _ctx.isLast && !_ctx.space && !_ctx.isCenter && 'is-flex', _ctx.isCenter && !_ctx.isVertical && !_ctx.isSimple && 'is-center' ] }, [ vue.createCommentVNode(" icon & line "), vue.createVNode("div", { class: ['el-step__head', `is-${_ctx.currentStatus}`] }, [ vue.createVNode("div", _hoisted_1, [ vue.createVNode("i", { class: "el-step__line-inner", style: _ctx.lineStyle }, null, 4 /* STYLE */) ]), vue.createVNode("div", { class: ['el-step__icon', `is-${_ctx.icon ? 'icon' : 'text'}`] }, [ (_ctx.currentStatus !== 'success' && _ctx.currentStatus !== 'error') ? vue.renderSlot(_ctx.$slots, "icon", { key: 0 }, () => [ (_ctx.icon) ? (vue.openBlock(), vue.createBlock("i", { key: 0, class: ['el-step__icon-inner', _ctx.icon] }, null, 2 /* CLASS */)) : vue.createCommentVNode("v-if", true), (!_ctx.icon && !_ctx.isSimple) ? (vue.openBlock(), vue.createBlock("div", _hoisted_2, vue.toDisplayString(_ctx.index + 1), 1 /* TEXT */)) : vue.createCommentVNode("v-if", true) ]) : (vue.openBlock(), vue.createBlock("i", { key: 1, class: ['el-step__icon-inner', 'is-status', `el-icon-${_ctx.currentStatus === 'success' ? 'check' : 'close'}`] }, null, 2 /* CLASS */)) ], 2 /* CLASS */) ], 2 /* CLASS */), vue.createCommentVNode(" title & description "), vue.createVNode("div", _hoisted_3, [ vue.createVNode("div", { class: ['el-step__title', `is-${_ctx.currentStatus}`] }, [ vue.renderSlot(_ctx.$slots, "title", {}, () => [ vue.createTextVNode(vue.toDisplayString(_ctx.title), 1 /* TEXT */) ]) ], 2 /* CLASS */), (_ctx.isSimple) ? (vue.openBlock(), vue.createBlock("div", _hoisted_4)) : (vue.openBlock(), vue.createBlock("div", { key: 1, class: ['el-step__description', `is-${_ctx.currentStatus}`] }, [ vue.renderSlot(_ctx.$slots, "description", {}, () => [ vue.createTextVNode(vue.toDisplayString(_ctx.description), 1 /* TEXT */) ]) ], 2 /* CLASS */)) ]) ], 6 /* CLASS, STYLE */)) } script.render = render; script.__file = "packages/steps/src/item.vue"; script.install = (app) => { app.component(script.name, script); }; const _Step = script; exports.default = _Step;