If there's selected text, don't show custom context menu
This commit is contained in:
parent
3fbd5b8622
commit
59d0138ca8
1 changed files with 9 additions and 1 deletions
|
@ -1271,12 +1271,20 @@ function Status({
|
||||||
}`}
|
}`}
|
||||||
onMouseEnter={debugHover}
|
onMouseEnter={debugHover}
|
||||||
onContextMenu={(e) => {
|
onContextMenu={(e) => {
|
||||||
// FIXME: this code isn't getting called on Chrome at all?
|
|
||||||
if (!showContextMenu) return;
|
if (!showContextMenu) return;
|
||||||
if (e.metaKey) return;
|
if (e.metaKey) return;
|
||||||
// console.log('context menu', e);
|
// console.log('context menu', e);
|
||||||
const link = e.target.closest('a');
|
const link = e.target.closest('a');
|
||||||
if (link && /^https?:\/\//.test(link.getAttribute('href'))) return;
|
if (link && /^https?:\/\//.test(link.getAttribute('href'))) return;
|
||||||
|
|
||||||
|
// If there's selected text, don't show custom context menu
|
||||||
|
const selection = window.getSelection?.();
|
||||||
|
if (selection.toString().length > 0) {
|
||||||
|
const { anchorNode } = selection;
|
||||||
|
if (statusRef.current?.contains(anchorNode)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
setContextMenuProps({
|
setContextMenuProps({
|
||||||
anchorPoint: {
|
anchorPoint: {
|
||||||
|
|
Loading…
Add table
Reference in a new issue