UNPKG

xdesign-vue-next

Version:

XDesign Component for vue-next

136 lines (132 loc) 4.98 kB
/** * xdesign v1.0.6 * (c) 2023 xdesign * @license MIT */ import { _ as _defineProperty } from '../_chunks/dep-f9e836af.mjs'; import { h } from 'vue'; import { p as pick_1 } from '../_chunks/dep-abf7f90d.mjs'; import { i as isFunction_1 } from '../_chunks/dep-1cc1c24f.mjs'; import { i as isString_1 } from '../_chunks/dep-11fa9c2c.mjs'; import { i as isArray_1 } from '../_chunks/dep-a95026f2.mjs'; import { i as isNumber_1 } from '../_chunks/dep-23f91684.mjs'; import '../_chunks/dep-82805301.mjs'; import '../_chunks/dep-10a947a6.mjs'; import '../_chunks/dep-fa6608fd.mjs'; import '../_chunks/dep-068e912d.mjs'; import '../_chunks/dep-7dcfa37a.mjs'; import '../_chunks/dep-b75d8d74.mjs'; import '../_chunks/dep-addc2a84.mjs'; import '../_chunks/dep-6aa0223b.mjs'; import '../_chunks/dep-db381ece.mjs'; import '../_chunks/dep-5755c21c.mjs'; import '../_chunks/dep-6ad18815.mjs'; import '../_chunks/dep-7f239c43.mjs'; import '../_chunks/dep-4903a8a8.mjs'; import '../_chunks/dep-cc9bfda3.mjs'; import '../_chunks/dep-6f04869e.mjs'; import '../_chunks/dep-d32fbbb3.mjs'; import '../_chunks/dep-71f84cf2.mjs'; import '../_chunks/dep-dafada74.mjs'; import '../_chunks/dep-e1ab85c5.mjs'; import '../_chunks/dep-b57a2815.mjs'; import '../_chunks/dep-983ce253.mjs'; import '../_chunks/dep-205ff58d.mjs'; import '../_chunks/dep-3ec3335a.mjs'; 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; } function getParentsToRoot(element, root) { var list = []; var el = element; while (el && el.parentNode) { list.push(el); if (el === root) { break; } el = el.parentNode; } return list; } function getParentMarks(name, element, root) { var list = getParentsToRoot(element, root); return list.map(function (el) { var mark = { name: name, value: el.getAttribute(name) || "", el: el }; return mark; }).filter(function (mark) { return mark.value; }); } function getMark(name, element, root) { var list = getParentMarks(name, element, root); var info = list.pop() || null; return info; } function getTNode(prop) { var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; var tnode = null; var item = null; var conf = _objectSpread({}, options); if (isFunction_1(prop)) { var _conf$node; item = prop(h, (_conf$node = conf.node) === null || _conf$node === void 0 ? void 0 : _conf$node.getModel()); } else if (isString_1(prop)) { item = prop; } if (isString_1(item)) { tnode = item; } else if (item) { tnode = item; } return tnode; } function getLineModel(nodes, node, index) { var lineModel = { top: false, right: false, bottom: false, left: false }; var nodeChildren = []; if (isArray_1(node.children)) { nodeChildren = node.children; } var childNode = nodes[index - 1] || null; var nodeItemIndex = childNode ? childNode.getIndex() : 0; if (index === 0) { lineModel.left = !!node.parent; lineModel.bottom = node.children && node.expanded; lineModel.right = node.parent && !node.children; } else if (index === 1) { lineModel.top = true; lineModel.right = true; lineModel.bottom = nodeItemIndex < nodeChildren.length - 1; } else if (nodeItemIndex < nodeChildren.length - 1) { lineModel.top = true; lineModel.bottom = true; } return lineModel; } function isTreeNodeValue(item) { return isString_1(item) || isNumber_1(item); } function getNode(store, item) { var node = null; var val = null; if (isString_1(item) || isNumber_1(item)) { val = item; } else if (item && isTreeNodeValue(item.value)) { val = item.value; } node = store.getNode(val); return node; } var getStoreConfig = function getStoreConfig(props) { var storeProps = pick_1(props, ["keys", "expandAll", "expandLevel", "expandMutex", "expandParent", "activable", "activeMultiple", "disabled", "draggable", "checkable", "checkStrictly", "load", "lazy", "valueMode", "filter", "allowFoldNodeOnFilter"]); return storeProps; }; export { getLineModel, getMark, getNode, getParentMarks, getParentsToRoot, getStoreConfig, getTNode, isTreeNodeValue }; //# sourceMappingURL=util.mjs.map