fix: prevent drop files overlay from appearing when dragging text sel…#5164
Open
JorgeEscire wants to merge 1 commit intoDSpace:dspace-7_xfrom
Open
fix: prevent drop files overlay from appearing when dragging text sel…#5164JorgeEscire wants to merge 1 commit intoDSpace:dspace-7_xfrom
JorgeEscire wants to merge 1 commit intoDSpace:dspace-7_xfrom
Conversation
…ections in Firefox (DSpace#1268)
|
Thank you for the fix @JorgeEscire! You may have already seen, but just to note looks like this is currently failing one of the e2e tests. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
References
Description
Prevent the "drop files" overlay from appearing when dragging text selections in Firefox on submission pages.
Instructions for Reviewers
Problem
In Firefox, dragging text selections on submission pages (new submission or edit workspace item) triggers the "Drop files to attach them to the item" overlay. This happens because the
window:dragoverevent handlers inUploaderComponentandFileDropzoneNoUploaderComponentdon't distinguish between file drags and text selection drags. Sometimes the overlay stays visible until the page is refreshed.Chrome doesn't have this issue because it doesn't support dragging text selections in the same way.
Fix
Added a check on
event.dataTransfer.typesto verify it contains'Files'before showing the document drop zone overlay. When dragging text,dataTransfer.typesonly containstext/plainand/ortext/html, notFiles.List of changes in this PR:
dataTransfer.types.includes('Files')guard inUploaderComponent.onDragOver()(uploader.component.ts)FileDropzoneNoUploaderComponent.onDragOver()(file-dropzone-no-uploader.component.ts)How to test
Checklist
mainbranch of code (unless it is a backport or is fixing an issue specific to an older branch).npm run lintnpm run check-circ-deps)package.json), I've made sure their licenses align with the DSpace BSD License based on the Licensing of Contributions documentation.