| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/apache/htdocs/app/node_modules/prosemirror-dropcursor/src/ |
Upload File : |
import {Plugin} from "prosemirror-state"
import {dropPoint} from "prosemirror-transform"
// :: (options: ?Object) → Plugin
// Create a plugin that, when added to a ProseMirror instance,
// causes a decoration to show up at the drop position when something
// is dragged over the editor.
//
// options::- These options are supported:
//
// color:: ?string
// The color of the cursor. Defaults to `black`.
//
// width:: ?number
// The precise width of the cursor in pixels. Defaults to 1.
//
// class:: ?string
// A CSS class name to add to the cursor element.
export function dropCursor(options = {}) {
return new Plugin({
view(editorView) { return new DropCursorView(editorView, options) }
})
}
class DropCursorView {
constructor(editorView, options) {
this.editorView = editorView
this.width = options.width || 1
this.color = options.color || "black"
this.class = options.class
this.cursorPos = null
this.element = null
this.timeout = null
this.handlers = ["dragover", "dragend", "drop", "dragleave"].map(name => {
let handler = e => this[name](e)
editorView.dom.addEventListener(name, handler)
return {name, handler}
})
}
destroy() {
this.handlers.forEach(({name, handler}) => this.editorView.dom.removeEventListener(name, handler))
}
update(editorView, prevState) {
if (this.cursorPos != null && prevState.doc != editorView.state.doc) {
if (this.cursorPos > editorView.state.doc.content.size) this.setCursor(null)
else this.updateOverlay()
}
}
setCursor(pos) {
if (pos == this.cursorPos) return
this.cursorPos = pos
if (pos == null) {
this.element.parentNode.removeChild(this.element)
this.element = null
} else {
this.updateOverlay()
}
}
updateOverlay() {
let $pos = this.editorView.state.doc.resolve(this.cursorPos), rect
if (!$pos.parent.inlineContent) {
let before = $pos.nodeBefore, after = $pos.nodeAfter
if (before || after) {
let nodeRect = this.editorView.nodeDOM(this.cursorPos - (before ? before.nodeSize : 0)).getBoundingClientRect()
let top = before ? nodeRect.bottom : nodeRect.top
if (before && after)
top = (top + this.editorView.nodeDOM(this.cursorPos).getBoundingClientRect().top) / 2
rect = {left: nodeRect.left, right: nodeRect.right, top: top - this.width / 2, bottom: top + this.width / 2}
}
}
if (!rect) {
let coords = this.editorView.coordsAtPos(this.cursorPos)
rect = {left: coords.left - this.width / 2, right: coords.left + this.width / 2, top: coords.top, bottom: coords.bottom}
}
let parent = this.editorView.dom.offsetParent
if (!this.element) {
this.element = parent.appendChild(document.createElement("div"))
if (this.class) this.element.className = this.class
this.element.style.cssText = "position: absolute; z-index: 50; pointer-events: none; background-color: " + this.color
}
let parentLeft, parentTop
if (!parent || parent == document.body && getComputedStyle(parent).position == "static") {
parentLeft = -pageXOffset
parentTop = -pageYOffset
} else {
let rect = parent.getBoundingClientRect()
parentLeft = rect.left - parent.scrollLeft
parentTop = rect.top - parent.scrollTop
}
this.element.style.left = (rect.left - parentLeft) + "px"
this.element.style.top = (rect.top - parentTop) + "px"
this.element.style.width = (rect.right - rect.left) + "px"
this.element.style.height = (rect.bottom - rect.top) + "px"
}
scheduleRemoval(timeout) {
clearTimeout(this.timeout)
this.timeout = setTimeout(() => this.setCursor(null), timeout)
}
dragover(event) {
if (!this.editorView.editable) return
let pos = this.editorView.posAtCoords({left: event.clientX, top: event.clientY})
if (pos) {
let target = pos.pos
if (this.editorView.dragging && this.editorView.dragging.slice) {
target = dropPoint(this.editorView.state.doc, target, this.editorView.dragging.slice)
if (target == null) return this.setCursor(null)
}
this.setCursor(target)
this.scheduleRemoval(5000)
}
}
dragend() {
this.scheduleRemoval(20)
}
drop() {
this.scheduleRemoval(20)
}
dragleave(event) {
if (event.target == this.editorView.dom || !this.editorView.dom.contains(event.relatedTarget))
this.setCursor(null)
}
}