-
Notifications
You must be signed in to change notification settings - Fork 48.1k
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
DataTransfer's dropEffect not working on IE/Edge with not minified version react.js #5700
Comments
The difference between minified and unminified is because React wraps event handlers inside other events in the development build to get better devtool integration. Problem is that Edge and IE don't allow access to the Could be a bug in those browsers? Or perhaps Microsoft are just being extra cautious because of the kinds of security risks mentioned in the spec? |
I'm working on a PR, but thought I would check the approach I'm taking. Ideally event handlers should work the same way in dev and production. And React should retain it's good devtool integration, since removing it for a minority of cases doesn't seem right. So my approach is to detect if we're in an environment that works this way, and if we are, to skip wrapping the event handlers for drag events only. It's too bad we can't detect whether an event handler will actually try and access the |
@p-jackson Sounds like a reasonable approach to me. |
Note: the original PR that fixed this was reverted so this bug still exists. |
A workaround for when you only need the combination of For example, to only allow finishing a drag-and-drop if it is a move operation: dragStartHandler(e) {
e.dataTransfer.effectAllowed = "move";
}
dragOverHandler(e) {
if (e.dataTransfer.effectAllowed === "move") {
e.preventDefault();
// ...
}
}
dropHandler(e) {
if (e.dataTransfer.effectAllowed === "move") {
e.preventDefault();
// ...
}
} The reason this works is because without preventing the default event behavior the drag-and-drop operation will not be available. At least, not as such. This enables the possibility of real-time visual feedback for several distinct drag-modes per application. |
Trying to set
|
Since IE is not supported anymore we should close this. |
code exmaple: Non-minified version and Minified version
Both have the same code, html and js, the only difference is referenced to different version of react.js files.
There are three boxes. Dragging the "drag me" box will show a "start" at the top, then show a "over" if it is dragged over either "normal drop" or "drop react" box, and show a "end" with a drop to the two drop boxes.
Everything works fine on my Firefox(43.0.1), and the the Minified version works fine on my IE 11, and Edge(13).
The only thing dose not work is the Non-minified version on IE/Edge.
When dragging over the "drop react" box, there shows NO "over". In the F12 console, I can see lines of "
SCRIPT16389: Unspecified error.
". And withconsole.log(ev.dataTransfer)
, I get this result:I thought the
dropEffect
should also be accessible on IE/Edge with non-minified version react.js files?The text was updated successfully, but these errors were encountered: