0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Fixed intermittent click issues with internal links dropdown (#20101)

closes https://linear.app/tryghost/issue/MOM-60

- when the dropdown opens near the end of the document, clicking the links sometimes did nothing and showed an error in the console
- we have a mousedown event handler on an element that surrounds the main editing element that re-focuses the editor when clicked in order to make the "focus editor" click target larger and more natural-feeling but it was inadvertently re-focusing when the mousedown event fired for an element in the dropdown list when the list was positioned outside of the main editor element. This lead to timing issues with the bookmark node being removed on blur because it was empty followed by an error from the node's component's async event handlers which were trying to set values on the now-removed node
- by switching from `event.target.closest()` to looping over `event.composedPath()` when checking to see if we should skip re-focusing we're more resilient to DOM manipulations occurring between event triggers and function calls because we'll always be given the list of elements that existed at the time the event fired
This commit is contained in:
Kevin Ansfield 2024-04-29 17:58:33 +01:00 committed by GitHub
parent 756be38d59
commit 3d6fae3ea7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -44,10 +44,15 @@ export default class GhKoenigEditorReactComponent extends Component {
// mouseup/click event can occur outside of the initially clicked card, in
// which case we don't want to then "re-focus" the editor and cause unexpected
// selection changes
const clickedOnDecorator = (event.target.closest('[data-lexical-decorator]') !== null) || event.target.hasAttribute('data-lexical-decorator');
const clickedOnSlashMenu = (event.target.closest('[data-kg-slash-menu]') !== null) || event.target.hasAttribute('data-kg-slash-menu');
let skipFocus = false;
for (const elem of (event.path || event.composedPath())) {
if (elem.matches?.('[data-lexical-decorator], [data-kg-slash-menu]')) {
skipFocus = true;
break;
}
}
if (clickedOnDecorator || clickedOnSlashMenu) {
if (skipFocus) {
this.skipFocusEditor = true;
}
}