@lobehub/editor
Version:
A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.
187 lines • 10.3 kB
JavaScript
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 _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 _get() { if (typeof Reflect !== "undefined" && Reflect.get) { _get = Reflect.get.bind(); } else { _get = function _get(target, property, receiver) { var base = _superPropBase(target, property); if (!base) return; var desc = Object.getOwnPropertyDescriptor(base, property); if (desc.get) { return desc.get.call(arguments.length < 3 ? target : receiver); } return desc.value; }; } return _get.apply(this, arguments); }
function _superPropBase(object, property) { while (!Object.prototype.hasOwnProperty.call(object, property)) { object = _getPrototypeOf(object); if (object === null) break; } return object; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
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); }
/* eslint-disable @typescript-eslint/no-use-before-define */
import { addClassNamesToElement } from '@lexical/utils';
import { $applyNodeReplacement, DecoratorNode } from 'lexical';
import { getKernelFromEditor } from "../../../editor-kernel/utils";
export var FileNode = /*#__PURE__*/function (_DecoratorNode) {
_inherits(FileNode, _DecoratorNode);
var _super = _createSuper(FileNode);
function FileNode(name, fileUrl, size, status, message, key) {
var _this;
_classCallCheck(this, FileNode);
_this = _super.call(this, key);
_defineProperty(_assertThisInitialized(_this), "__name", void 0);
_defineProperty(_assertThisInitialized(_this), "__fileUrl", void 0);
_defineProperty(_assertThisInitialized(_this), "__size", void 0);
_defineProperty(_assertThisInitialized(_this), "__status", void 0);
_defineProperty(_assertThisInitialized(_this), "__message", void 0);
_this.__name = name;
_this.__fileUrl = fileUrl;
_this.__size = size;
_this.__status = status || 'pending';
_this.__message = message;
return _this;
}
_createClass(FileNode, [{
key: "name",
get: function get() {
return this.__name;
}
}, {
key: "fileUrl",
get: function get() {
return this.__fileUrl;
}
}, {
key: "size",
get: function get() {
return this.__size;
}
}, {
key: "status",
get: function get() {
return this.__status;
}
}, {
key: "message",
get: function get() {
return this.__message;
}
}, {
key: "setUploaded",
value: function setUploaded(url) {
var writable = this.getWritable();
writable.__fileUrl = url;
writable.__status = 'uploaded';
writable.__message = undefined; // Clear any previous error message
}
}, {
key: "setError",
value: function setError(message) {
var writable = this.getWritable();
writable.__status = 'error';
writable.__message = message;
}
}, {
key: "exportDOM",
value: function exportDOM() {
return {
element: document.createElement('span')
};
}
}, {
key: "createDOM",
value: function createDOM(config) {
var element = document.createElement('span');
addClassNamesToElement(element, config.theme.file);
return element;
}
}, {
key: "exportJSON",
value: function exportJSON() {
return _objectSpread(_objectSpread({}, _get(_getPrototypeOf(FileNode.prototype), "exportJSON", this).call(this)), {}, {
fileUrl: this.fileUrl,
message: this.message,
name: this.name,
size: this.size,
status: this.status
});
}
}, {
key: "updateFromJSON",
value: function updateFromJSON(serializedNode) {
var node = _get(_getPrototypeOf(FileNode.prototype), "updateFromJSON", this).call(this, serializedNode);
return node;
}
}, {
key: "getTextContent",
value: function getTextContent() {
return '\n';
}
}, {
key: "updateDOM",
value: function updateDOM() {
return false;
}
}, {
key: "decorate",
value: function decorate(editor) {
var _getKernelFromEditor;
var decorator = (_getKernelFromEditor = getKernelFromEditor(editor)) === null || _getKernelFromEditor === void 0 ? void 0 : _getKernelFromEditor.getDecorator('file');
if (!decorator) {
return null;
}
if (typeof decorator === 'function') {
return decorator(this, editor);
}
return {
queryDOM: decorator.queryDOM,
render: decorator.render(this, editor)
};
}
}], [{
key: "getType",
value: function getType() {
return 'file';
}
}, {
key: "clone",
value: function clone(node) {
return new FileNode(node.__name, node.__fileUrl, node.__size, node.__status, node.__message, node.__key);
}
}, {
key: "importJSON",
value: function importJSON(serializedNode) {
return new FileNode(serializedNode.name, serializedNode.fileUrl, serializedNode.size, serializedNode.status, serializedNode.message);
}
}, {
key: "importDOM",
value: function importDOM() {
return {
span: function span(node) {
if (node.classList.contains('file')) {
return {
conversion: $convertFileElement,
priority: 0
};
}
return null;
}
};
}
}]);
return FileNode;
}(DecoratorNode);
export function $createFileNode() {
var name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'unknown';
var fileUrl = arguments.length > 1 ? arguments[1] : undefined;
var size = arguments.length > 2 ? arguments[2] : undefined;
var status = arguments.length > 3 ? arguments[3] : undefined;
var message = arguments.length > 4 ? arguments[4] : undefined;
return $applyNodeReplacement(new FileNode(name, fileUrl, size, status, message));
}
function $convertFileElement() {
return {
node: $createFileNode()
};
}
export function $isFileNode(node) {
return node.getType() === FileNode.getType();
}