UNPKG

tdesign-vue

Version:
338 lines (334 loc) 14 kB
/** * tdesign v1.14.1 * (c) 2025 tdesign * @license MIT */ import { h as helper } from '../_chunks/dep-6a4dc7bb.js'; import _typeof from '@babel/runtime/helpers/typeof'; import _defineProperty from '@babel/runtime/helpers/defineProperty'; import { defineComponent, toRefs, ref, computed, reactive, watch, h } from '@vue/composition-api'; import { pick, get, isFunction, isString, upperFirst } from 'lodash-es'; 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 { getCellKey } from './hooks/useRowspanAndColspan.js'; import useLazyLoad from '../hooks/useLazyLoad.js'; import '@babel/runtime/helpers/slicedToArray'; 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 '../utils/dom.js'; import 'vue'; import 'raf'; import '../utils/easing.js'; import '../config-provider/useConfig.js'; import '../config-provider/context.js'; import '../_common/js/global-config/default-config.js'; import '../_common/js/global-config/locale/zh_CN.js'; import '../_chunks/dep-ba613a02.js'; import '../_chunks/dep-fdb1b253.js'; import 'dayjs'; import '../_common/js/global-config/t.js'; import '../utils/render-tnode.js'; import '@babel/runtime/helpers/readOnlyError'; import '../tooltip/index.js'; import '../tooltip/tooltip.js'; import '../tooltip/props.js'; import '../popup/props.js'; import '../popup/popup.js'; import '@popperjs/core'; import '../utils/helper.js'; import '../_common/js/utils/setStyle.js'; import '../popup/container.js'; import '../config-provider/config-receiver.js'; import '../utils/mixins.js'; import '../utils/event.js'; import '../popup/utils.js'; import '../utils/map-props.js'; import '../utils/withInstall.js'; import '../_common/js/utils/observe.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 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; } var hParams = h; Object.assign(hParams, params || {}); if (slots.cellEmptyContent) { return slots.cellEmptyContent(hParams); } if (slots["cell-empty-content"]) { return slots["cell-empty-content"](hParams); } return r; } var TrElement = defineComponent({ name: "TR", props: _objectSpread(_objectSpread({ row: Object, rowIndex: Number, ellipsisOverlayClassName: String, classPrefix: String, dataLength: Number, rowAndColFixedPosition: Map, skipSpansMap: Map, virtualConfig: Object, active: Boolean, isHover: Boolean }, pick(baseTableProps, TABLE_PROPS)), {}, { tableElm: {}, tableContentElm: {} }), setup: function setup(props, context) { var _toRefs = toRefs(props), tableContentElm = _toRefs.tableContentElm, active = _toRefs.active, isHover = _toRefs.isHover; 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, rowKey: props.rowKey, rowIndex: props.rowIndex, type: "body" }, props.rowKey || "id"); return [(_trStyles$value = trStyles.value) === null || _trStyles$value === void 0 ? void 0 : _trStyles$value.classes, customClasses, _defineProperty(_defineProperty({}, "".concat(props.classPrefix, "-table__row--active"), active.value), "".concat(props.classPrefix, "-table__row--hover"), isHover.value)].filter(function (v) { return v; }); }); var _useLazyLoad = useLazyLoad(tableContentElm, trRef, reactive(_objectSpread({}, props.scroll))), hasLazyLoadHolder = _useLazyLoad.hasLazyLoadHolder, tRowHeight = _useLazyLoad.tRowHeight; var getTrListeners = function getTrListeners(row, rowIndex) { var trListeners = {}; ROW_LISTENERS.forEach(function (eventName) { trListeners[eventName] = function (e) { var _props; var p = { e: e, row: row, index: rowIndex }; (_props = props["onRow".concat(upperFirst(eventName))]) === null || _props === void 0 || _props.call(props, p); context.emit("row-".concat(eventName), 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 }); } }); return { trRef: trRef, tableColFixedClasses: tableColFixedClasses, tableDraggableClasses: tableDraggableClasses, tdEllipsisClass: tdEllipsisClass, tableBaseClass: tableBaseClass, tdAlignClasses: tdAlignClasses, trStyles: trStyles, classes: classes, trAttributes: trAttributes, tRowHeight: tRowHeight, hasLazyLoadHolder: hasLazyLoadHolder, getTrListeners: getTrListeners }; }, methods: { renderEllipsisCell: function renderEllipsisCell(h2, cellParams, params) { var _this = this; var h = this.$createElement; var cellNode = params.cellNode; var col = cellParams.col; var content; if (isFunction(col.ellipsis)) { content = col.ellipsis(h2, cellParams); } else if (_typeof(col.ellipsis) === "object" && isFunction(col.ellipsis.content)) { content = col.ellipsis.content(h2, cellParams); } else if (this.$scopedSlots["ellipsis-".concat(col.colKey)]) { content = this.$scopedSlots["ellipsis-".concat(col.colKey)](cellParams); } else if (this.$scopedSlots.ellipsis) { content = this.$scopedSlots.ellipsis(cellParams); } var tooltipProps = {}; if (_typeof(col.ellipsis) === "object") { tooltipProps = "props" in col.ellipsis ? col.ellipsis.props : col.ellipsis || void 0; } return h(TEllipsis, { "attrs": { "placement": "top", "attach": this.attach || (this.tableElm ? function () { return _this.tableElm; } : void 0), "tooltipContent": content && function () { return content; }, "tooltipProps": tooltipProps, "overlayClassName": this.ellipsisOverlayClassName, "classPrefix": this.classPrefix } }, [cellNode]); }, renderTd: function renderTd(h2, params, extra) { var _this2 = this; var h = this.$createElement; var col = params.col, colIndex = params.colIndex, rowIndex = params.rowIndex; var cellSpans = extra.cellSpans, dataLength = extra.dataLength, rowAndColFixedPosition = extra.rowAndColFixedPosition; var cellNode = renderCell(params, this.$scopedSlots, { cellEmptyContent: extra.cellEmptyContent, pagination: this.pagination }); var tdStyles = getColumnFixedStyles(col, colIndex, rowAndColFixedPosition, this.tableColFixedClasses); var customClasses = formatClassNames(col.className, _objectSpread(_objectSpread({}, params), {}, { type: "td" })); var classes = [tdStyles.classes, customClasses, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, this.tdEllipsisClass, col.ellipsis), this.tableBaseClass.tdLastRow, rowIndex + cellSpans.rowspan === dataLength), this.tableBaseClass.tdFirstCol, colIndex === 0 && this.rowspanAndColspan), this.tdAlignClasses[col.align], col.align && col.align !== "left"), this.tableDraggableClasses.handle, col.colKey === "drag")]; var onClick = function onClick(e) { var _this2$onCellClick; var p = _objectSpread(_objectSpread({}, params), {}, { e: e }); if (col.stopPropagation) { e.stopPropagation(); } (_this2$onCellClick = _this2.onCellClick) === null || _this2$onCellClick === void 0 || _this2$onCellClick.call(_this2, p); _this2.$emit("cell-click", p); }; var normalAttrs = isFunction(col.attrs) ? col.attrs(_objectSpread(_objectSpread({}, params), {}, { type: "td" })) : col.attrs; var attrs = _objectSpread(_objectSpread({}, normalAttrs), cellSpans); return h("td", helper([{ "class": classes }, { "attrs": attrs }, { "style": _objectSpread(_objectSpread({}, tdStyles.style), attrs.style), "on": { "click": onClick } }]), [col.ellipsis ? this.renderEllipsisCell(h2, params, { cellNode: cellNode }) : cellNode]); } }, render: function render(h2) { var _this$columns, _this3 = this, _this$trStyles; var h = arguments[0]; var row = this.row, rowIndex = this.rowIndex, dataLength = this.dataLength, rowAndColFixedPosition = this.rowAndColFixedPosition; var columnVNodeList = (_this$columns = this.columns) === null || _this$columns === void 0 ? void 0 : _this$columns.map(function (col, colIndex) { var cellSpans = {}; var params = { row: row, col: col, rowIndex: rowIndex, colIndex: colIndex }; var spanState = null; if (_this3.skipSpansMap.size) { var _spanState, _spanState2; var cellKey = getCellKey(row, _this3.rowKey, col.colKey, colIndex); spanState = _this3.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 _this3.renderTd(h2, params, { dataLength: dataLength, rowAndColFixedPosition: rowAndColFixedPosition, columnLength: _this3.columns.length, cellSpans: cellSpans, cellEmptyContent: _this3.cellEmptyContent }); }); var attrs = this.trAttributes || {}; return h("tr", helper([{ "ref": "trRef" }, { "attrs": attrs }, { "style": (_this$trStyles = this.trStyles) === null || _this$trStyles === void 0 ? void 0 : _this$trStyles.style, "class": this.classes }, { "on": this.getTrListeners(row, rowIndex) }]), [this.hasLazyLoadHolder ? [h("td", { "style": { height: "".concat(this.tRowHeight, "px"), border: "none" } })] : columnVNodeList]); } }); export { ROW_LISTENERS, TABLE_PROPS, TrElement as default, renderCell }; //# sourceMappingURL=tr.js.map