import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2"; import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties"; var _excluded = ["class", "style"]; import { resolveDirective as _resolveDirective, createVNode as _createVNode } from "vue"; import { computed, defineComponent, ref, watch } from 'vue'; import ResizeObserver from '../vc-resize-observer'; import classNames from '../_util/classNames'; import PropTypes from '../_util/vue-types'; import { OverflowContextProvider } from './context'; import Item from './Item'; import RawItem from './RawItem'; var RESPONSIVE = 'responsive'; var INVALIDATE = 'invalidate'; function defaultRenderRest(omittedItems) { return "+ ".concat(omittedItems.length, " ..."); } var overflowProps = function overflowProps() { return { id: String, prefixCls: String, data: Array, itemKey: [String, Number, Function], /** Used for `responsive`. It will limit render node to avoid perf issue */ itemWidth: { type: Number, default: 10 }, renderItem: Function, /** @private Do not use in your production. Render raw node that need wrap Item by developer self */ renderRawItem: Function, maxCount: [Number, String], renderRest: Function, /** @private Do not use in your production. Render raw node that need wrap Item by developer self */ renderRawRest: Function, suffix: PropTypes.any, component: String, itemComponent: PropTypes.any, /** @private This API may be refactor since not well design */ onVisibleChange: Function, /** When set to `full`, ssr will render full items by default and remove at client side */ ssr: String, onMousedown: Function }; }; var Overflow = defineComponent({ name: 'Overflow', inheritAttrs: false, props: overflowProps(), emits: ['visibleChange'], setup: function setup(props, _ref) { var attrs = _ref.attrs, emit = _ref.emit, slots = _ref.slots; var fullySSR = computed(function () { return props.ssr === 'full'; }); var containerWidth = ref(null); var mergedContainerWidth = computed(function () { return containerWidth.value || 0; }); var itemWidths = ref(new Map()); var prevRestWidth = ref(0); var restWidth = ref(0); var suffixWidth = ref(0); var suffixFixedStart = ref(null); var displayCount = ref(null); var mergedDisplayCount = computed(function () { if (displayCount.value === null && fullySSR.value) { return Number.MAX_SAFE_INTEGER; } return displayCount.value || 0; }); var restReady = ref(false); var itemPrefixCls = computed(function () { return "".concat(props.prefixCls, "-item"); }); // Always use the max width to avoid blink var mergedRestWidth = computed(function () { return Math.max(prevRestWidth.value, restWidth.value); }); // ================================= Data ================================= var isResponsive = computed(function () { return !!(props.data.length && props.maxCount === RESPONSIVE); }); var invalidate = computed(function () { return props.maxCount === INVALIDATE; }); /** * When is `responsive`, we will always render rest node to get the real width of it for calculation */ var showRest = computed(function () { return isResponsive.value || typeof props.maxCount === 'number' && props.data.length > props.maxCount; }); var mergedData = computed(function () { var items = props.data; if (isResponsive.value) { if (containerWidth.value === null && fullySSR.value) { items = props.data; } else { items = props.data.slice(0, Math.min(props.data.length, mergedContainerWidth.value / props.itemWidth)); } } else if (typeof props.maxCount === 'number') { items = props.data.slice(0, props.maxCount); } return items; }); var omittedItems = computed(function () { if (isResponsive.value) { return props.data.slice(mergedDisplayCount.value + 1); } return props.data.slice(mergedData.value.length); }); // ================================= Item ================================= var getKey = function getKey(item, index) { var _ref2; if (typeof props.itemKey === 'function') { return props.itemKey(item); } return (_ref2 = props.itemKey && (item === null || item === void 0 ? void 0 : item[props.itemKey])) !== null && _ref2 !== void 0 ? _ref2 : index; }; var mergedRenderItem = computed(function () { return props.renderItem || function (item) { return item; }; }); var updateDisplayCount = function updateDisplayCount(count, notReady) { displayCount.value = count; if (!notReady) { restReady.value = count < props.data.length - 1; emit('visibleChange', count); } }; // ================================= Size ================================= var onOverflowResize = function onOverflowResize(_, element) { containerWidth.value = element.clientWidth; }; var registerSize = function registerSize(key, width) { var clone = new Map(itemWidths.value); if (width === null) { clone.delete(key); } else { clone.set(key, width); } itemWidths.value = clone; }; var registerOverflowSize = function registerOverflowSize(_, width) { prevRestWidth.value = restWidth.value; restWidth.value = width; }; var registerSuffixSize = function registerSuffixSize(_, width) { suffixWidth.value = width; }; // ================================ Effect ================================ var getItemWidth = function getItemWidth(index) { return itemWidths.value.get(getKey(mergedData.value[index], index)); }; watch([mergedContainerWidth, itemWidths, restWidth, suffixWidth, function () { return props.itemKey; }, mergedData], function () { if (mergedContainerWidth.value && mergedRestWidth.value && mergedData.value) { var totalWidth = suffixWidth.value; var len = mergedData.value.length; var lastIndex = len - 1; // When data count change to 0, reset this since not loop will reach if (!len) { updateDisplayCount(0); suffixFixedStart.value = null; return; } for (var i = 0; i < len; i += 1) { var currentItemWidth = getItemWidth(i); // Break since data not ready if (currentItemWidth === undefined) { updateDisplayCount(i - 1, true); break; } // Find best match totalWidth += currentItemWidth; if ( // Only one means `totalWidth` is the final width lastIndex === 0 && totalWidth <= mergedContainerWidth.value || // Last two width will be the final width i === lastIndex - 1 && totalWidth + getItemWidth(lastIndex) <= mergedContainerWidth.value) { // Additional check if match the end updateDisplayCount(lastIndex); suffixFixedStart.value = null; break; } else if (totalWidth + mergedRestWidth.value > mergedContainerWidth.value) { // Can not hold all the content to show rest updateDisplayCount(i - 1); suffixFixedStart.value = totalWidth - currentItemWidth - suffixWidth.value + restWidth.value; break; } } if (props.suffix && getItemWidth(0) + suffixWidth.value > mergedContainerWidth.value) { suffixFixedStart.value = null; } } }); return function () { // ================================ Render ================================ var displayRest = restReady.value && !!omittedItems.value.length; var itemComponent = props.itemComponent, renderRawItem = props.renderRawItem, renderRawRest = props.renderRawRest, renderRest = props.renderRest, _props$prefixCls = props.prefixCls, prefixCls = _props$prefixCls === void 0 ? 'rc-overflow' : _props$prefixCls, suffix = props.suffix, _props$component = props.component, Component = _props$component === void 0 ? 'div' : _props$component, id = props.id, onMousedown = props.onMousedown; var className = attrs.class, style = attrs.style, restAttrs = _objectWithoutProperties(attrs, _excluded); var suffixStyle = {}; if (suffixFixedStart.value !== null && isResponsive.value) { suffixStyle = { position: 'absolute', left: "".concat(suffixFixedStart.value, "px"), top: 0 }; } var itemSharedProps = { prefixCls: itemPrefixCls.value, responsive: isResponsive.value, component: itemComponent, invalidate: invalidate.value }; // >>>>> Choice render fun by `renderRawItem` var internalRenderItemNode = renderRawItem ? function (item, index) { var key = getKey(item, index); return _createVNode(OverflowContextProvider, { "key": key, "value": _objectSpread(_objectSpread({}, itemSharedProps), {}, { order: index, item: item, itemKey: key, registerSize: registerSize, display: index <= mergedDisplayCount.value }) }, { default: function _default() { return [renderRawItem(item, index)]; } }); } : function (item, index) { var key = getKey(item, index); return _createVNode(Item, _objectSpread(_objectSpread({}, itemSharedProps), {}, { "order": index, "key": key, "item": item, "renderItem": mergedRenderItem.value, "itemKey": key, "registerSize": registerSize, "display": index <= mergedDisplayCount.value }), null); }; // >>>>> Rest node var restNode = function restNode() { return null; }; var restContextProps = { order: displayRest ? mergedDisplayCount.value : Number.MAX_SAFE_INTEGER, className: "".concat(itemPrefixCls.value, " ").concat(itemPrefixCls.value, "-rest"), registerSize: registerOverflowSize, display: displayRest }; if (!renderRawRest) { var mergedRenderRest = renderRest || defaultRenderRest; restNode = function restNode() { return _createVNode(Item, _objectSpread(_objectSpread({}, itemSharedProps), restContextProps), { default: function _default() { return typeof mergedRenderRest === 'function' ? mergedRenderRest(omittedItems.value) : mergedRenderRest; } }); }; } else if (renderRawRest) { restNode = function restNode() { return _createVNode(OverflowContextProvider, { "value": _objectSpread(_objectSpread({}, itemSharedProps), restContextProps) }, { default: function _default() { return [renderRawRest(omittedItems.value)]; } }); }; } var overflowNode = function overflowNode() { var _slots$default; return _createVNode(Component, _objectSpread({ "id": id, "class": classNames(!invalidate.value && prefixCls, className), "style": style, "onMousedown": onMousedown }, restAttrs), { default: function _default() { return [mergedData.value.map(internalRenderItemNode), showRest.value ? restNode() : null, suffix && _createVNode(Item, _objectSpread(_objectSpread({}, itemSharedProps), {}, { "order": mergedDisplayCount.value, "class": "".concat(itemPrefixCls.value, "-suffix"), "registerSize": registerSuffixSize, "display": true, "style": suffixStyle }), { default: function _default() { return suffix; } }), (_slots$default = slots.default) === null || _slots$default === void 0 ? void 0 : _slots$default.call(slots)]; } }); }; // 使用 disabled 避免结构不一致 导致子组件 rerender return _createVNode(ResizeObserver, { "disabled": !isResponsive.value, "onResize": onOverflowResize }, { default: overflowNode }); }; } }); Overflow.Item = RawItem; Overflow.RESPONSIVE = RESPONSIVE; Overflow.INVALIDATE = INVALIDATE; export default Overflow;