@lobehub/editor
Version:
A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.
64 lines (63 loc) • 3.89 kB
JavaScript
'use client';
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
import { useLayoutEffect, useState } from 'react';
import { useLexicalEditor } from "../../../editor-kernel/react";
import PortalAnchor from "../../../editor-kernel/react/PortalAnchor";
import { useLexicalComposerContext } from "../../../editor-kernel/react/react-context";
import { MarkdownPlugin } from "../../markdown/plugin";
import { LinkPlugin } from "../plugin";
import { ILinkService } from "../service/i-link-service";
import LinkEdit from "./components/LinkEdit";
import LinkToolbar from "./components/LinkToolbar";
import { styles } from "./style";
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
export var ReactLinkPlugin = function ReactLinkPlugin(_ref) {
var theme = _ref.theme,
_ref$enableHotkey = _ref.enableHotkey,
enableHotkey = _ref$enableHotkey === void 0 ? true : _ref$enableHotkey,
validateUrl = _ref.validateUrl,
attributes = _ref.attributes;
var _useState = useState(false),
_useState2 = _slicedToArray(_useState, 2),
enableToolbar = _useState2[0],
setEnableToolbar = _useState2[1];
var _useLexicalComposerCo = useLexicalComposerContext(),
_useLexicalComposerCo2 = _slicedToArray(_useLexicalComposerCo, 1),
editor = _useLexicalComposerCo2[0];
useLayoutEffect(function () {
editor.registerPlugin(MarkdownPlugin);
editor.registerPlugin(LinkPlugin, {
attributes: attributes,
enableHotkey: enableHotkey,
theme: theme || styles,
validateUrl: validateUrl
});
}, [attributes, enableHotkey, styles, theme, validateUrl]);
useLexicalEditor(function () {
var linkService = editor.requireService(ILinkService);
setEnableToolbar(linkService.enableLinkToolbar);
var handleChange = function handleChange() {
setEnableToolbar(linkService.enableLinkToolbar);
};
linkService.on('linkToolbarChange', handleChange);
return function () {
linkService.off('linkToolbarChange', handleChange);
};
}, []);
return /*#__PURE__*/_jsxs(PortalAnchor, {
children: [/*#__PURE__*/_jsx(LinkToolbar, {
editor: editor.getLexicalEditor(),
enable: enableToolbar
}), /*#__PURE__*/_jsx(LinkEdit, {
editor: editor.getLexicalEditor()
})]
});
};
ReactLinkPlugin.displayName = 'ReactLinkPlugin';
export default ReactLinkPlugin;