You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.6 KiB
87 lines
2.6 KiB
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
import { placements } from "rc-tooltip/es/placements";
|
|
var autoAdjustOverflowEnabled = {
|
|
adjustX: 1,
|
|
adjustY: 1
|
|
};
|
|
var autoAdjustOverflowDisabled = {
|
|
adjustX: 0,
|
|
adjustY: 0
|
|
};
|
|
var targetOffset = [0, 0];
|
|
export function getOverflowOptions(autoAdjustOverflow) {
|
|
if (typeof autoAdjustOverflow === 'boolean') {
|
|
return autoAdjustOverflow ? autoAdjustOverflowEnabled : autoAdjustOverflowDisabled;
|
|
}
|
|
|
|
return _extends(_extends({}, autoAdjustOverflowDisabled), autoAdjustOverflow);
|
|
}
|
|
export default function getPlacements(config) {
|
|
var _config$arrowWidth = config.arrowWidth,
|
|
arrowWidth = _config$arrowWidth === void 0 ? 4 : _config$arrowWidth,
|
|
_config$horizontalArr = config.horizontalArrowShift,
|
|
horizontalArrowShift = _config$horizontalArr === void 0 ? 16 : _config$horizontalArr,
|
|
_config$verticalArrow = config.verticalArrowShift,
|
|
verticalArrowShift = _config$verticalArrow === void 0 ? 8 : _config$verticalArrow,
|
|
autoAdjustOverflow = config.autoAdjustOverflow;
|
|
var placementMap = {
|
|
left: {
|
|
points: ['cr', 'cl'],
|
|
offset: [-4, 0]
|
|
},
|
|
right: {
|
|
points: ['cl', 'cr'],
|
|
offset: [4, 0]
|
|
},
|
|
top: {
|
|
points: ['bc', 'tc'],
|
|
offset: [0, -4]
|
|
},
|
|
bottom: {
|
|
points: ['tc', 'bc'],
|
|
offset: [0, 4]
|
|
},
|
|
topLeft: {
|
|
points: ['bl', 'tc'],
|
|
offset: [-(horizontalArrowShift + arrowWidth), -4]
|
|
},
|
|
leftTop: {
|
|
points: ['tr', 'cl'],
|
|
offset: [-4, -(verticalArrowShift + arrowWidth)]
|
|
},
|
|
topRight: {
|
|
points: ['br', 'tc'],
|
|
offset: [horizontalArrowShift + arrowWidth, -4]
|
|
},
|
|
rightTop: {
|
|
points: ['tl', 'cr'],
|
|
offset: [4, -(verticalArrowShift + arrowWidth)]
|
|
},
|
|
bottomRight: {
|
|
points: ['tr', 'bc'],
|
|
offset: [horizontalArrowShift + arrowWidth, 4]
|
|
},
|
|
rightBottom: {
|
|
points: ['bl', 'cr'],
|
|
offset: [4, verticalArrowShift + arrowWidth]
|
|
},
|
|
bottomLeft: {
|
|
points: ['tl', 'bc'],
|
|
offset: [-(horizontalArrowShift + arrowWidth), 4]
|
|
},
|
|
leftBottom: {
|
|
points: ['br', 'cl'],
|
|
offset: [-4, verticalArrowShift + arrowWidth]
|
|
}
|
|
};
|
|
Object.keys(placementMap).forEach(function (key) {
|
|
placementMap[key] = config.arrowPointAtCenter ? _extends(_extends({}, placementMap[key]), {
|
|
overflow: getOverflowOptions(autoAdjustOverflow),
|
|
targetOffset: targetOffset
|
|
}) : _extends(_extends({}, placements[key]), {
|
|
overflow: getOverflowOptions(autoAdjustOverflow)
|
|
});
|
|
placementMap[key].ignoreShake = true;
|
|
});
|
|
return placementMap;
|
|
} |