-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
reset focus synchronously #9837
Conversation
🦋 Changeset detectedLatest commit: 83fabe9 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
I vaguely remember that one of these can only be tested manually, so we'd also have to see if the original bug that was fixed stays fixed by trying out ourselves again. Edit: This will reintroduce the bug in #8439 because |
Reordering seems reasonable, yeah. It does fix the janky behaviour — even though I forgot to remove the |
Recapping discussion we had just now: the current order of events upon navigation is
The problem here, which is fixed by this PR, is the The solution I'm going to try is to keep the behaviour in this PR, but only reset the selection range if we detect that it didn't change (as a result of an element being (auto)focused, or a programmatic selection change in At the same time, I'll move snapshot restoration before after navigate callbacks — it's a bug that it happens the other way around. So the new order will be
|
const old_range = a[i]; | ||
const new_range = after.getRangeAt(i); | ||
|
||
if (old_range.commonAncestorContainer !== new_range.commonAncestorContainer) return; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are you sure we need this level of comparison? I did getSelection().getRangeAt(0) === getSelection().getRangeAt(0)
in the browser console and it spits out true
. If I save one to a variable, select something else, it's false
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, interesting. Yeah I think I'm overcomplicating things. Simplified it
…nto reset-focus-synchronously
gah this causes a whole bunch of failures in safari, but only in safari GODDAMMIT SAFARI NOT NOW |
Mhm so seems like the object is not the same on safari then..? 😓 Meany we gotta go back to that comparison. Although I'm wondering if there's any value in code-golfing it to a function and then doing |
Yeah, this code returns getSelection().getRangeAt(0) === getSelection().getRangeAt(0) So dumb. I think after gzip there's probably not much value in making the function |
if (a.startContainer !== b.startContainer) return; | ||
if (a.endContainer !== b.endContainer) return; | ||
if (a.startOffset !== b.startOffset) return; | ||
if (a.endOffset !== b.endOffset) return; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can code golf a bit at least by turning this into one big if(.. !== .. || ..) return
As of #8466, we wait for a
setTimeout
to complete before navigation can finish. This causes a flash between the page being updated and a subsequentsnapshot.restore(...)
, which feels somewhat janky (scroll positions aren't immediately recovered, etc).I'm honestly not sure if the tests will pass on all browsers if we just do the
setTimeout
without awaiting its completion, but opening this PR is the easiest way to find out.Please don't delete this checklist! Before submitting the PR, please make sure you do the following:
Tests
pnpm test
and lint the project withpnpm lint
andpnpm check
Changesets
pnpm changeset
and following the prompts. Changesets that add features should beminor
and those that fix bugs should bepatch
. Please prefix changeset messages withfeat:
,fix:
, orchore:
.