UNPKG

@mui/x-charts

Version:

The community edition of the Charts components (MUI X).

79 lines (77 loc) 3.05 kB
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default; Object.defineProperty(exports, "__esModule", { value: true }); exports.legendItemPlacements = legendItemPlacements; var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")); var _objectWithoutPropertiesLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutPropertiesLoose")); const _excluded = ["label"]; function legendItemPlacements(itemsToDisplay, getItemSpace, labelStyle, direction, availableWidth, availableHeight, itemGap) { // Start at 0, 0. Will be modified later by padding and position. let x = 0; let y = 0; // total values used to align legend later. let totalWidthUsed = 0; let totalHeightUsed = 0; let rowIndex = 0; const rowMaxHeight = [0]; const seriesWithRawPosition = itemsToDisplay.map(_ref => { let { label } = _ref, other = (0, _objectWithoutPropertiesLoose2.default)(_ref, _excluded); const itemSpace = getItemSpace(label, labelStyle); const rep = (0, _extends2.default)({}, other, { label, positionX: x, positionY: y, innerHeight: itemSpace.innerHeight, innerWidth: itemSpace.innerWidth, outerHeight: itemSpace.outerHeight, outerWidth: itemSpace.outerWidth, rowIndex }); if (direction === 'row') { if (x + itemSpace.innerWidth > availableWidth) { // This legend item would create overflow along the x-axis, so we start a new row. x = 0; y += rowMaxHeight[rowIndex]; rowIndex += 1; if (rowMaxHeight.length <= rowIndex) { rowMaxHeight.push(0); } rep.positionX = x; rep.positionY = y; rep.rowIndex = rowIndex; } totalWidthUsed = Math.max(totalWidthUsed, x + itemSpace.outerWidth); totalHeightUsed = Math.max(totalHeightUsed, y + itemSpace.outerHeight); rowMaxHeight[rowIndex] = Math.max(rowMaxHeight[rowIndex], itemSpace.outerHeight); x += itemSpace.outerWidth; } if (direction === 'column') { if (y + itemSpace.innerHeight > availableHeight) { // This legend item would create overflow along the y-axis, so we start a new column. x = totalWidthUsed + itemGap; y = 0; rowIndex = 0; rep.positionX = x; rep.positionY = y; rep.rowIndex = rowIndex; } if (rowMaxHeight.length <= rowIndex) { rowMaxHeight.push(0); } totalWidthUsed = Math.max(totalWidthUsed, x + itemSpace.outerWidth); totalHeightUsed = Math.max(totalHeightUsed, y + itemSpace.outerHeight); rowIndex += 1; y += itemSpace.outerHeight; } return rep; }); return [seriesWithRawPosition.map(item => (0, _extends2.default)({}, item, { positionY: item.positionY + (direction === 'row' ? rowMaxHeight[item.rowIndex] / 2 // Get the center of the entire row : item.outerHeight / 2) // Get the center of the item })), totalWidthUsed, totalHeightUsed]; }