123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', { value: true });
- var core$1 = require('@popperjs/core');
- var lodashUnified = require('lodash-unified');
- var escapeHtml = require('escape-html');
- require('../../../utils/index.js');
- require('../../../hooks/index.js');
- var error = require('../../../utils/error.js');
- var shared = require('@vue/shared');
- var core = require('@vueuse/core');
- var index = require('../../../hooks/use-z-index/index.js');
- function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
- var escapeHtml__default = /*#__PURE__*/_interopDefaultLegacy(escapeHtml);
- const getCell = function(event) {
- var _a;
- return (_a = event.target) == null ? void 0 : _a.closest("td");
- };
- const isObject = function(obj) {
- return obj !== null && typeof obj === "object";
- };
- const orderBy = function(array, sortKey, reverse, sortMethod, sortBy) {
- if (!sortKey && !sortMethod && (!sortBy || Array.isArray(sortBy) && !sortBy.length)) {
- return array;
- }
- if (typeof reverse === "string") {
- reverse = reverse === "descending" ? -1 : 1;
- } else {
- reverse = reverse && reverse < 0 ? -1 : 1;
- }
- const getKey = sortMethod ? null : function(value, index) {
- if (sortBy) {
- if (!Array.isArray(sortBy)) {
- sortBy = [sortBy];
- }
- return sortBy.map((by) => {
- if (typeof by === "string") {
- return lodashUnified.get(value, by);
- } else {
- return by(value, index, array);
- }
- });
- }
- if (sortKey !== "$key") {
- if (isObject(value) && "$value" in value)
- value = value.$value;
- }
- return [isObject(value) ? lodashUnified.get(value, sortKey) : value];
- };
- const compare = function(a, b) {
- if (sortMethod) {
- return sortMethod(a.value, b.value);
- }
- for (let i = 0, len = a.key.length; i < len; i++) {
- if (a.key[i] < b.key[i]) {
- return -1;
- }
- if (a.key[i] > b.key[i]) {
- return 1;
- }
- }
- return 0;
- };
- return array.map((value, index) => {
- return {
- value,
- index,
- key: getKey ? getKey(value, index) : null
- };
- }).sort((a, b) => {
- let order = compare(a, b);
- if (!order) {
- order = a.index - b.index;
- }
- return order * +reverse;
- }).map((item) => item.value);
- };
- const getColumnById = function(table, columnId) {
- let column = null;
- table.columns.forEach((item) => {
- if (item.id === columnId) {
- column = item;
- }
- });
- return column;
- };
- const getColumnByKey = function(table, columnKey) {
- let column = null;
- for (let i = 0; i < table.columns.length; i++) {
- const item = table.columns[i];
- if (item.columnKey === columnKey) {
- column = item;
- break;
- }
- }
- if (!column)
- error.throwError("ElTable", `No column matching with column-key: ${columnKey}`);
- return column;
- };
- const getColumnByCell = function(table, cell, namespace) {
- const matches = (cell.className || "").match(new RegExp(`${namespace}-table_[^\\s]+`, "gm"));
- if (matches) {
- return getColumnById(table, matches[0]);
- }
- return null;
- };
- const getRowIdentity = (row, rowKey) => {
- if (!row)
- throw new Error("Row is required when get row identity");
- if (typeof rowKey === "string") {
- if (!rowKey.includes(".")) {
- return `${row[rowKey]}`;
- }
- const key = rowKey.split(".");
- let current = row;
- for (const element of key) {
- current = current[element];
- }
- return `${current}`;
- } else if (typeof rowKey === "function") {
- return rowKey.call(null, row);
- }
- };
- const getKeysMap = function(array, rowKey) {
- const arrayMap = {};
- (array || []).forEach((row, index) => {
- arrayMap[getRowIdentity(row, rowKey)] = { row, index };
- });
- return arrayMap;
- };
- function mergeOptions(defaults, config) {
- const options = {};
- let key;
- for (key in defaults) {
- options[key] = defaults[key];
- }
- for (key in config) {
- if (shared.hasOwn(config, key)) {
- const value = config[key];
- if (typeof value !== "undefined") {
- options[key] = value;
- }
- }
- }
- return options;
- }
- function parseWidth(width) {
- if (width === "")
- return width;
- if (width !== void 0) {
- width = Number.parseInt(width, 10);
- if (Number.isNaN(width)) {
- width = "";
- }
- }
- return width;
- }
- function parseMinWidth(minWidth) {
- if (minWidth === "")
- return minWidth;
- if (minWidth !== void 0) {
- minWidth = parseWidth(minWidth);
- if (Number.isNaN(minWidth)) {
- minWidth = 80;
- }
- }
- return minWidth;
- }
- function parseHeight(height) {
- if (typeof height === "number") {
- return height;
- }
- if (typeof height === "string") {
- if (/^\d+(?:px)?$/.test(height)) {
- return Number.parseInt(height, 10);
- } else {
- return height;
- }
- }
- return null;
- }
- function compose(...funcs) {
- if (funcs.length === 0) {
- return (arg) => arg;
- }
- if (funcs.length === 1) {
- return funcs[0];
- }
- return funcs.reduce((a, b) => (...args) => a(b(...args)));
- }
- function toggleRowStatus(statusArr, row, newVal) {
- let changed = false;
- const index = statusArr.indexOf(row);
- const included = index !== -1;
- const toggleStatus = (type) => {
- if (type === "add") {
- statusArr.push(row);
- } else {
- statusArr.splice(index, 1);
- }
- changed = true;
- if (shared.isArray(row.children)) {
- row.children.forEach((item) => {
- toggleRowStatus(statusArr, item, newVal != null ? newVal : !included);
- });
- }
- };
- if (core.isBoolean(newVal)) {
- if (newVal && !included) {
- toggleStatus("add");
- } else if (!newVal && included) {
- toggleStatus("remove");
- }
- } else {
- included ? toggleStatus("remove") : toggleStatus("add");
- }
- return changed;
- }
- function walkTreeNode(root, cb, childrenKey = "children", lazyKey = "hasChildren") {
- const isNil = (array) => !(Array.isArray(array) && array.length);
- function _walker(parent, children, level) {
- cb(parent, children, level);
- children.forEach((item) => {
- if (item[lazyKey]) {
- cb(item, null, level + 1);
- return;
- }
- const children2 = item[childrenKey];
- if (!isNil(children2)) {
- _walker(item, children2, level + 1);
- }
- });
- }
- root.forEach((item) => {
- if (item[lazyKey]) {
- cb(item, null, 0);
- return;
- }
- const children = item[childrenKey];
- if (!isNil(children)) {
- _walker(item, children, 0);
- }
- });
- }
- exports.removePopper = void 0;
- function createTablePopper(parentNode, trigger, popperContent, popperOptions, tooltipEffect) {
- const { nextZIndex } = index.useZIndex();
- const ns = parentNode == null ? void 0 : parentNode.dataset.prefix;
- const scrollContainer = parentNode == null ? void 0 : parentNode.querySelector(`.${ns}-scrollbar__wrap`);
- function renderContent() {
- const isLight = tooltipEffect === "light";
- const content2 = document.createElement("div");
- content2.className = `${ns}-popper ${isLight ? "is-light" : "is-dark"}`;
- popperContent = escapeHtml__default["default"](popperContent);
- content2.innerHTML = popperContent;
- content2.style.zIndex = String(nextZIndex());
- parentNode == null ? void 0 : parentNode.appendChild(content2);
- return content2;
- }
- function renderArrow() {
- const arrow2 = document.createElement("div");
- arrow2.className = `${ns}-popper__arrow`;
- return arrow2;
- }
- function showPopper() {
- popperInstance && popperInstance.update();
- }
- exports.removePopper == null ? void 0 : exports.removePopper();
- exports.removePopper = () => {
- try {
- popperInstance && popperInstance.destroy();
- content && (parentNode == null ? void 0 : parentNode.removeChild(content));
- trigger.removeEventListener("mouseenter", showPopper);
- trigger.removeEventListener("mouseleave", exports.removePopper);
- scrollContainer == null ? void 0 : scrollContainer.removeEventListener("scroll", exports.removePopper);
- exports.removePopper = void 0;
- } catch (e) {
- }
- };
- let popperInstance = null;
- const content = renderContent();
- const arrow = renderArrow();
- content.appendChild(arrow);
- popperInstance = core$1.createPopper(trigger, content, {
- strategy: "absolute",
- modifiers: [
- {
- name: "offset",
- options: {
- offset: [0, 8]
- }
- },
- {
- name: "arrow",
- options: {
- element: arrow,
- padding: 10
- }
- }
- ],
- ...popperOptions
- });
- trigger.addEventListener("mouseenter", showPopper);
- trigger.addEventListener("mouseleave", exports.removePopper);
- scrollContainer == null ? void 0 : scrollContainer.addEventListener("scroll", exports.removePopper);
- return popperInstance;
- }
- function getCurrentColumns(column) {
- if (column.children) {
- return lodashUnified.flatMap(column.children, getCurrentColumns);
- } else {
- return [column];
- }
- }
- function getColSpan(colSpan, column) {
- return colSpan + column.colSpan;
- }
- const isFixedColumn = (index, fixed, store, realColumns) => {
- let start = 0;
- let after = index;
- const columns = store.states.columns.value;
- if (realColumns) {
- const curColumns = getCurrentColumns(realColumns[index]);
- const preColumns = columns.slice(0, columns.indexOf(curColumns[0]));
- start = preColumns.reduce(getColSpan, 0);
- after = start + curColumns.reduce(getColSpan, 0) - 1;
- } else {
- start = index;
- }
- let fixedLayout;
- switch (fixed) {
- case "left":
- if (after < store.states.fixedLeafColumnsLength.value) {
- fixedLayout = "left";
- }
- break;
- case "right":
- if (start >= columns.length - store.states.rightFixedLeafColumnsLength.value) {
- fixedLayout = "right";
- }
- break;
- default:
- if (after < store.states.fixedLeafColumnsLength.value) {
- fixedLayout = "left";
- } else if (start >= columns.length - store.states.rightFixedLeafColumnsLength.value) {
- fixedLayout = "right";
- }
- }
- return fixedLayout ? {
- direction: fixedLayout,
- start,
- after
- } : {};
- };
- const getFixedColumnsClass = (namespace, index, fixed, store, realColumns, offset = 0) => {
- const classes = [];
- const { direction, start, after } = isFixedColumn(index, fixed, store, realColumns);
- if (direction) {
- const isLeft = direction === "left";
- classes.push(`${namespace}-fixed-column--${direction}`);
- if (isLeft && after + offset === store.states.fixedLeafColumnsLength.value - 1) {
- classes.push("is-last-column");
- } else if (!isLeft && start - offset === store.states.columns.value.length - store.states.rightFixedLeafColumnsLength.value) {
- classes.push("is-first-column");
- }
- }
- return classes;
- };
- function getOffset(offset, column) {
- return offset + (column.realWidth === null || Number.isNaN(column.realWidth) ? Number(column.width) : column.realWidth);
- }
- const getFixedColumnOffset = (index, fixed, store, realColumns) => {
- const {
- direction,
- start = 0,
- after = 0
- } = isFixedColumn(index, fixed, store, realColumns);
- if (!direction) {
- return;
- }
- const styles = {};
- const isLeft = direction === "left";
- const columns = store.states.columns.value;
- if (isLeft) {
- styles.left = columns.slice(0, start).reduce(getOffset, 0);
- } else {
- styles.right = columns.slice(after + 1).reverse().reduce(getOffset, 0);
- }
- return styles;
- };
- const ensurePosition = (style, key) => {
- if (!style)
- return;
- if (!Number.isNaN(style[key])) {
- style[key] = `${style[key]}px`;
- }
- };
- exports.compose = compose;
- exports.createTablePopper = createTablePopper;
- exports.ensurePosition = ensurePosition;
- exports.getCell = getCell;
- exports.getColumnByCell = getColumnByCell;
- exports.getColumnById = getColumnById;
- exports.getColumnByKey = getColumnByKey;
- exports.getFixedColumnOffset = getFixedColumnOffset;
- exports.getFixedColumnsClass = getFixedColumnsClass;
- exports.getKeysMap = getKeysMap;
- exports.getRowIdentity = getRowIdentity;
- exports.isFixedColumn = isFixedColumn;
- exports.mergeOptions = mergeOptions;
- exports.orderBy = orderBy;
- exports.parseHeight = parseHeight;
- exports.parseMinWidth = parseMinWidth;
- exports.parseWidth = parseWidth;
- exports.toggleRowStatus = toggleRowStatus;
- exports.walkTreeNode = walkTreeNode;
- //# sourceMappingURL=util.js.map
|