UNPKG

@lobehub/editor

Version:

A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.

101 lines (93 loc) 6.07 kB
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; } function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); } function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread 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 _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); } function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); } 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 _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); } function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } import { genServiceId } from "../../../editor-kernel"; /** * XML Reader function type - converts XML element to Lexical node */ /** * XML Writer function type - converts Lexical node to XML string */ // return IXmlNode if handled, false to continue with default /** * Record of XML readers indexed by tag name */ /** * Record of XML writers indexed by node type */ /** * ILitexmlService - Service interface for extending Litexml plugin * Allows other plugins to register custom XML readers and writers */ /** * Service ID for Litexml service */ // eslint-disable-next-line @typescript-eslint/no-redeclare, no-redeclare export var ILitexmlService = genServiceId('ILitexmlService'); /** * Default implementation of ILitexmlService */ export var LitexmlService = /*#__PURE__*/function () { function LitexmlService() { _classCallCheck(this, LitexmlService); _defineProperty(this, "readers", {}); _defineProperty(this, "writers", {}); } _createClass(LitexmlService, [{ key: "registerXMLReader", value: function registerXMLReader(tagName, reader) { var key = tagName.toLowerCase(); if (this.readers[key]) { // If reader already exists, convert to array var existing = this.readers[key]; this.readers[key] = Array.isArray(existing) ? [].concat(_toConsumableArray(existing), [reader]) : [existing, reader]; } else { this.readers[key] = reader; } } }, { key: "registerXMLWriter", value: function registerXMLWriter(nodeType, writer) { if (this.writers[nodeType]) { // If writer already exists, convert to array var existing = this.writers[nodeType]; this.writers[nodeType] = Array.isArray(existing) ? [].concat(_toConsumableArray(existing), [writer]) : [existing, writer]; } else { this.writers[nodeType] = writer; } } }, { key: "getXMLReaders", value: function getXMLReaders() { return _objectSpread({}, this.readers); } }, { key: "getXMLWriters", value: function getXMLWriters() { return _objectSpread({}, this.writers); } }, { key: "hasXMLReader", value: function hasXMLReader(tagName) { return !!this.readers[tagName.toLowerCase()]; } }, { key: "hasXMLWriter", value: function hasXMLWriter(nodeType) { return !!this.writers[nodeType]; } }]); return LitexmlService; }();