mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-21 07:51:31 +03:00
fafacdb265
fix AF-1847 two issues: 1. original `dropTargetForExternal` only works if dragging target is from another window context. patched the library to bypass this issue 2. `dataTransfer`'s content is only available on `drop` event. This means we cannot have `canDrop` checks for external elements (like blocksuite links).
20 lines
836 B
Diff
20 lines
836 B
Diff
diff --git a/dist/esm/adapter/external-adapter.js b/dist/esm/adapter/external-adapter.js
|
|
index ef7a963d91f08c9e70c8ed9c6b41972bec349319..e682841ec10a4a8a9ce7a79642e58de5c9e664d5 100644
|
|
--- a/dist/esm/adapter/external-adapter.js
|
|
+++ b/dist/esm/adapter/external-adapter.js
|
|
@@ -54,9 +54,11 @@ var adapter = makeAdapter({
|
|
type: 'dragenter',
|
|
listener: function listener(event) {
|
|
// drag operation was started within the document, it won't be an "external" drag
|
|
- if (didDragStartLocally) {
|
|
- return;
|
|
- }
|
|
+
|
|
+ // we will handle all events actually
|
|
+ // if (didDragStartLocally) {
|
|
+ // return;
|
|
+ // }
|
|
|
|
// Note: not checking if event was cancelled (`event.defaultPrevented`) as
|
|
// cancelling a "dragenter" accepts the drag operation (not prevent it)
|