mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
47 lines
1.8 KiB
TypeScript
47 lines
1.8 KiB
TypeScript
|
import HTML5Backend from 'react-dnd-html5-backend';
|
||
|
|
||
|
// @ts-expect-error -- TSCONVERSION ignoring until we can update react-dnd-html5-backend to get accurate upstream types
|
||
|
class DNDBackend extends HTML5Backend {
|
||
|
handleTopDragEndCapture(e) {
|
||
|
// @ts-expect-error -- TSCONVERSION ignoring until we can update react-dnd-html5-backend to get accurate upstream types
|
||
|
if (this.isDraggingNativeItem()) {
|
||
|
setTimeout(() => {
|
||
|
// @ts-expect-error -- TSCONVERSION ignoring until we can update react-dnd-html5-backend to get accurate upstream types
|
||
|
this.actions.endDrag();
|
||
|
});
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
super.handleTopDragEndCapture(e);
|
||
|
}
|
||
|
|
||
|
handleTopDragOver(e) {
|
||
|
// @ts-expect-error -- TSCONVERSION ignoring until we can update react-dnd-html5-backend to get accurate upstream types
|
||
|
if (this.isDraggingNativeItem()) return;
|
||
|
super.handleTopDragOver(e);
|
||
|
}
|
||
|
|
||
|
handleTopDragLeaveCapture(e) {
|
||
|
// @ts-expect-error -- TSCONVERSION ignoring until we can update react-dnd-html5-backend to get accurate upstream types
|
||
|
if (this.isDraggingNativeItem()) return;
|
||
|
super.handleTopDragLeaveCapture(e);
|
||
|
}
|
||
|
|
||
|
handleTopDropCapture(e) {
|
||
|
// @ts-expect-error -- TSCONVERSION ignoring until we can update react-dnd-html5-backend to get accurate upstream types
|
||
|
if (this.isDraggingNativeItem()) return;
|
||
|
super.handleTopDropCapture(e);
|
||
|
}
|
||
|
|
||
|
handleTopDrop(e) {
|
||
|
// @ts-expect-error -- TSCONVERSION ignoring until we can update react-dnd-html5-backend to get accurate upstream types
|
||
|
if (!this.monitor.isDragging() || this.isDraggingNativeItem()) return;
|
||
|
super.handleTopDrop(e);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default function(manager) {
|
||
|
// @ts-expect-error -- TSCONVERSION ignoring until we can update react-dnd-html5-backend to get accurate upstream types
|
||
|
return new DNDBackend(manager);
|
||
|
}
|