Merge pull request #228 from Chrissi2812/menu-bubble-position

Fix Menu bubble position
This commit is contained in:
Philipp Kühn 2019-04-30 16:07:20 +02:00 committed by GitHub
commit 0e6efc3889
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 69 additions and 6 deletions

View File

@ -1,6 +1,6 @@
<template> <template>
<div class="editor"> <div class="editor">
<editor-menu-bubble :editor="editor"> <editor-menu-bubble :editor="editor" :keepInBounds="keepInBounds">
<div <div
slot-scope="{ commands, isActive, menu }" slot-scope="{ commands, isActive, menu }"
class="menububble" class="menububble"
@ -69,6 +69,7 @@ export default {
}, },
data() { data() {
return { return {
keepInBounds: true,
editor: new Editor({ editor: new Editor({
extensions: [ extensions: [
new Blockquote(), new Blockquote(),

View File

@ -7,6 +7,10 @@ export default {
default: null, default: null,
type: Object, type: Object,
}, },
keepInBounds: {
default: true,
type: Boolean,
},
}, },
data() { data() {
@ -27,6 +31,7 @@ export default {
this.$nextTick(() => { this.$nextTick(() => {
editor.registerPlugin(MenuBubble({ editor.registerPlugin(MenuBubble({
element: this.$el, element: this.$el,
keepInBounds: this.keepInBounds,
onUpdate: menu => { onUpdate: menu => {
// the second check ensures event is fired only once // the second check ensures event is fired only once
if (menu.isActive && this.menu.isActive === false) { if (menu.isActive && this.menu.isActive === false) {

View File

@ -1,11 +1,63 @@
import { Plugin } from 'prosemirror-state' import { Plugin } from 'prosemirror-state'
function textRange(node, from, to) {
const range = document.createRange()
range.setEnd(node, to == null ? node.nodeValue.length : to)
range.setStart(node, from || 0)
return range
}
function singleRect(object, bias) {
const rects = object.getClientRects()
return !rects.length ? object.getBoundingClientRect() : rects[bias < 0 ? 0 : rects.length - 1]
}
function coordsAtPos(view, pos, end = false) {
const { node, offset } = view.docView.domFromPos(pos)
let side
let rect
if (node.nodeType === 3) {
if (end && offset < node.nodeValue.length) {
rect = singleRect(textRange(node, offset - 1, offset), -1)
side = 'right'
} else if (offset < node.nodeValue.length) {
rect = singleRect(textRange(node, offset, offset + 1), -1)
side = 'left'
}
} else if (node.firstChild) {
if (offset < node.childNodes.length) {
const child = node.childNodes[offset]
rect = singleRect(child.nodeType === 3 ? textRange(child) : child, -1)
side = 'left'
}
if ((!rect || rect.top === rect.bottom) && offset) {
const child = node.childNodes[offset - 1]
rect = singleRect(child.nodeType === 3 ? textRange(child) : child, 1)
side = 'right'
}
} else {
rect = node.getBoundingClientRect()
side = 'left'
}
const x = rect[side]
return {
top: rect.top,
bottom: rect.bottom,
left: x,
right: x,
}
}
class Menu { class Menu {
constructor({ options, editorView }) { constructor({ options, editorView }) {
this.options = { this.options = {
...{ ...{
element: null, element: null,
keepInBounds: true,
onUpdate: () => false, onUpdate: () => false,
}, },
...options, ...options,
@ -36,19 +88,24 @@ class Menu {
const { from, to } = state.selection const { from, to } = state.selection
// These are in screen coordinates // These are in screen coordinates
const start = view.coordsAtPos(from) // We can't use EditorView.cordsAtPos here because it can't handle linebreaks correctly
const end = view.coordsAtPos(to) // See: https://github.com/ProseMirror/prosemirror-view/pull/47
const start = coordsAtPos(view, from)
const end = coordsAtPos(view, to, true)
// The box in which the tooltip is positioned, to use as base // The box in which the tooltip is positioned, to use as base
const box = this.options.element.offsetParent.getBoundingClientRect() const box = this.options.element.offsetParent.getBoundingClientRect()
const el = this.options.element.getBoundingClientRect()
// Find a center-ish x position from the selection endpoints (when // Find a center-ish x position from the selection endpoints (when
// crossing lines, end may be more to the left) // crossing lines, end may be more to the left)
const left = Math.max((start.left + end.left) / 2, start.left + 3) const left = ((start.left + end.left) / 2) - box.left
// Keep the menuBubble in the bounding box of the offsetParent i
this.left = Math.round(this.options.keepInBounds
? Math.min(box.width - (el.width / 2), Math.max(left, el.width / 2)) : left)
this.bottom = Math.round(box.bottom - start.top)
this.isActive = true this.isActive = true
this.left = parseInt(left - box.left, 10)
this.bottom = parseInt(box.bottom - start.top, 10)
this.sendUpdate() this.sendUpdate()
} }