1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- "use strict";
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
- var _typeof = require("@babel/runtime/helpers/typeof");
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = useWidthColumns;
- var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
- var React = _interopRequireWildcard(require("react"));
- function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
- function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
- function parseColWidth(totalWidth) {
- var width = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
- if (typeof width === 'number') {
- return width;
- }
- if (width.endsWith('%')) {
- return totalWidth * parseFloat(width) / 100;
- }
- return null;
- }
- /**
- * Fill all column with width
- */
- function useWidthColumns(flattenColumns, scrollWidth, clientWidth) {
- return React.useMemo(function () {
- // Fill width if needed
- if (scrollWidth && scrollWidth > 0) {
- var totalWidth = 0;
- var missWidthCount = 0;
- // collect not given width column
- flattenColumns.forEach(function (col) {
- var colWidth = parseColWidth(scrollWidth, col.width);
- if (colWidth) {
- totalWidth += colWidth;
- } else {
- missWidthCount += 1;
- }
- });
- // Fill width
- var maxFitWidth = Math.max(scrollWidth, clientWidth);
- var restWidth = Math.max(maxFitWidth - totalWidth, missWidthCount);
- var restCount = missWidthCount;
- var avgWidth = restWidth / missWidthCount;
- var realTotal = 0;
- var filledColumns = flattenColumns.map(function (col) {
- var clone = (0, _objectSpread2.default)({}, col);
- var colWidth = parseColWidth(scrollWidth, clone.width);
- if (colWidth) {
- clone.width = colWidth;
- } else {
- var colAvgWidth = Math.floor(avgWidth);
- clone.width = restCount === 1 ? restWidth : colAvgWidth;
- restWidth -= colAvgWidth;
- restCount -= 1;
- }
- realTotal += clone.width;
- return clone;
- });
- // If realTotal is less than clientWidth,
- // We need extend column width
- if (realTotal < maxFitWidth) {
- var scale = maxFitWidth / realTotal;
- restWidth = maxFitWidth;
- filledColumns.forEach(function (col, index) {
- var colWidth = Math.floor(col.width * scale);
- col.width = index === filledColumns.length - 1 ? restWidth : colWidth;
- restWidth -= colWidth;
- });
- }
- return [filledColumns, Math.max(realTotal, maxFitWidth)];
- }
- return [flattenColumns, scrollWidth];
- }, [flattenColumns, scrollWidth, clientWidth]);
- }
|