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.
101 lines
3.0 KiB
101 lines
3.0 KiB
"use strict";
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.getOverflowOptions = getOverflowOptions;
|
|
exports["default"] = getPlacements;
|
|
|
|
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
|
|
var _placements = require("rc-tooltip/lib/placements");
|
|
|
|
var autoAdjustOverflowEnabled = {
|
|
adjustX: 1,
|
|
adjustY: 1
|
|
};
|
|
var autoAdjustOverflowDisabled = {
|
|
adjustX: 0,
|
|
adjustY: 0
|
|
};
|
|
var targetOffset = [0, 0];
|
|
|
|
function getOverflowOptions(autoAdjustOverflow) {
|
|
if (typeof autoAdjustOverflow === 'boolean') {
|
|
return autoAdjustOverflow ? autoAdjustOverflowEnabled : autoAdjustOverflowDisabled;
|
|
}
|
|
|
|
return (0, _extends2["default"])((0, _extends2["default"])({}, autoAdjustOverflowDisabled), autoAdjustOverflow);
|
|
}
|
|
|
|
function getPlacements(config) {
|
|
var _config$arrowWidth = config.arrowWidth,
|
|
arrowWidth = _config$arrowWidth === void 0 ? 5 : _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 ? (0, _extends2["default"])((0, _extends2["default"])({}, placementMap[key]), {
|
|
overflow: getOverflowOptions(autoAdjustOverflow),
|
|
targetOffset: targetOffset
|
|
}) : (0, _extends2["default"])((0, _extends2["default"])({}, _placements.placements[key]), {
|
|
overflow: getOverflowOptions(autoAdjustOverflow)
|
|
});
|
|
placementMap[key].ignoreShake = true;
|
|
});
|
|
return placementMap;
|
|
} |