333 lines
12 KiB
JavaScript
333 lines
12 KiB
JavaScript
|
import React, { Component } from 'react';
|
||
|
import { DomHandler, classNames } from 'primereact/utils';
|
||
|
|
||
|
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, 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 _setPrototypeOf(o, p) {
|
||
|
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
||
|
o.__proto__ = p;
|
||
|
return o;
|
||
|
};
|
||
|
|
||
|
return _setPrototypeOf(o, p);
|
||
|
}
|
||
|
|
||
|
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 _typeof(obj) {
|
||
|
"@babel/helpers - typeof";
|
||
|
|
||
|
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) {
|
||
|
return typeof obj;
|
||
|
} : function (obj) {
|
||
|
return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
||
|
}, _typeof(obj);
|
||
|
}
|
||
|
|
||
|
function _assertThisInitialized(self) {
|
||
|
if (self === void 0) {
|
||
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
||
|
}
|
||
|
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
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 _getPrototypeOf(o) {
|
||
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
||
|
return o.__proto__ || Object.getPrototypeOf(o);
|
||
|
};
|
||
|
return _getPrototypeOf(o);
|
||
|
}
|
||
|
|
||
|
function _defineProperty(obj, key, value) {
|
||
|
if (key in obj) {
|
||
|
Object.defineProperty(obj, key, {
|
||
|
value: value,
|
||
|
enumerable: true,
|
||
|
configurable: true,
|
||
|
writable: true
|
||
|
});
|
||
|
} else {
|
||
|
obj[key] = value;
|
||
|
}
|
||
|
|
||
|
return obj;
|
||
|
}
|
||
|
|
||
|
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
||
|
|
||
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
||
|
|
||
|
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 _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; } }
|
||
|
var Editor = /*#__PURE__*/function (_Component) {
|
||
|
_inherits(Editor, _Component);
|
||
|
|
||
|
var _super = _createSuper(Editor);
|
||
|
|
||
|
function Editor() {
|
||
|
_classCallCheck(this, Editor);
|
||
|
|
||
|
return _super.apply(this, arguments);
|
||
|
}
|
||
|
|
||
|
_createClass(Editor, [{
|
||
|
key: "getQuill",
|
||
|
value: function getQuill() {
|
||
|
return this.quill;
|
||
|
}
|
||
|
}, {
|
||
|
key: "componentDidMount",
|
||
|
value: function componentDidMount() {
|
||
|
var _this = this;
|
||
|
|
||
|
import('quill').then(function (module) {
|
||
|
if (module && module["default"] && DomHandler.isExist(_this.editorElement)) {
|
||
|
_this.quill = new module["default"](_this.editorElement, {
|
||
|
modules: _objectSpread({
|
||
|
toolbar: _this.props.showHeader ? _this.toolbarElement : false
|
||
|
}, _this.props.modules),
|
||
|
placeholder: _this.props.placeholder,
|
||
|
readOnly: _this.props.readOnly,
|
||
|
theme: _this.props.theme,
|
||
|
formats: _this.props.formats
|
||
|
});
|
||
|
|
||
|
if (_this.props.value) {
|
||
|
_this.quill.setContents(_this.quill.clipboard.convert(_this.props.value));
|
||
|
}
|
||
|
|
||
|
_this.quill.on('text-change', function (delta, source) {
|
||
|
var html = _this.editorElement.children[0].innerHTML;
|
||
|
|
||
|
var text = _this.quill.getText();
|
||
|
|
||
|
if (html === '<p><br></p>') {
|
||
|
html = null;
|
||
|
}
|
||
|
|
||
|
if (_this.props.onTextChange) {
|
||
|
_this.props.onTextChange({
|
||
|
htmlValue: html,
|
||
|
textValue: text,
|
||
|
delta: delta,
|
||
|
source: source
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
|
||
|
_this.quill.on('selection-change', function (range, oldRange, source) {
|
||
|
if (_this.props.onSelectionChange) {
|
||
|
_this.props.onSelectionChange({
|
||
|
range: range,
|
||
|
oldRange: oldRange,
|
||
|
source: source
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}).then(function () {
|
||
|
if (_this.quill && _this.quill.getModule('toolbar')) {
|
||
|
_this.props.onLoad && _this.props.onLoad(_this.quill);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}, {
|
||
|
key: "componentDidUpdate",
|
||
|
value: function componentDidUpdate(prevProps) {
|
||
|
if (this.props.value !== prevProps.value && this.quill && !this.quill.hasFocus()) {
|
||
|
if (this.props.value) this.quill.setContents(this.quill.clipboard.convert(this.props.value));else this.quill.setText('');
|
||
|
}
|
||
|
}
|
||
|
}, {
|
||
|
key: "render",
|
||
|
value: function render() {
|
||
|
var _this2 = this;
|
||
|
|
||
|
var containerClass = classNames('p-component p-editor-container', this.props.className);
|
||
|
var toolbarHeader = null;
|
||
|
|
||
|
if (this.props.showHeader === false) {
|
||
|
toolbarHeader = '';
|
||
|
this.toolbarElement = undefined;
|
||
|
} else if (this.props.headerTemplate) {
|
||
|
toolbarHeader = /*#__PURE__*/React.createElement("div", {
|
||
|
ref: function ref(el) {
|
||
|
return _this2.toolbarElement = el;
|
||
|
},
|
||
|
className: "p-editor-toolbar"
|
||
|
}, this.props.headerTemplate);
|
||
|
} else {
|
||
|
toolbarHeader = /*#__PURE__*/React.createElement("div", {
|
||
|
ref: function ref(el) {
|
||
|
return _this2.toolbarElement = el;
|
||
|
},
|
||
|
className: "p-editor-toolbar"
|
||
|
}, /*#__PURE__*/React.createElement("span", {
|
||
|
className: "ql-formats"
|
||
|
}, /*#__PURE__*/React.createElement("select", {
|
||
|
className: "ql-header",
|
||
|
defaultValue: "0"
|
||
|
}, /*#__PURE__*/React.createElement("option", {
|
||
|
value: "1"
|
||
|
}, "Heading"), /*#__PURE__*/React.createElement("option", {
|
||
|
value: "2"
|
||
|
}, "Subheading"), /*#__PURE__*/React.createElement("option", {
|
||
|
value: "0"
|
||
|
}, "Normal")), /*#__PURE__*/React.createElement("select", {
|
||
|
className: "ql-font"
|
||
|
}, /*#__PURE__*/React.createElement("option", null), /*#__PURE__*/React.createElement("option", {
|
||
|
value: "serif"
|
||
|
}), /*#__PURE__*/React.createElement("option", {
|
||
|
value: "monospace"
|
||
|
}))), /*#__PURE__*/React.createElement("span", {
|
||
|
className: "ql-formats"
|
||
|
}, /*#__PURE__*/React.createElement("button", {
|
||
|
type: "button",
|
||
|
className: "ql-bold",
|
||
|
"aria-label": "Bold"
|
||
|
}), /*#__PURE__*/React.createElement("button", {
|
||
|
type: "button",
|
||
|
className: "ql-italic",
|
||
|
"aria-label": "Italic"
|
||
|
}), /*#__PURE__*/React.createElement("button", {
|
||
|
type: "button",
|
||
|
className: "ql-underline",
|
||
|
"aria-label": "Underline"
|
||
|
})), /*#__PURE__*/React.createElement("span", {
|
||
|
className: "ql-formats"
|
||
|
}, /*#__PURE__*/React.createElement("select", {
|
||
|
className: "ql-color"
|
||
|
}), /*#__PURE__*/React.createElement("select", {
|
||
|
className: "ql-background"
|
||
|
})), /*#__PURE__*/React.createElement("span", {
|
||
|
className: "ql-formats"
|
||
|
}, /*#__PURE__*/React.createElement("button", {
|
||
|
type: "button",
|
||
|
className: "ql-list",
|
||
|
value: "ordered",
|
||
|
"aria-label": "Ordered List"
|
||
|
}), /*#__PURE__*/React.createElement("button", {
|
||
|
type: "button",
|
||
|
className: "ql-list",
|
||
|
value: "bullet",
|
||
|
"aria-label": "Unordered List"
|
||
|
}), /*#__PURE__*/React.createElement("select", {
|
||
|
className: "ql-align"
|
||
|
}, /*#__PURE__*/React.createElement("option", {
|
||
|
defaultValue: true
|
||
|
}), /*#__PURE__*/React.createElement("option", {
|
||
|
value: "center"
|
||
|
}), /*#__PURE__*/React.createElement("option", {
|
||
|
value: "right"
|
||
|
}), /*#__PURE__*/React.createElement("option", {
|
||
|
value: "justify"
|
||
|
}))), /*#__PURE__*/React.createElement("span", {
|
||
|
className: "ql-formats"
|
||
|
}, /*#__PURE__*/React.createElement("button", {
|
||
|
type: "button",
|
||
|
className: "ql-link",
|
||
|
"aria-label": "Insert Link"
|
||
|
}), /*#__PURE__*/React.createElement("button", {
|
||
|
type: "button",
|
||
|
className: "ql-image",
|
||
|
"aria-label": "Insert Image"
|
||
|
}), /*#__PURE__*/React.createElement("button", {
|
||
|
type: "button",
|
||
|
className: "ql-code-block",
|
||
|
"aria-label": "Insert Code Block"
|
||
|
})), /*#__PURE__*/React.createElement("span", {
|
||
|
className: "ql-formats"
|
||
|
}, /*#__PURE__*/React.createElement("button", {
|
||
|
type: "button",
|
||
|
className: "ql-clean",
|
||
|
"aria-label": "Remove Styles"
|
||
|
})));
|
||
|
}
|
||
|
|
||
|
var content = /*#__PURE__*/React.createElement("div", {
|
||
|
ref: function ref(el) {
|
||
|
return _this2.editorElement = el;
|
||
|
},
|
||
|
className: "p-editor-content",
|
||
|
style: this.props.style
|
||
|
});
|
||
|
return /*#__PURE__*/React.createElement("div", {
|
||
|
id: this.props.id,
|
||
|
className: containerClass
|
||
|
}, toolbarHeader, content);
|
||
|
}
|
||
|
}]);
|
||
|
|
||
|
return Editor;
|
||
|
}(Component);
|
||
|
|
||
|
_defineProperty(Editor, "defaultProps", {
|
||
|
id: null,
|
||
|
value: null,
|
||
|
style: null,
|
||
|
className: null,
|
||
|
placeholder: null,
|
||
|
readOnly: false,
|
||
|
modules: null,
|
||
|
formats: null,
|
||
|
theme: 'snow',
|
||
|
showHeader: true,
|
||
|
headerTemplate: null,
|
||
|
onTextChange: null,
|
||
|
onSelectionChange: null,
|
||
|
onLoad: null
|
||
|
});
|
||
|
|
||
|
export { Editor };
|