UNPKG

xdesign-vue-next

Version:

XDesign Component for vue-next

141 lines (137 loc) 6.42 kB
/** * xdesign v1.0.6 * (c) 2023 xdesign * @license MIT */ import _slicedToArray from '@babel/runtime/helpers/slicedToArray'; import _defineProperty from '@babel/runtime/helpers/defineProperty'; import { defineComponent, toRefs, provide, reactive, ref, computed, createVNode, mergeProps } from 'vue'; import isObject from 'lodash/isObject'; import props from './props.js'; import stepItemProps from './step-item-props.js'; import _StepItem from './step-item.js'; import { usePrefixClass } from '../hooks/useConfig.js'; import useVModel from '../hooks/useVModel.js'; import { useChildComponentSlots } from '../hooks/slot.js'; import '../_chunks/dep-ae5efda0.js'; import '../_chunks/dep-a0b2d0cd.js'; import 'lodash/isFunction'; import '../config-provider/useConfig.js'; import 'lodash/cloneDeep'; import 'lodash/isString'; import '../config-provider/context.js'; import 'lodash/mergeWith'; import 'lodash/merge'; import '../_common/js/global-config/default-config.js'; import '../_common/js/global-config/locale/en_US.js'; import '../_chunks/dep-3a1cce9f.js'; import 'lodash/isArray'; import '../hooks/tnode.js'; import 'lodash/camelCase'; import 'lodash/kebabCase'; import '../utils/render-tnode.js'; import 'lodash/isEmpty'; import '@babel/runtime/helpers/typeof'; function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } var _Steps = defineComponent({ name: "XSteps", props: _objectSpread({}, props), setup: function setup(props2) { var COMPONENT_NAME = usePrefixClass("steps"); var _toRefs = toRefs(props2), current = _toRefs.current, modelValue = _toRefs.modelValue; var _useVModel = useVModel(current, modelValue, props2.defaultCurrent, props2.onChange, "current"), _useVModel2 = _slicedToArray(_useVModel, 2), innerCurrent = _useVModel2[0], setInnerCurrent = _useVModel2[1]; provide("StepsState", reactive({ current: innerCurrent, setCurrent: setInnerCurrent })); provide("StepsProps", props2); var indexMap = ref({}); var handleStatus = function handleStatus(itemProps, index) { if (itemProps.status && itemProps.status !== "default") return itemProps.status; if (innerCurrent.value === "FINISH") return "finish"; if (itemProps.value === void 0 && index < innerCurrent.value) return "finish"; if (itemProps.value !== void 0) { var matchIndex = indexMap.value[innerCurrent.value]; if (matchIndex === void 0) { console.warn("TDesign Steps Warn: The current `value` is not exist."); return "default"; } if (props2.sequence === "positive" && index < matchIndex) return "finish"; if (props2.sequence === "reverse" && index > matchIndex) return "finish"; } var key = itemProps.value === void 0 ? index : itemProps.value; if (key === innerCurrent.value) return "process"; return "default"; }; var getChildComponentByName = useChildComponentSlots(); var getOptionListBySlots = function getOptionListBySlots(nodes) { var arr = []; nodes === null || nodes === void 0 ? void 0 : nodes.forEach(function (node) { var option = (node === null || node === void 0 ? void 0 : node.props) || {}; var children = node === null || node === void 0 ? void 0 : node.children; if (!option && !children) return; if (children && isObject(children)) { for (var key in children) { if (key in stepItemProps && !option[key]) { option[key] = children[key]; } } } props2.sequence === "reverse" ? arr.unshift(option) : arr.push(option); }); return arr; }; var getOptions = function getOptions() { var _props2$options; var options; if ((_props2$options = props2.options) !== null && _props2$options !== void 0 && _props2$options.length) { options = props2.sequence === "reverse" ? props2.options.slice().reverse() : props2.options; } else { var nodes = getChildComponentByName("StepItem"); options = getOptionListBySlots(nodes); } (options || []).forEach(function (item, index) { if (item.value !== void 0) indexMap.value[item.value] = index; }); return options; }; var renderContent = function renderContent() { var options = getOptions(); return options.map(function (item, index) { var stepIndex = props2.sequence === "reverse" ? options.length - index - 1 : index; index = item.value !== void 0 ? index : stepIndex; return createVNode(_StepItem, mergeProps(item, { "index": stepIndex, "status": handleStatus(item, index), "key": item.value || index }), null); }); }; var handleTheme = function handleTheme() { var theme = props2.theme; var options = getOptions(); options.forEach(function (item) { if ((item === null || item === void 0 ? void 0 : item.icon) !== void 0) { theme = "default"; } }); return theme; }; var baseClass = computed(function () { return [COMPONENT_NAME.value, "".concat(COMPONENT_NAME.value, "--").concat(props2.layout), "".concat(COMPONENT_NAME.value, "--").concat(handleTheme(), "-anchor"), "".concat(COMPONENT_NAME.value, "--").concat(props2.sequence), "".concat(COMPONENT_NAME.value, "--").concat(props2.separator, "-separator")]; }); return function () { return createVNode("div", { "class": baseClass.value }, [renderContent()]); }; } }); export { _Steps as default }; //# sourceMappingURL=steps.js.map