UNPKG

@tiptap/extension-bubble-menu

Version:

bubble-menu extension for tiptap

341 lines (338 loc) 10.8 kB
// src/bubble-menu.ts import { Extension } from "@tiptap/core"; // src/bubble-menu-plugin.ts import { arrow, autoPlacement, computePosition, flip, hide, inline, offset, shift, size } from "@floating-ui/dom"; import { isTextSelection, posToDOMRect } from "@tiptap/core"; import { Plugin, PluginKey } from "@tiptap/pm/state"; import { CellSelection } from "@tiptap/pm/tables"; function combineDOMRects(rect1, rect2) { const top = Math.min(rect1.top, rect2.top); const bottom = Math.max(rect1.bottom, rect2.bottom); const left = Math.min(rect1.left, rect2.left); const right = Math.max(rect1.right, rect2.right); const width = right - left; const height = bottom - top; const x = left; const y = top; return new DOMRect(x, y, width, height); } var BubbleMenuView = class { constructor({ editor, element, view, updateDelay = 250, resizeDelay = 60, shouldShow, options }) { this.preventHide = false; this.isVisible = false; this.floatingUIOptions = { strategy: "absolute", placement: "top", offset: 8, flip: {}, shift: {}, arrow: false, size: false, autoPlacement: false, hide: false, inline: false, onShow: void 0, onHide: void 0, onUpdate: void 0, onDestroy: void 0 }; this.shouldShow = ({ view, state, from, to }) => { const { doc, selection } = state; const { empty } = selection; const isEmptyTextBlock = !doc.textBetween(from, to).length && isTextSelection(state.selection); const isChildOfMenu = this.element.contains(document.activeElement); const hasEditorFocus = view.hasFocus() || isChildOfMenu; if (!hasEditorFocus || empty || isEmptyTextBlock || !this.editor.isEditable) { return false; } return true; }; this.mousedownHandler = () => { this.preventHide = true; }; this.dragstartHandler = () => { this.hide(); }; /** * Handles the window resize event to update the position of the bubble menu. * It uses a debounce mechanism to prevent excessive updates. * The delay is defined by the `resizeDelay` property. */ this.resizeHandler = () => { if (this.resizeDebounceTimer) { clearTimeout(this.resizeDebounceTimer); } this.resizeDebounceTimer = window.setTimeout(() => { this.updatePosition(); }, this.resizeDelay); }; this.focusHandler = () => { setTimeout(() => this.update(this.editor.view)); }; this.blurHandler = ({ event }) => { var _a; if (this.preventHide) { this.preventHide = false; return; } if ((event == null ? void 0 : event.relatedTarget) && ((_a = this.element.parentNode) == null ? void 0 : _a.contains(event.relatedTarget))) { return; } if ((event == null ? void 0 : event.relatedTarget) === this.editor.view.dom) { return; } this.hide(); }; this.handleDebouncedUpdate = (view, oldState) => { const selectionChanged = !(oldState == null ? void 0 : oldState.selection.eq(view.state.selection)); const docChanged = !(oldState == null ? void 0 : oldState.doc.eq(view.state.doc)); if (!selectionChanged && !docChanged) { return; } if (this.updateDebounceTimer) { clearTimeout(this.updateDebounceTimer); } this.updateDebounceTimer = window.setTimeout(() => { this.updateHandler(view, selectionChanged, docChanged, oldState); }, this.updateDelay); }; this.updateHandler = (view, selectionChanged, docChanged, oldState) => { const { composing } = view; const isSame = !selectionChanged && !docChanged; if (composing || isSame) { return; } const shouldShow = this.getShouldShow(oldState); if (!shouldShow) { this.hide(); return; } this.updatePosition(); this.show(); }; this.editor = editor; this.element = element; this.view = view; this.updateDelay = updateDelay; this.resizeDelay = resizeDelay; this.floatingUIOptions = { ...this.floatingUIOptions, ...options }; this.element.tabIndex = 0; if (shouldShow) { this.shouldShow = shouldShow; } this.element.addEventListener("mousedown", this.mousedownHandler, { capture: true }); this.view.dom.addEventListener("dragstart", this.dragstartHandler); this.editor.on("focus", this.focusHandler); this.editor.on("blur", this.blurHandler); window.addEventListener("resize", this.resizeHandler); this.update(view, view.state); if (this.getShouldShow()) { this.show(); } } get middlewares() { const middlewares = []; if (this.floatingUIOptions.flip) { middlewares.push(flip(typeof this.floatingUIOptions.flip !== "boolean" ? this.floatingUIOptions.flip : void 0)); } if (this.floatingUIOptions.shift) { middlewares.push( shift(typeof this.floatingUIOptions.shift !== "boolean" ? this.floatingUIOptions.shift : void 0) ); } if (this.floatingUIOptions.offset) { middlewares.push( offset(typeof this.floatingUIOptions.offset !== "boolean" ? this.floatingUIOptions.offset : void 0) ); } if (this.floatingUIOptions.arrow) { middlewares.push(arrow(this.floatingUIOptions.arrow)); } if (this.floatingUIOptions.size) { middlewares.push(size(typeof this.floatingUIOptions.size !== "boolean" ? this.floatingUIOptions.size : void 0)); } if (this.floatingUIOptions.autoPlacement) { middlewares.push( autoPlacement( typeof this.floatingUIOptions.autoPlacement !== "boolean" ? this.floatingUIOptions.autoPlacement : void 0 ) ); } if (this.floatingUIOptions.hide) { middlewares.push(hide(typeof this.floatingUIOptions.hide !== "boolean" ? this.floatingUIOptions.hide : void 0)); } if (this.floatingUIOptions.inline) { middlewares.push( inline(typeof this.floatingUIOptions.inline !== "boolean" ? this.floatingUIOptions.inline : void 0) ); } return middlewares; } updatePosition() { const { selection } = this.editor.state; const domRect = posToDOMRect(this.view, selection.from, selection.to); let virtualElement = { getBoundingClientRect: () => domRect, getClientRects: () => [domRect] }; if (selection instanceof CellSelection) { const { $anchorCell, $headCell } = selection; const from = $anchorCell ? $anchorCell.pos : $headCell.pos; const to = $headCell ? $headCell.pos : $anchorCell.pos; const fromDOM = this.view.nodeDOM(from); const toDOM = this.view.nodeDOM(to); if (!fromDOM || !toDOM) { return; } const clientRect = fromDOM === toDOM ? fromDOM.getBoundingClientRect() : combineDOMRects( fromDOM.getBoundingClientRect(), toDOM.getBoundingClientRect() ); virtualElement = { getBoundingClientRect: () => clientRect, getClientRects: () => [clientRect] }; } computePosition(virtualElement, this.element, { placement: this.floatingUIOptions.placement, strategy: this.floatingUIOptions.strategy, middleware: this.middlewares }).then(({ x, y, strategy }) => { this.element.style.width = "max-content"; this.element.style.position = strategy; this.element.style.left = `${x}px`; this.element.style.top = `${y}px`; if (this.isVisible && this.floatingUIOptions.onUpdate) { this.floatingUIOptions.onUpdate(); } }); } update(view, oldState) { const { state } = view; const hasValidSelection = state.selection.from !== state.selection.to; if (this.updateDelay > 0 && hasValidSelection) { this.handleDebouncedUpdate(view, oldState); return; } const selectionChanged = !(oldState == null ? void 0 : oldState.selection.eq(view.state.selection)); const docChanged = !(oldState == null ? void 0 : oldState.doc.eq(view.state.doc)); this.updateHandler(view, selectionChanged, docChanged, oldState); } getShouldShow(oldState) { var _a; const { state } = this.view; const { selection } = state; const { ranges } = selection; const from = Math.min(...ranges.map((range) => range.$from.pos)); const to = Math.max(...ranges.map((range) => range.$to.pos)); const shouldShow = (_a = this.shouldShow) == null ? void 0 : _a.call(this, { editor: this.editor, element: this.element, view: this.view, state, oldState, from, to }); return shouldShow; } show() { var _a; if (this.isVisible) { return; } this.element.style.visibility = "visible"; this.element.style.opacity = "1"; (_a = this.view.dom.parentElement) == null ? void 0 : _a.appendChild(this.element); if (this.floatingUIOptions.onShow) { this.floatingUIOptions.onShow(); } this.isVisible = true; } hide() { if (!this.isVisible) { return; } this.element.style.visibility = "hidden"; this.element.style.opacity = "0"; this.element.remove(); if (this.floatingUIOptions.onHide) { this.floatingUIOptions.onHide(); } this.isVisible = false; } destroy() { this.hide(); this.element.removeEventListener("mousedown", this.mousedownHandler, { capture: true }); this.view.dom.removeEventListener("dragstart", this.dragstartHandler); window.removeEventListener("resize", this.resizeHandler); this.editor.off("focus", this.focusHandler); this.editor.off("blur", this.blurHandler); if (this.floatingUIOptions.onDestroy) { this.floatingUIOptions.onDestroy(); } } }; var BubbleMenuPlugin = (options) => { return new Plugin({ key: typeof options.pluginKey === "string" ? new PluginKey(options.pluginKey) : options.pluginKey, view: (view) => new BubbleMenuView({ view, ...options }) }); }; // src/bubble-menu.ts var BubbleMenu = Extension.create({ name: "bubbleMenu", addOptions() { return { element: null, pluginKey: "bubbleMenu", updateDelay: void 0, shouldShow: null }; }, addProseMirrorPlugins() { if (!this.options.element) { return []; } return [ BubbleMenuPlugin({ pluginKey: this.options.pluginKey, editor: this.editor, element: this.options.element, updateDelay: this.options.updateDelay, options: this.options.options, shouldShow: this.options.shouldShow }) ]; } }); // src/index.ts var index_default = BubbleMenu; export { BubbleMenu, BubbleMenuPlugin, BubbleMenuView, index_default as default }; //# sourceMappingURL=index.js.map