tdesign-vue-next
Version:
TDesign Component for vue-next
204 lines (200 loc) • 9.47 kB
JavaScript
/**
* tdesign v1.11.5
* (c) 2025 tdesign
* @license MIT
*/
import _defineProperty from '@babel/runtime/helpers/defineProperty';
import _toConsumableArray from '@babel/runtime/helpers/toConsumableArray';
import { defineComponent, toRefs, computed, createVNode, mergeProps } from 'vue';
import { pick, get, camelCase } from 'lodash-es';
import TrElement, { ROW_LISTENERS, TABLE_PROPS } from './tr.js';
import { useConfig } from '../config-provider/hooks/useConfig.js';
import { u as useTNodeJSX } from '../_chunks/dep-7c56a7f5.js';
import useClassName from './hooks/useClassName.js';
import baseTableProps from './base-table-props.js';
import useRowspanAndColspan from './hooks/useRowspanAndColspan.js';
import '@babel/runtime/helpers/typeof';
import './utils.js';
import './hooks/useFixed.js';
import '@babel/runtime/helpers/slicedToArray';
import '../_chunks/dep-92106726.js';
import '../_chunks/dep-3bde6c25.js';
import '../_chunks/dep-56c3d46e.js';
import '@babel/runtime/helpers/objectWithoutProperties';
import '../utils/dom.js';
import '../_chunks/dep-caecb55d.js';
import './ellipsis.js';
import '../utils/render-tnode.js';
import '../tooltip/index.js';
import '../tooltip/tooltip.js';
import '../tooltip/props.js';
import '../popup/props.js';
import '../popup/index.js';
import '../popup/popup.js';
import '@popperjs/core';
import '../hooks/useConfig.js';
import '../config-provider/utils/context.js';
import '../_chunks/dep-c75b9b8e.js';
import 'dayjs';
import '../hooks/useKeepAnimation.js';
import '../_chunks/dep-d60f6309.js';
import '../hooks/useVModel.js';
import '../popup/container.js';
import '../hooks/useResizeObserver.js';
import '../utils/withInstall.js';
import '../tooltip/utils/index.js';
import './hooks/useLazyLoad.js';
import '../_chunks/dep-8c2d2d85.js';
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
var ROW_AND_TD_LISTENERS = [].concat(_toConsumableArray(ROW_LISTENERS), ["cell-click"]);
var extendTableProps = ["bordered", "rowKey", "rowClassName", "rowAttributes", "loading", "empty", "fixedRows", "firstFullRow", "lastFullRow", "rowspanAndColspan", "scroll", "cellEmptyContent", "pagination", "attach", "onCellClick", "onPageChange", "onRowClick", "onRowDblclick", "onRowMouseover", "onRowMousedown", "onRowMouseenter", "onRowMouseleave", "onRowMouseup", "onScroll", "onScrollX", "onScrollY"];
var TBody = defineComponent({
name: "TBody",
props: _objectSpread({
classPrefix: String,
data: Array,
columns: Array,
ellipsisOverlayClassName: String,
rowAndColFixedPosition: Map,
showColumnShadow: Object,
tableElm: {},
tableWidth: Number,
isWidthOverflow: Boolean,
virtualConfig: Object,
tableContentElm: {},
handleRowMounted: Function,
renderExpandedRow: Function,
firstFullRow: [String, Function],
lastFullRow: [String, Function],
activeRow: [Array],
hoverRow: [String, Number]
}, pick(baseTableProps, extendTableProps)),
setup: function setup(props) {
var renderTNode = useTNodeJSX();
var _toRefs = toRefs(props),
data = _toRefs.data,
columns = _toRefs.columns,
rowKey = _toRefs.rowKey,
rowspanAndColspan = _toRefs.rowspanAndColspan;
var _useConfig = useConfig("table", props.locale),
t = _useConfig.t,
globalConfig = _useConfig.globalConfig;
var _useClassName = useClassName(),
tableFullRowClasses = _useClassName.tableFullRowClasses,
tableBaseClass = _useClassName.tableBaseClass;
var _useRowspanAndColspan = useRowspanAndColspan(data, columns, rowKey, rowspanAndColspan),
skipSpansMap = _useRowspanAndColspan.skipSpansMap;
var tbodyClasses = computed(function () {
return [tableBaseClass.body];
});
return {
t: t,
globalConfig: globalConfig,
renderTNode: renderTNode,
tableFullRowClasses: tableFullRowClasses,
tbodyClasses: tbodyClasses,
tableBaseClass: tableBaseClass,
skipSpansMap: skipSpansMap
};
},
render: function render() {
var _this = this,
_this$data,
_this$data2,
_this$virtualConfig,
_this$virtualConfig2;
var renderEmpty = function renderEmpty(columns) {
var tableWidth = _this.bordered ? _this.tableWidth - 2 : _this.tableWidth;
return createVNode("tr", {
"class": [_this.tableBaseClass.emptyRow, _defineProperty({}, _this.tableFullRowClasses.base, _this.isWidthOverflow)]
}, [createVNode("td", {
"colspan": columns.length
}, [createVNode("div", {
"class": [_this.tableBaseClass.empty, _defineProperty({}, _this.tableFullRowClasses.innerFullRow, _this.isWidthOverflow)],
"style": _this.isWidthOverflow ? {
width: "".concat(tableWidth, "px")
} : {}
}, [_this.renderTNode("empty") || _this.t(_this.globalConfig.empty)])])]);
};
var getFullRow = function getFullRow(columnLength2, type) {
var tType = camelCase(type);
var fullRowNode = _this.renderTNode(tType);
if (["", null, void 0, false].includes(fullRowNode)) return null;
var isFixedToLeft = _this.isWidthOverflow && _this.columns.find(function (col) {
return col.fixed === "left";
});
var classes = [_this.tableFullRowClasses.base, _this.tableFullRowClasses[tType]];
var tableWidth = _this.bordered ? _this.tableWidth - 2 : _this.tableWidth;
return createVNode("tr", {
"class": classes,
"key": "key-full-row-".concat(type)
}, [createVNode("td", {
"colspan": columnLength2
}, [createVNode("div", {
"class": _defineProperty({}, _this.tableFullRowClasses.innerFullRow, isFixedToLeft),
"style": isFixedToLeft ? {
width: "".concat(tableWidth, "px")
} : {}
}, [createVNode("div", {
"class": _this.tableFullRowClasses.innerFullElement
}, [fullRowNode])])])]);
};
var columnLength = this.columns.length;
var dataLength = (_this$data = this.data) === null || _this$data === void 0 ? void 0 : _this$data.length;
var trNodeList = [];
var properties = ["classPrefix", "ellipsisOverlayClassName", "rowAndColFixedPosition", "scroll", "tableElm", "tableContentElm", "pagination", "attach"];
var renderData = this.virtualConfig.isVirtualScroll.value ? this.virtualConfig.visibleData.value : this.data;
renderData === null || renderData === void 0 || renderData.forEach(function (row, rowIndex) {
var _this$activeRow;
var rowKey = _this.rowKey || "id";
var rowValue = get(row, rowKey);
var trProps = _objectSpread(_objectSpread({}, pick(_this.$props, TABLE_PROPS)), {}, {
rowKey: rowKey,
row: row,
columns: _this.columns,
rowIndex: row.VIRTUAL_SCROLL_INDEX || rowIndex,
dataLength: dataLength,
skipSpansMap: _this.skipSpansMap,
virtualConfig: _this.virtualConfig,
active: (_this$activeRow = _this.activeRow) === null || _this$activeRow === void 0 ? void 0 : _this$activeRow.includes(rowValue),
isHover: _this.hoverRow === rowValue
}, pick(_this.$props, properties));
if (_this.onCellClick) {
trProps.onCellClick = _this.onCellClick;
}
var trNode = createVNode(TrElement, mergeProps({
"key": get(row, _this.rowKey || "id") || rowIndex
}, trProps, {
"onRowMounted": _this.handleRowMounted
}), _this.$slots);
trNodeList.push(trNode);
if (_this.renderExpandedRow) {
var p = {
row: row,
index: rowIndex,
columns: _this.columns,
tableWidth: _this.tableWidth,
isWidthOverflow: _this.isWidthOverflow
};
var expandedContent = _this.renderExpandedRow(p);
expandedContent && trNodeList.push(expandedContent);
}
});
var list = [getFullRow(columnLength, "first-full-row")].concat(trNodeList, [getFullRow(columnLength, "last-full-row")]);
var isEmpty = !((_this$data2 = this.data) !== null && _this$data2 !== void 0 && _this$data2.length) && !this.loading && !this.firstFullRow && !this.lastFullRow;
var translate = "translateY(".concat((_this$virtualConfig = this.virtualConfig) === null || _this$virtualConfig === void 0 ? void 0 : _this$virtualConfig.translateY.value, "px)");
var posStyle = (_this$virtualConfig2 = this.virtualConfig) !== null && _this$virtualConfig2 !== void 0 && _this$virtualConfig2.isVirtualScroll.value ? {
transform: translate,
"-ms-transform": translate,
"-moz-transform": translate,
"-webkit-transform": translate
} : void 0;
return createVNode("tbody", {
"class": this.tbodyClasses,
"style": _objectSpread({}, posStyle)
}, [isEmpty ? renderEmpty(this.columns) : list]);
}
});
export { ROW_AND_TD_LISTENERS, TBody as default, extendTableProps };
//# sourceMappingURL=tbody.js.map