#40493 closed enhancement (fixed)
On the Edit User Profile page, prevent losing data when clicking links
Reported by: | ashokrane | Owned by: | joedolson |
---|---|---|---|
Milestone: | 6.6 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Users | Keywords: | target-blank has-patch commit |
Focuses: | accessibility, javascript | Cc: |
Description
On the Edit User Profile, open the "You can change your profile picture on Gravatar." link in a new window.
Reason being that otherwise it causes the user to loose any data that they have edited in the form, but not yet saved.
Attachments (5)
Change History (24)
#2
@
7 years ago
Thanks @swissspidy. I agree. The browser didn't throw any warning when I have unsaved data & when I clicked on the "Gravatar" text. Doing that would be a better approach then opening in a new window (after going through other related tickets).
#3
@
7 years ago
- Keywords reporter-feedback added
Hey i also once had the same thought on opening the Gravatar link in a new window, but after reading this it totally makes much more sense now.
This ticket was mentioned in Slack in #accessibility by afercia. View the logs.
6 years ago
#6
@
6 years ago
- Keywords needs-patch added; reporter-feedback removed
- Milestone changed from Awaiting Review to Future Release
- Version 4.7.3 deleted
Discussed during today's accessibility bug-scrub, agreed this form would need the JS confirm to warn users they can lose data when navigating away. No target _blank please :)
#7
@
4 years ago
Regarding the patch above, please also give props to @diedeexterkate.
The patch above fixes the issue on the user edit pages and "add new user" page. We tested this on Chrome, Edge, Firefox and Safari on macOS.
Important to note that in Safari this does not work. We think this is due to back-forward caching (see https://stackoverflow.com/questions/40938707/safari-onbeforeunload/41769343).
#9
@
2 years ago
- Focuses javascript added
- Keywords needs-refresh added
- Summary changed from On the Edit User Profile, open the "You can change your profile picture on Gravatar." link in a new window to On the Edit User Profile page, prevent losing data when clicking links
This ticket was mentioned in Slack in #accessibility by joedolson. View the logs.
7 months ago
#11
@
7 months ago
- Milestone changed from Future Release to 6.6
- Owner set to joedolson
- Status changed from new to accepted
Looking at this for 6.6, and as a requirement to resolve #60100.
This ticket was mentioned in PR #6424 on WordPress/wordpress-develop by jwgoedert.
6 months ago
#12
- Keywords needs-refresh removed
Verified @karlijnbk patch:
Added isSubmitting boolean, and form variables for tracking changes
Added initial form check.
Added conditional in 'beforeunload' check to handle redirects and present 'Changes that you made may not be saved.' warning message.
Trac ticket:
https://core.trac.wordpress.org/ticket/40493
#13
@
6 months ago
Submitted PR and included screenshots(accidentally added two, need to remove one...)
Verification of patch and efforts from work of @karlijnbk @diedeexterkate
New Diff attached and PR link below.
#14
@
5 months ago
- Keywords commit added
This looks good. Other than a couple of minor formatting tweaks, I think it's good to go.
#16
@
5 months ago
- Resolution fixed deleted
- Status changed from closed to reopened
Thanks for the commit!
A similar string is already used elsewhere:
The changes you made will be lost if you navigate away from this page.
Could we reuse it here instead of introducing a new one?
@SergeyBiryukov commented on PR #6424:
5 months ago
#17
Thanks for the PR! This was merged in r58137.
Hey there,
Thanks for your report and welcome!
As per #23432, we rather strive to remove usage of
target="_blank"
. As for losing data, the browser should warn you when you're about to leave a page without having saved the form.See https://core.trac.wordpress.org/query?keywords=~target-blank for related tickets.