UNPKG

tdesign-vue-next

Version:
228 lines (224 loc) 10.7 kB
/** * tdesign v1.11.5 * (c) 2025 tdesign * @license MIT */ import _typeof from '@babel/runtime/helpers/typeof'; import _defineProperty from '@babel/runtime/helpers/defineProperty'; import { defineComponent, ref, computed, createVNode, h, mergeProps, isVNode } from 'vue'; import { isFunction } from 'lodash-es'; import { getColumnFixedStyles } from './hooks/useFixed.js'; import useClassName from './hooks/useClassName.js'; import { renderTitle } from './hooks/useTableHeader.js'; import TEllipsis from './ellipsis.js'; import { formatClassNames } from './utils.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/toConsumableArray'; import '@babel/runtime/helpers/objectWithoutProperties'; import '../utils/dom.js'; import '../_chunks/dep-caecb55d.js'; import '../hooks/useConfig.js'; import '../config-provider/hooks/useConfig.js'; import '../config-provider/utils/context.js'; import '../_chunks/dep-c75b9b8e.js'; import 'dayjs'; import './hooks/useMultiHeader.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 '../_chunks/dep-7c56a7f5.js'; 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'; 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; } function _isSlot(s) { return typeof s === 'function' || Object.prototype.toString.call(s) === '[object Object]' && !isVNode(s); } var THead = defineComponent({ name: "THead", props: { classPrefix: String, ellipsisOverlayClassName: String, isFixedHeader: Boolean, thDraggable: Boolean, maxHeight: [String, Number], height: [String, Number], rowAndColFixedPosition: Map, thWidthList: Object, bordered: Boolean, isMultipleHeader: Boolean, resizable: Boolean, attach: [String, Function], spansAndLeafNodes: Object, thList: Array, columnResizeParams: Object, showColumnShadow: Object }, setup: function setup(props, _ref) { var slots = _ref.slots; var theadRef = ref(); var classnames = useClassName(); var tableHeaderClasses = classnames.tableHeaderClasses, tableBaseClass = classnames.tableBaseClass; var theadClasses = computed(function () { return [tableHeaderClasses.header, _defineProperty(_defineProperty(_defineProperty({}, tableHeaderClasses.fixed, Boolean(props.maxHeight || props.height)), tableBaseClass.bordered, props.bordered && props.isMultipleHeader), tableHeaderClasses.multipleHeader, props.isMultipleHeader)]; }); var colspanSkipMap = computed(function () { var map = {}; var _processColumns = function processColumns(columns) { for (var i = 0, len = columns.length; i < len; i++) { var item = columns[i]; if (item.colspan > 1) { for (var j = i + 1; j < i + item.colspan; j++) { if (columns[j]) { map[columns[j].colKey] = true; } } } if (item.children) { _processColumns(item.children); } } }; var list = props.thList[0]; _processColumns(list); return map; }); var getTableNode = function getTableNode(thead) { var parent = thead; while (parent) { var _parent; parent = parent.parentNode; if ((_parent = parent) !== null && _parent !== void 0 && (_parent = _parent.classList) !== null && _parent !== void 0 && _parent.contains("".concat(props.classPrefix, "-table"))) { break; } } return parent; }; return _objectSpread(_objectSpread({}, classnames), {}, { colspanSkipMap: colspanSkipMap, theadClasses: theadClasses, theadRef: theadRef, slots: slots, getTableNode: getTableNode }); }, render: function render() { var _this = this; var renderThNodeList = function renderThNodeList(rowAndColFixedPosition, thWidthList) { var thBorderMap = /* @__PURE__ */new Map(); var thRowspanAndColspan = _this.spansAndLeafNodes.rowspanAndColspanMap; return _this.thList.map(function (row, rowIndex) { var thRow = row.map(function (col, index) { var _col$children; if (_this.colspanSkipMap[col.colKey]) return null; var rowspanAndColspan = thRowspanAndColspan.get(col); if (index === 0 && rowspanAndColspan.rowspan > 1) { for (var j = rowIndex + 1; j < rowIndex + rowspanAndColspan.rowspan; j++) { thBorderMap.set(_this.thList[j][0], true); } } var thStyles = getColumnFixedStyles(col, index, rowAndColFixedPosition, _this.tableColFixedClasses); var colParams = { col: col, colIndex: index, row: {}, rowIndex: -1 }; var customClasses = formatClassNames(col.className, _objectSpread(_objectSpread({}, colParams), {}, { type: "th" })); var thCustomClasses = formatClassNames(col.thClassName, _objectSpread(_objectSpread({}, colParams), {}, { type: "th" })); var isLeftFixedActive = _this.showColumnShadow.left && col.fixed === "left"; var isRightFixedActive = _this.showColumnShadow.right && col.fixed === "right"; var canDragSort = _this.thDraggable && !(isLeftFixedActive || isRightFixedActive); var thClasses = [thStyles.classes, customClasses, thCustomClasses, _defineProperty(_defineProperty(_defineProperty(_defineProperty({}, _this.tableHeaderClasses.thBordered, thBorderMap.get(col)), "".concat(_this.classPrefix, "-table__th-").concat(col.colKey), col.colKey), _this.tdAlignClasses[col.align], col.align && col.align !== "left"), _this.tableDraggableClasses.dragSortTh, canDragSort)]; var withoutChildren = !((_col$children = col.children) !== null && _col$children !== void 0 && _col$children.length); var width = withoutChildren && thWidthList !== null && thWidthList !== void 0 && thWidthList[col.colKey] ? "".concat(thWidthList === null || thWidthList === void 0 ? void 0 : thWidthList[col.colKey], "px") : void 0; var styles = _objectSpread(_objectSpread({}, thStyles.style || {}), {}, { width: width }); var innerTh = renderTitle(_this.slots, col, index); var resizeColumnListener = _this.resizable || !canDragSort ? { onMousedown: function onMousedown(e) { if (_this.resizable) { var _this$columnResizePar, _this$columnResizePar2; (_this$columnResizePar = _this.columnResizeParams) === null || _this$columnResizePar === void 0 || (_this$columnResizePar2 = _this$columnResizePar.onColumnMousedown) === null || _this$columnResizePar2 === void 0 || _this$columnResizePar2.call(_this$columnResizePar, e, col, index); } if (!canDragSort) { var timer = setTimeout(function () { var _thList$index; var thList = _this.theadRef.querySelectorAll("th"); (_thList$index = thList[index]) === null || _thList$index === void 0 || _thList$index.removeAttribute("draggable"); clearTimeout(timer); }, 10); } }, onMousemove: function onMousemove(e) { var _this$columnResizePar3, _this$columnResizePar4; _this.resizable && ((_this$columnResizePar3 = _this.columnResizeParams) === null || _this$columnResizePar3 === void 0 || (_this$columnResizePar4 = _this$columnResizePar3.onColumnMouseover) === null || _this$columnResizePar4 === void 0 ? void 0 : _this$columnResizePar4.call(_this$columnResizePar3, e, col)); } } : {}; var content = isFunction(col.ellipsisTitle) ? col.ellipsisTitle(h, { col: col, colIndex: index }) : void 0; var isEllipsis = col.ellipsisTitle !== void 0 ? Boolean(col.ellipsisTitle) : Boolean(col.ellipsis); var attrs = (isFunction(col.attrs) ? col.attrs(_objectSpread(_objectSpread({}, colParams), {}, { type: "th" })) : col.attrs) || {}; if (col.colspan > 1) { attrs.colspan = col.colspan; } return createVNode("th", mergeProps({ "key": col.colKey, "data-colkey": col.colKey, "class": thClasses, "style": styles }, attrs, rowspanAndColspan, resizeColumnListener), [createVNode("div", { "class": _this.tableBaseClass.thCellInner }, [isEllipsis ? createVNode(TEllipsis, { "placement": "bottom", "attach": _this.attach || (_this.theadRef ? function () { return _this.getTableNode(_this.theadRef); } : void 0), "tooltipContent": content && function () { return content; }, "tooltipProps": _typeof(col.ellipsisTitle) === "object" ? col.ellipsisTitle : void 0, "overlayClassName": _this.ellipsisOverlayClassName, "classPrefix": _this.classPrefix }, _isSlot(innerTh) ? innerTh : { "default": function _default() { return [innerTh]; } }) : innerTh])]); }); return createVNode("tr", { "key": rowIndex }, [thRow]); }); }; return createVNode("thead", { "ref": "theadRef", "class": this.theadClasses }, [renderThNodeList(this.rowAndColFixedPosition, this.thWidthList)]); } }); export { THead as default }; //# sourceMappingURL=thead.js.map