UNPKG

@tiptap/react

Version:

React components for tiptap

142 lines (139 loc) 5.89 kB
"use strict"; var __create = Object.create; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __getProtoOf = Object.getPrototypeOf; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps( // If the importer is in node compatibility mode or this is not an ESM // file that has been converted to a CommonJS file using a Babel- // compatible transform (i.e. "__esModule" has not been set), then set // "default" to the CommonJS "module.exports" for node compatibility. isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod )); var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // src/menus/index.ts var index_exports = {}; __export(index_exports, { BubbleMenu: () => BubbleMenu, FloatingMenu: () => FloatingMenu }); module.exports = __toCommonJS(index_exports); // src/menus/BubbleMenu.tsx var import_extension_bubble_menu = require("@tiptap/extension-bubble-menu"); var import_react = require("@tiptap/react"); var import_react2 = __toESM(require("react"), 1); var import_react_dom = require("react-dom"); var import_jsx_runtime = require("react/jsx-runtime"); var BubbleMenu = import_react2.default.forwardRef( ({ pluginKey = "bubbleMenu", editor, updateDelay, resizeDelay, shouldShow = null, options, children, ...restProps }, ref) => { const menuEl = (0, import_react2.useRef)(document.createElement("div")); if (typeof ref === "function") { ref(menuEl.current); } else if (ref) { ref.current = menuEl.current; } const { editor: currentEditor } = (0, import_react.useCurrentEditor)(); (0, import_react2.useEffect)(() => { const bubbleMenuElement = menuEl.current; bubbleMenuElement.style.visibility = "hidden"; bubbleMenuElement.style.position = "absolute"; if ((editor == null ? void 0 : editor.isDestroyed) || (currentEditor == null ? void 0 : currentEditor.isDestroyed)) { return; } const attachToEditor = editor || currentEditor; if (!attachToEditor) { console.warn("BubbleMenu component is not rendered inside of an editor component or does not have editor prop."); return; } const plugin = (0, import_extension_bubble_menu.BubbleMenuPlugin)({ updateDelay, resizeDelay, editor: attachToEditor, element: bubbleMenuElement, pluginKey, shouldShow, options }); attachToEditor.registerPlugin(plugin); return () => { attachToEditor.unregisterPlugin(pluginKey); window.requestAnimationFrame(() => { if (bubbleMenuElement.parentNode) { bubbleMenuElement.parentNode.removeChild(bubbleMenuElement); } }); }; }, [editor, currentEditor]); return (0, import_react_dom.createPortal)(/* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { ...restProps, children }), menuEl.current); } ); // src/menus/FloatingMenu.tsx var import_extension_floating_menu = require("@tiptap/extension-floating-menu"); var import_react3 = require("@tiptap/react"); var import_react4 = __toESM(require("react"), 1); var import_react_dom2 = require("react-dom"); var import_jsx_runtime2 = require("react/jsx-runtime"); var FloatingMenu = import_react4.default.forwardRef( ({ pluginKey = "floatingMenu", editor, shouldShow = null, options, children, ...restProps }, ref) => { const menuEl = (0, import_react4.useRef)(document.createElement("div")); if (typeof ref === "function") { ref(menuEl.current); } else if (ref) { ref.current = menuEl.current; } const { editor: currentEditor } = (0, import_react3.useCurrentEditor)(); (0, import_react4.useEffect)(() => { const floatingMenuElement = menuEl.current; floatingMenuElement.style.visibility = "hidden"; floatingMenuElement.style.position = "absolute"; if ((editor == null ? void 0 : editor.isDestroyed) || (currentEditor == null ? void 0 : currentEditor.isDestroyed)) { return; } const attachToEditor = editor || currentEditor; if (!attachToEditor) { console.warn( "FloatingMenu component is not rendered inside of an editor component or does not have editor prop." ); return; } const plugin = (0, import_extension_floating_menu.FloatingMenuPlugin)({ editor: attachToEditor, element: floatingMenuElement, pluginKey, shouldShow, options }); attachToEditor.registerPlugin(plugin); return () => { attachToEditor.unregisterPlugin(pluginKey); window.requestAnimationFrame(() => { if (floatingMenuElement.parentNode) { floatingMenuElement.parentNode.removeChild(floatingMenuElement); } }); }; }, [editor, currentEditor]); return (0, import_react_dom2.createPortal)(/* @__PURE__ */ (0, import_jsx_runtime2.jsx)("div", { ...restProps, children }), menuEl.current); } ); // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { BubbleMenu, FloatingMenu }); //# sourceMappingURL=index.cjs.map