UNPKG

@makeen.io/material-ui-kit

Version:
18 lines (17 loc) 2.15 kB
import _classCallCheck from "@babel/runtime/helpers/classCallCheck";import _createClass from "@babel/runtime/helpers/createClass";import _get from "@babel/runtime/helpers/get";import _inherits from "@babel/runtime/helpers/inherits";import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";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;}}import { Quill } from "react-quill"; var Inline = Quill.import("blots/inline");var AppInlineEmbed = /*#__PURE__*/function (_Inline) {_inherits(AppInlineEmbed, _Inline);var _super = _createSuper(AppInlineEmbed);function AppInlineEmbed() {_classCallCheck(this, AppInlineEmbed);return _super.apply(this, arguments);}_createClass(AppInlineEmbed, null, [{ key: "create", value: function create( value) { var node = _get(_getPrototypeOf(AppInlineEmbed), "create", this).call(this, value); node.setAttribute("contenteditable", "false"); node.innerHTML = this.transformValue(value); return node; } }, { key: "transformValue", value: function transformValue( value) { var handleArr = value.split("\n"); handleArr = handleArr.map(function (e) {return e.replace(/^[\s]+/, "").replace(/[\s]+$/, "");}); return handleArr.join(""); } }]);return AppInlineEmbed;}(Inline); AppInlineEmbed.blotName = "AppInlineEmbed"; export default AppInlineEmbed; //# sourceMappingURL=appInlineEmbed.js.map