cjs • Lines: 78var $cPmzf$react = require("react");
function $parcel$export(e, n, v, s) {
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
}
$parcel$export(module.exports, "useSubmenuTriggerState", function () { return $0c5c1276d23b0804$export$cfc51cf86138bf98; });
/*
* Copyright 2023 Adobe. All rights reserved.
* This file is licensed to you 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 REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
function $0c5c1276d23b0804$export$cfc51cf86138bf98(props, state) {
let { triggerKey: triggerKey } = props;
let { expandedKeysStack: expandedKeysStack, openSubmenu: openSubmenu, closeSubmenu: closeSubmenu, close: closeAll } = state;
let [submenuLevel] = (0, $cPmzf$react.useState)(expandedKeysStack?.length);
let isOpen = (0, $cPmzf$react.useMemo)(()=>expandedKeysStack[submenuLevel] === triggerKey, [
expandedKeysStack,
triggerKey,
submenuLevel
]);
let [focusStrategy, setFocusStrategy] = (0, $cPmzf$react.useState)(null);
let open = (0, $cPmzf$react.useCallback)((focusStrategy)=>{
setFocusStrategy(focusStrategy ?? null);
openSubmenu(triggerKey, submenuLevel);
}, [
openSubmenu,
submenuLevel,
triggerKey
]);
let close = (0, $cPmzf$react.useCallback)(()=>{
setFocusStrategy(null);
closeSubmenu(triggerKey, submenuLevel);
}, [
closeSubmenu,
submenuLevel,
triggerKey
]);
let toggle = (0, $cPmzf$react.useCallback)((focusStrategy)=>{
setFocusStrategy(focusStrategy ?? null);
if (isOpen) close();
else open(focusStrategy);
}, [
close,
open,
isOpen
]);
return (0, $cPmzf$react.useMemo)(()=>({
focusStrategy: focusStrategy,
isOpen: isOpen,
open: open,
close: close,
closeAll: closeAll,
submenuLevel: submenuLevel,
// TODO: Placeholders that aren't used but give us parity with OverlayTriggerState so we can use this in Popover. Refactor if we update Popover via
// https://github.com/adobe/react-spectrum/pull/4976#discussion_r1336472863
setOpen: ()=>{},
toggle: toggle
}), [
isOpen,
open,
close,
closeAll,
focusStrategy,
toggle,
submenuLevel
]);
}
//# sourceMappingURL=useSubmenuTriggerState.cjs.map