mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-15 02:59:01 +08:00
add resizeobserver to floating menu, fix #358
This commit is contained in:
parent
1bc15871d5
commit
0bb5ab6d9b
@ -5,6 +5,7 @@ class Menu {
|
||||
constructor({ options, editorView }) {
|
||||
this.options = {
|
||||
...{
|
||||
resizeObserver: true,
|
||||
element: null,
|
||||
onUpdate: () => false,
|
||||
},
|
||||
@ -20,9 +21,21 @@ class Menu {
|
||||
this.options.editor.on('focus', ({ view }) => {
|
||||
this.update(view)
|
||||
})
|
||||
|
||||
this.options.editor.on('blur', ({ event }) => {
|
||||
this.hide(event)
|
||||
})
|
||||
|
||||
// sometimes we have to update the position
|
||||
// because of a loaded images for example
|
||||
if (this.options.resizeObserver && ResizeObserver) {
|
||||
this.resizeObserver = new ResizeObserver(() => {
|
||||
if (this.isActive) {
|
||||
this.update(this.editorView)
|
||||
}
|
||||
})
|
||||
this.resizeObserver.observe(this.editorView.dom)
|
||||
}
|
||||
}
|
||||
|
||||
handleClick(event) {
|
||||
@ -81,6 +94,10 @@ class Menu {
|
||||
|
||||
destroy() {
|
||||
this.options.element.removeEventListener('mousedown', this.handleClick)
|
||||
|
||||
if (this.resizeObserver) {
|
||||
this.resizeObserver.unobserve(this.editorView.dom)
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user