Created
December 30, 2023 22:15
-
-
Save Yash-Singh1/33903bc2287f6cf37f2eb1b5d57e8fe9 to your computer and use it in GitHub Desktop.
Drag and Drop Simulation Function that works with Notion Calendar View
This file contains 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
// This took me forever to get right, but basically it just plays around with mouse events to simulate a drag and drop in Notion Calendars | |
function dragAndDrop(initial: HTMLElement, target: HTMLElement) { | |
const pickUpEvent = new MouseEvent("mousedown", { | |
// button: 1, | |
bubbles: true, | |
// clientX: initial.getBoundingClientRect().x, | |
// clientY: initial.getBoundingClientRect().y, | |
}); | |
const moveEvent = new MouseEvent("mousemove", { | |
// relatedTarget: target, | |
bubbles: true, | |
clientX: target.getBoundingClientRect().x + 10, | |
clientY: target.getBoundingClientRect().y + 10, | |
movementX: | |
target.getBoundingClientRect().x - initial.getBoundingClientRect().x + 10, | |
movementY: | |
target.getBoundingClientRect().y - initial.getBoundingClientRect().y + 10, | |
// @ts-expect-error | |
offsetX: 0, | |
offsetY: 0, | |
}); | |
const mouseEnterEvent = new MouseEvent("mouseenter", { | |
bubbles: true, | |
clientX: target.getBoundingClientRect().x + 10, | |
clientY: target.getBoundingClientRect().y + 10, | |
}); | |
const dropEvent = new MouseEvent("mousedown", { | |
// button: 1, | |
bubbles: true, | |
clientX: target.getBoundingClientRect().x + 10, | |
clientY: target.getBoundingClientRect().y + 10, | |
}); | |
const dropEvent2 = new MouseEvent("mouseup", { | |
// button: 1, | |
bubbles: true, | |
clientX: target.getBoundingClientRect().x + 10, | |
clientY: target.getBoundingClientRect().y + 10, | |
}); | |
initial.dispatchEvent(pickUpEvent); | |
initial.dispatchEvent(moveEvent); | |
target.dispatchEvent(mouseEnterEvent); | |
const dropEvent3 = new MouseEvent("click", { | |
bubbles: true, | |
clientX: target.getBoundingClientRect().x + 10, | |
clientY: target.getBoundingClientRect().y + 10, | |
}); | |
target.dispatchEvent(dropEvent); | |
target.dispatchEvent(dropEvent3); | |
target.dispatchEvent(dropEvent2); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment