@blueprintjs/core
Version:
Core styles & components
61 lines • 4.02 kB
JavaScript
/*
* Copyright 2023 Palantir Technologies, Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ContextMenuPopover = void 0;
var tslib_1 = require("tslib");
var classnames_1 = tslib_1.__importDefault(require("classnames"));
var React = tslib_1.__importStar(require("react"));
var common_1 = require("../../common");
var popover_1 = require("../popover/popover");
var portal_1 = require("../portal/portal");
/**
* A floating popover which is positioned at a given target offset inside its parent element container.
* Used to display context menus. Note that this behaves differently from other popover components like
* Popover and Tooltip, which wrap their children with interaction handlers -- if you're looking for the whole
* interaction package, use ContextMenu instead.
*
* @see https://blueprintjs.com/docs/#core/components/context-menu-popover
*/
exports.ContextMenuPopover = React.memo(function _ContextMenuPopover(props) {
var _a;
var content = props.content, popoverClassName = props.popoverClassName, onClose = props.onClose, _b = props.isDarkTheme, isDarkTheme = _b === void 0 ? false : _b, _c = props.rootBoundary, rootBoundary = _c === void 0 ? "viewport" : _c, targetOffset = props.targetOffset, _d = props.transitionDuration, transitionDuration = _d === void 0 ? 100 : _d, popoverProps = tslib_1.__rest(props, ["content", "popoverClassName", "onClose", "isDarkTheme", "rootBoundary", "targetOffset", "transitionDuration"]);
var cancelContextMenu = React.useCallback(function (e) { return e.preventDefault(); }, []);
// Popover should attach its ref to the virtual target we render inside a Portal, not the "inline" child target
var renderTarget = React.useCallback(function (_a) {
var ref = _a.ref;
return (React.createElement(portal_1.Portal, null,
React.createElement("div", { className: common_1.Classes.CONTEXT_MENU_VIRTUAL_TARGET, style: targetOffset, ref: ref })));
}, [targetOffset]);
var handleInteraction = React.useCallback(function (nextOpenState) {
if (!nextOpenState) {
onClose === null || onClose === void 0 ? void 0 : onClose();
}
}, []);
return (React.createElement(popover_1.Popover, tslib_1.__assign({ placement: "right-start", rootBoundary: rootBoundary, transitionDuration: transitionDuration }, popoverProps, { content:
// this prevents right-clicking inside our context menu
React.createElement("div", { onContextMenu: cancelContextMenu }, content), enforceFocus: false,
// Generate key based on offset so that a new Popover instance is created
// when offset changes, to force recomputing position.
key: getPopoverKey(targetOffset), hasBackdrop: true, backdropProps: { className: common_1.Classes.CONTEXT_MENU_BACKDROP }, minimal: true, onInteraction: handleInteraction, popoverClassName: (0, classnames_1.default)(common_1.Classes.CONTEXT_MENU_POPOVER, popoverClassName, (_a = {},
_a[common_1.Classes.DARK] = isDarkTheme,
_a)), positioningStrategy: "fixed", renderTarget: renderTarget })));
});
exports.ContextMenuPopover.displayName = "".concat(common_1.DISPLAYNAME_PREFIX, ".ContextMenuPopover");
function getPopoverKey(targetOffset) {
return targetOffset === undefined ? "default" : "".concat(targetOffset.left, "x").concat(targetOffset.top);
}
//# sourceMappingURL=contextMenuPopover.js.map
;