-
Notifications
You must be signed in to change notification settings - Fork 47.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor[react-devtools]: rewrite context menus
- Loading branch information
Showing
19 changed files
with
809 additions
and
642 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
overflow: hidden; | ||
z-index: 10000002; | ||
user-select: none; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
packages/react-devtools-shared/src/devtools/ContextMenu/ContextMenuContainer.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/** | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
* | ||
* @flow | ||
*/ | ||
|
||
import * as React from 'react'; | ||
import {useImperativeHandle} from 'react'; | ||
|
||
import ContextMenu from './ContextMenu'; | ||
import useContextMenu from './useContextMenu'; | ||
|
||
import type {ContextMenuItem, ContextMenuRef} from './types'; | ||
|
||
type Props = { | ||
anchorElementRef: { | ||
current: React.ElementRef<any> | null, | ||
}, | ||
items: ContextMenuItem[], | ||
closedMenuStub?: React.Node | null, | ||
ref?: ContextMenuRef, | ||
}; | ||
|
||
export default function ContextMenuContainer({ | ||
anchorElementRef, | ||
items, | ||
closedMenuStub = null, | ||
ref, | ||
}: Props): React.Node { | ||
const {shouldShow, position, hide} = useContextMenu(anchorElementRef); | ||
|
||
useImperativeHandle( | ||
ref, | ||
() => ({ | ||
isShown() { | ||
return shouldShow; | ||
}, | ||
hide, | ||
}), | ||
[shouldShow, hide], | ||
); | ||
|
||
if (!shouldShow) { | ||
return closedMenuStub; | ||
} | ||
|
||
return ( | ||
<ContextMenu | ||
anchorElementRef={anchorElementRef} | ||
position={position} | ||
hide={hide} | ||
items={items} | ||
ref={ref} | ||
/> | ||
); | ||
} |
Oops, something went wrong.