xdesign-vue-next
Version:
XDesign Component for vue-next
313 lines (309 loc) • 13.5 kB
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
import _typeof from '@babel/runtime/helpers/typeof';
import _defineProperty from '@babel/runtime/helpers/defineProperty';
import { defineComponent, toRefs, ref, computed, reactive, watch, createVNode, mergeProps, h, isVNode } from 'vue';
import isFunction from 'lodash/isFunction';
import upperFirst from 'lodash/upperFirst';
import isString from 'lodash/isString';
import pick from 'lodash/pick';
import get from 'lodash/get';
import { formatRowAttributes, formatRowClassNames, formatClassNames } from './utils.js';
import { getRowFixedStyles, getColumnFixedStyles } from './hooks/useFixed.js';
import useClassName from './hooks/useClassName.js';
import TEllipsis from './ellipsis.js';
import baseTableProps from './base-table-props.js';
import useLazyLoad from './hooks/useLazyLoad.js';
import { getCellKey } from './hooks/useRowspanAndColspan.js';
import 'lodash/isObject';
import '@babel/runtime/helpers/slicedToArray';
import 'lodash/debounce';
import 'lodash/xorWith';
import '../_common/js/log/log.js';
import '../_common/js/utils/getScrollbarWidth.js';
import '../_common/js/utils/helper.js';
import '@babel/runtime/helpers/toConsumableArray';
import '@babel/runtime/helpers/objectWithoutProperties';
import 'lodash/isNull';
import 'lodash/isUndefined';
import 'lodash/isNumber';
import 'lodash/isArray';
import '../utils/dom.js';
import '../_chunks/dep-3a1cce9f.js';
import '../utils/easing.js';
import '../hooks/useConfig.js';
import '../config-provider/useConfig.js';
import 'lodash/cloneDeep';
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 '../utils/render-tnode.js';
import 'lodash/isEmpty';
import 'lodash/camelCase';
import 'lodash/kebabCase';
import '../tooltip/index.js';
import '../tooltip/tooltip.js';
import 'lodash/omit';
import '../tooltip/props.js';
import '../popup/props.js';
import '../popup/index.js';
import '../popup/popup.js';
import '@popperjs/core';
import '../hooks/useVModel.js';
import '../_common/js/utils/set-style.js';
import '../popup/container.js';
import '../hooks/useResizeObserver.js';
import '../hooks/tnode.js';
import '../utils/withInstall.js';
import '../tooltip/util.js';
import '../_common/js/utils/observe.js';
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 _isSlot(s) {
return typeof s === 'function' || Object.prototype.toString.call(s) === '[object Object]' && !isVNode(s);
}
var TABLE_PROPS = ["rowKey", "rowClassName", "columns", "fixedRows", "footData", "rowAttributes", "rowspanAndColspan", "scroll", "cellEmptyContent", "pagination", "attach", "onCellClick", "onRowClick", "onRowDblclick", "onRowMouseover", "onRowMousedown", "onRowMouseenter", "onRowMouseleave", "onRowMouseup"];
var ROW_LISTENERS = ["click", "dblclick", "mouseover", "mousedown", "mouseenter", "mouseleave", "mouseup"];
function renderCell(params, slots, extra) {
var col = params.col,
row = params.row,
rowIndex = params.rowIndex;
if (col.colKey === "serial-number") {
var _ref = (extra === null || extra === void 0 ? void 0 : extra.pagination) || {},
current = _ref.current,
pageSize = _ref.pageSize,
defaultCurrent = _ref.defaultCurrent,
defaultPageSize = _ref.defaultPageSize;
var tCurrent = current || defaultCurrent;
var tPageSize = pageSize || defaultPageSize;
if (tPageSize && tCurrent) {
return tPageSize * (tCurrent - 1) + rowIndex + 1;
}
return rowIndex + 1;
}
if (isFunction(col.cell)) {
return col.cell(h, params);
}
if (slots[col.colKey]) {
return slots[col.colKey](params);
}
if (isString(col.cell) && slots[col.cell]) {
return slots[col.cell](params);
}
if (isFunction(col.render)) {
return col.render(h, _objectSpread(_objectSpread({}, params), {}, {
type: "cell"
}));
}
var r = get(row, col.colKey);
if (![void 0, "", null].includes(r)) return r;
if (extra !== null && extra !== void 0 && extra.cellEmptyContent) {
return isFunction(extra.cellEmptyContent) ? extra.cellEmptyContent(h, params) : extra.cellEmptyContent;
}
if (slots.cellEmptyContent) return slots.cellEmptyContent(params);
if (slots["cell-empty-content"]) return slots["cell-empty-content"](params);
return r;
}
var TrElement = defineComponent({
name: "XR",
props: _objectSpread(_objectSpread({
row: Object,
rowIndex: Number,
dataLength: Number,
ellipsisOverlayClassName: String,
classPrefix: String,
rowAndColFixedPosition: Map,
skipSpansMap: Map,
virtualConfig: Object
}, pick(baseTableProps, TABLE_PROPS)), {}, {
tableElm: {},
tableContentElm: {}
}),
emits: ["row-mounted"],
setup: function setup(props, context) {
var _toRefs = toRefs(props),
tableContentElm = _toRefs.tableContentElm;
var trRef = ref(null);
var _useClassName = useClassName(),
tdEllipsisClass = _useClassName.tdEllipsisClass,
tableBaseClass = _useClassName.tableBaseClass,
tableColFixedClasses = _useClassName.tableColFixedClasses,
tableRowFixedClasses = _useClassName.tableRowFixedClasses,
tdAlignClasses = _useClassName.tdAlignClasses,
tableDraggableClasses = _useClassName.tableDraggableClasses;
var trStyles = computed(function () {
return getRowFixedStyles(get(props.row, props.rowKey || "id"), props.rowIndex, props.dataLength, props.fixedRows, props.rowAndColFixedPosition, tableRowFixedClasses);
});
var trAttributes = computed(function () {
return formatRowAttributes(props.rowAttributes, {
row: props.row,
rowIndex: props.rowIndex,
type: "body"
}) || {};
});
var classes = computed(function () {
var _trStyles$value;
var customClasses = formatRowClassNames(props.rowClassName, {
row: props.row,
rowIndex: props.rowIndex,
type: "body"
}, props.rowKey || "id");
return [(_trStyles$value = trStyles.value) === null || _trStyles$value === void 0 ? void 0 : _trStyles$value.classes, customClasses].filter(function (v) {
return v;
});
});
var _useLazyLoad = useLazyLoad(tableContentElm, trRef, reactive(_objectSpread(_objectSpread({}, props.scroll), {}, {
rowIndex: props.rowIndex
}))),
hasLazyLoadHolder = _useLazyLoad.hasLazyLoadHolder,
tRowHeight = _useLazyLoad.tRowHeight;
var getTrListeners = function getTrListeners(row, rowIndex) {
var trListeners = {};
ROW_LISTENERS.forEach(function (eventName) {
trListeners["on".concat(upperFirst(eventName))] = function (e) {
var _props;
var p = {
e: e,
row: row,
index: rowIndex
};
(_props = props["onRow".concat(upperFirst(eventName))]) === null || _props === void 0 ? void 0 : _props.call(props, p);
};
});
return trListeners;
};
watch([trRef], function () {
var _props$virtualConfig;
if ((_props$virtualConfig = props.virtualConfig) !== null && _props$virtualConfig !== void 0 && _props$virtualConfig.isVirtualScroll.value) {
context.emit("row-mounted", {
ref: trRef,
data: props.row
});
}
});
function renderEllipsisCell(cellParams, params) {
var cellNode = params.cellNode;
var col = cellParams.col,
colIndex = cellParams.colIndex;
var content = isFunction(col.ellipsis) ? col.ellipsis(h, cellParams) : void 0;
if (_typeof(col.ellipsis) === "object" && isFunction(col.ellipsis.content)) {
content = col.ellipsis.content(h, cellParams);
}
var tooltipProps = {};
if (_typeof(col.ellipsis) === "object") {
tooltipProps = "props" in col.ellipsis ? col.ellipsis.props : col.ellipsis || void 0;
}
var tableElement = props.tableElm;
var placement = colIndex === 0 ? "top-left" : "top";
placement = colIndex === props.columns.length - 1 ? "top-right" : placement;
return createVNode(TEllipsis, {
"placement": placement,
"attach": tableElement ? function () {
return tableElement;
} : void 0,
"tooltipContent": content && function () {
return content;
},
"tooltipProps": tooltipProps,
"overlayClassName": props.ellipsisOverlayClassName,
"classPrefix": props.classPrefix
}, _isSlot(cellNode) ? cellNode : {
"default": function _default() {
return [cellNode];
}
});
}
function renderTd(params, extra) {
var _ref2;
var col = params.col,
colIndex = params.colIndex,
rowIndex = params.rowIndex;
var cellSpans = extra.cellSpans,
dataLength = extra.dataLength,
rowAndColFixedPosition = extra.rowAndColFixedPosition;
var cellNode = renderCell(params, context.slots, {
cellEmptyContent: extra.cellEmptyContent,
pagination: props.pagination
});
var tdStyles = getColumnFixedStyles(col, colIndex, rowAndColFixedPosition, tableColFixedClasses);
var customClasses = formatClassNames(col.className, _objectSpread(_objectSpread({}, params), {}, {
type: "td"
}));
var classes2 = [tdStyles.classes, customClasses, (_ref2 = {}, _defineProperty(_ref2, tdEllipsisClass, col.ellipsis), _defineProperty(_ref2, tableBaseClass.tdLastRow, rowIndex + cellSpans.rowspan === dataLength), _defineProperty(_ref2, tableBaseClass.tdFirstCol, colIndex === 0 && props.rowspanAndColspan), _defineProperty(_ref2, tdAlignClasses[col.align], col.align && col.align !== "left"), _defineProperty(_ref2, tableDraggableClasses.handle, col.colKey === "drag"), _ref2)];
var onClick = function onClick(e) {
var _props$onCellClick;
var p = _objectSpread(_objectSpread({}, params), {}, {
e: e
});
if (col.stopPropagation) {
e.stopPropagation();
}
(_props$onCellClick = props.onCellClick) === null || _props$onCellClick === void 0 ? void 0 : _props$onCellClick.call(props, p);
};
var normalAttrs = isFunction(col.attrs) ? col.attrs(_objectSpread(_objectSpread({}, params), {}, {
type: "td"
})) : col.attrs;
var attrs = _objectSpread(_objectSpread({}, normalAttrs), cellSpans);
return createVNode("td", mergeProps({
"key": col.colKey || colIndex,
"class": classes2,
"style": tdStyles.style
}, attrs, {
"onClick": onClick
}), [col.ellipsis ? renderEllipsisCell(params, {
cellNode: cellNode
}) : cellNode]);
}
return function () {
var _trStyles$value2;
var columns = props.columns,
skipSpansMap = props.skipSpansMap,
row = props.row,
dataLength = props.dataLength,
rowAndColFixedPosition = props.rowAndColFixedPosition;
var columVNodeList = columns === null || columns === void 0 ? void 0 : columns.map(function (col, colIndex) {
var cellSpans = {};
var params = {
row: row,
col: col,
rowIndex: props.rowIndex,
colIndex: colIndex
};
var spanState = null;
if (props.skipSpansMap.size) {
var _spanState, _spanState2;
var cellKey = getCellKey(row, props.rowKey, col.colKey, colIndex);
spanState = skipSpansMap.get(cellKey) || {};
((_spanState = spanState) === null || _spanState === void 0 ? void 0 : _spanState.rowspan) > 1 && (cellSpans.rowspan = spanState.rowspan);
((_spanState2 = spanState) === null || _spanState2 === void 0 ? void 0 : _spanState2.colspan) > 1 && (cellSpans.colspan = spanState.colspan);
if (spanState.skipped) return null;
}
return renderTd(params, {
dataLength: dataLength,
rowAndColFixedPosition: rowAndColFixedPosition,
columnLength: columns.length,
cellSpans: cellSpans,
cellEmptyContent: props.cellEmptyContent
});
});
return createVNode("tr", mergeProps({
"ref": trRef
}, trAttributes.value, {
"style": (_trStyles$value2 = trStyles.value) === null || _trStyles$value2 === void 0 ? void 0 : _trStyles$value2.style,
"class": classes.value
}, getTrListeners(row, props.rowIndex)), [hasLazyLoadHolder.value ? [createVNode("td", {
"style": {
height: "".concat(tRowHeight.value, "px"),
border: "none"
}
}, null)] : columVNodeList]);
};
}
});
export { ROW_LISTENERS, TABLE_PROPS, TrElement as default, renderCell };
//# sourceMappingURL=tr.js.map