@arco-design/web-react
Version:
Arco Design React UI Library.
110 lines (109 loc) • 5.44 kB
JavaScript
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __read = (this && this.__read) || function (o, n) {
var m = typeof Symbol === "function" && o[Symbol.iterator];
if (!m) return o;
var i = m.call(o), r, ar = [], e;
try {
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
}
catch (error) { e = { error: error }; }
finally {
try {
if (r && !r.done && (m = i["return"])) m.call(i);
}
finally { if (e) throw e.error; }
}
return ar;
};
var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
if (ar || !(i in from)) {
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
ar[i] = from[i];
}
}
return to.concat(ar || Array.prototype.slice.call(from));
};
import React, { useLayoutEffect, useState, useContext } from 'react';
import ResizeObserver from '../../_util/resizeObserver';
import OverflowItem from './OverflowItem';
import cs from '../../_util/classNames';
import { ConfigContext } from '../../ConfigProvider';
export default function OverflowEllipsis(props) {
var getPrefixCls = useContext(ConfigContext).getPrefixCls;
var prefixCls = getPrefixCls('overflow');
var items = props.items, suffixItems = props.suffixItems;
var ellipsisNode = props.ellipsisNode || (function (_a) {
var ellipsisCount = _a.ellipsisCount;
return "+" + ellipsisCount;
});
var _a = __read(useState(), 2), containerWidth = _a[0], setContainerWidth = _a[1];
var _b = __read(useState(), 2), maxCount = _b[0], setMaxCount = _b[1];
var _c = __read(useState({}), 2), overflowItems = _c[0], setOverflowItems = _c[1];
var _d = __read(useState({}), 2), suffixOverflowItems = _d[0], setSuffixOverflowItems = _d[1];
var ellipsisCount = items.length - maxCount;
var maxTag = ellipsisCount > 0 ? ellipsisNode({ ellipsisCount: ellipsisCount }) : null;
useLayoutEffect(function () {
var total = Object.values(overflowItems).length;
var totalWidth = Object.values(suffixOverflowItems).reduce(function (t, n) {
return t + ((n === null || n === void 0 ? void 0 : n.width) || 0);
}, 0);
var newMaxCount = total;
Object.keys(overflowItems).some(function (key, index) {
var target = overflowItems[key];
if (target && totalWidth + target.width > containerWidth) {
newMaxCount = index;
return true;
}
totalWidth += (target === null || target === void 0 ? void 0 : target.width) || 0;
});
setMaxCount(Math.max(newMaxCount, 0));
}, [overflowItems, containerWidth, suffixOverflowItems]);
return (React.createElement(ResizeObserver, { onResize: function (entry) {
var _a;
setContainerWidth(((_a = entry === null || entry === void 0 ? void 0 : entry[0]) === null || _a === void 0 ? void 0 : _a.target.clientWidth) || 0);
} },
React.createElement("div", { className: cs(prefixCls, props.className) },
items.map(function (item, index) {
var _a;
var key = (((_a = item) === null || _a === void 0 ? void 0 : _a.key) || index) + "_overflow_item_" + index;
return (React.createElement(OverflowItem, { key: key, onResize: function (node) {
setOverflowItems(function (overflowItems) {
overflowItems[key] = { node: node, width: node.clientWidth };
return overflowItems;
});
}, unregister: function () {
setOverflowItems(function (overflowItems) {
delete overflowItems[key];
return overflowItems;
});
}, hidden: maxCount < index + 1 }, item));
}),
__spreadArray([maxTag], __read(suffixItems), false).map(function (item, index) {
if (!item) {
return null;
}
var key = ((item === null || item === void 0 ? void 0 : item.key) || index) + "_overflow_suffix_item";
return (React.createElement(OverflowItem, { key: key, className: prefixCls + "-suffix-item", onResize: function (node) {
setSuffixOverflowItems(function (suffixOverflowItems) {
var _a;
return __assign(__assign({}, suffixOverflowItems), (_a = {}, _a["" + key] = { node: node, width: node.clientWidth }, _a));
});
}, unregister: function () {
setSuffixOverflowItems(function (suffixOverflowItems) {
delete suffixOverflowItems[key];
return __assign({}, suffixOverflowItems);
});
} }, item));
}))));
}