UNPKG

angular-froala-wysiwyg-2.7.1

Version:

Angular 2 and Angular 4 bindings for Froala WYSIWYG HTML rich text editor

568 lines (522 loc) 26.3 kB
(function webpackUniversalModuleDefinition(root, factory) { if(typeof exports === 'object' && typeof module === 'object') module.exports = factory(require("@angular/core"), require("@angular/forms")); else if(typeof define === 'function' && define.amd) define(["@angular/core", "@angular/forms"], factory); else if(typeof exports === 'object') exports["angular-froala-wysiwyg.umd"] = factory(require("@angular/core"), require("@angular/forms")); else root["angular-froala-wysiwyg.umd"] = factory(root["@angular/core"], root["@angular/forms"]); })(this, function(__WEBPACK_EXTERNAL_MODULE_0__, __WEBPACK_EXTERNAL_MODULE_8__) { return /******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ return installedModules[moduleId].exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = installedModules[moduleId] = { /******/ i: moduleId, /******/ l: false, /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); /******/ /******/ // Flag the module as loaded /******/ module.l = true; /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /******/ /******/ // expose the modules object (__webpack_modules__) /******/ __webpack_require__.m = modules; /******/ /******/ // expose the module cache /******/ __webpack_require__.c = installedModules; /******/ /******/ // identity function for calling harmony imports with the correct context /******/ __webpack_require__.i = function(value) { return value; }; /******/ /******/ // define getter function for harmony exports /******/ __webpack_require__.d = function(exports, name, getter) { /******/ if(!__webpack_require__.o(exports, name)) { /******/ Object.defineProperty(exports, name, { /******/ configurable: false, /******/ enumerable: true, /******/ get: getter /******/ }); /******/ } /******/ }; /******/ /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function getDefault() { return module['default']; } : /******/ function getModuleExports() { return module; }; /******/ __webpack_require__.d(getter, 'a', getter); /******/ return getter; /******/ }; /******/ /******/ // Object.prototype.hasOwnProperty.call /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; /******/ /******/ // __webpack_public_path__ /******/ __webpack_require__.p = "/"; /******/ /******/ // Load entry module and return exports /******/ return __webpack_require__(__webpack_require__.s = 6); /******/ }) /************************************************************************/ /******/ ([ /* 0 */ /***/ (function(module, exports) { module.exports = __WEBPACK_EXTERNAL_MODULE_0__; /***/ }), /* 1 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__editor_directive__ = __webpack_require__(3); /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return __WEBPACK_IMPORTED_MODULE_0__editor_directive__["a"]; }); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__editor_module__ = __webpack_require__(5); /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return __WEBPACK_IMPORTED_MODULE_1__editor_module__["a"]; }); /***/ }), /* 2 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__view_directive__ = __webpack_require__(4); /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return __WEBPACK_IMPORTED_MODULE_0__view_directive__["a"]; }); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__view_module__ = __webpack_require__(7); /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return __WEBPACK_IMPORTED_MODULE_1__view_module__["a"]; }); /***/ }), /* 3 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__angular_core__); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__angular_forms__ = __webpack_require__(8); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__angular_forms___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__angular_forms__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return FroalaEditorDirective; }); var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; var FroalaEditorDirective = (function () { function FroalaEditorDirective(el, zone) { this.zone = zone; // editor options this._opts = { immediateAngularModelUpdate: false, angularIgnoreAttrs: null }; this.SPECIAL_TAGS = ['img', 'button', 'input', 'a']; this.INNER_HTML_ATTR = 'innerHTML'; this._hasSpecialTag = false; this._listeningEvents = []; this._editorInitialized = false; this._oldModel = null; // Begin ControlValueAccesor methods. this.onChange = function (_) { }; this.onTouched = function () { }; // froalaModel directive as output: update model if editor contentChanged this.froalaModelChange = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["EventEmitter"](); // froalaInit directive as output: send manual editor initialization this.froalaInit = new __WEBPACK_IMPORTED_MODULE_0__angular_core__["EventEmitter"](); var element = el.nativeElement; // check if the element is a special tag if (this.SPECIAL_TAGS.indexOf(element.tagName.toLowerCase()) != -1) { this._hasSpecialTag = true; } // jquery wrap and store element this._$element = $(element); this.zone = zone; } FroalaEditorDirective_1 = FroalaEditorDirective; // Form model content changed. FroalaEditorDirective.prototype.writeValue = function (content) { this.updateEditor(content); }; FroalaEditorDirective.prototype.registerOnChange = function (fn) { this.onChange = fn; }; FroalaEditorDirective.prototype.registerOnTouched = function (fn) { this.onTouched = fn; }; Object.defineProperty(FroalaEditorDirective.prototype, "froalaEditor", { // End ControlValueAccesor methods. // froalaEditor directive as input: store the editor options set: function (opts) { this._opts = opts || this._opts; }, enumerable: true, configurable: true }); Object.defineProperty(FroalaEditorDirective.prototype, "froalaModel", { // froalaModel directive as input: store initial editor content set: function (content) { this.updateEditor(content); }, enumerable: true, configurable: true }); // Update editor with model contents. FroalaEditorDirective.prototype.updateEditor = function (content) { if (JSON.stringify(this._oldModel) == JSON.stringify(content)) { return; } this._model = content; if (this._editorInitialized) { this.setContent(); } }; // update model if editor contentChanged FroalaEditorDirective.prototype.updateModel = function () { var _this = this; this.zone.run(function () { var modelContent = null; if (_this._hasSpecialTag) { var attributeNodes = _this._$element[0].attributes; var attrs = {}; for (var i = 0; i < attributeNodes.length; i++) { var attrName = attributeNodes[i].name; if (_this._opts.angularIgnoreAttrs && _this._opts.angularIgnoreAttrs.indexOf(attrName) != -1) { continue; } attrs[attrName] = attributeNodes[i].value; } if (_this._$element[0].innerHTML) { attrs[_this.INNER_HTML_ATTR] = _this._$element[0].innerHTML; } modelContent = attrs; } else { var returnedHtml = _this._$element.froalaEditor('html.get'); if (typeof returnedHtml === 'string') { modelContent = returnedHtml; } } _this._oldModel = modelContent; // Update froalaModel. _this.froalaModelChange.emit(modelContent); // Update form model. _this.onChange(modelContent); }); }; // register event on jquery element FroalaEditorDirective.prototype.registerEvent = function (element, eventName, callback) { if (!element || !eventName || !callback) { return; } this._listeningEvents.push(eventName); element.on(eventName, callback); }; FroalaEditorDirective.prototype.initListeners = function () { var self = this; // bind contentChange and keyup event to froalaModel this.registerEvent(this._$element, 'froalaEditor.contentChanged', function () { setTimeout(function () { self.updateModel(); }, 0); }); if (this._opts.immediateAngularModelUpdate) { this.registerEvent(this._editor, 'keyup', function () { setTimeout(function () { self.updateModel(); }, 0); }); } }; // register events from editor options FroalaEditorDirective.prototype.registerFroalaEvents = function () { if (!this._opts.events) { return; } for (var eventName in this._opts.events) { if (this._opts.events.hasOwnProperty(eventName)) { this.registerEvent(this._$element, eventName, this._opts.events[eventName]); } } }; FroalaEditorDirective.prototype.createEditor = function () { var _this = this; if (this._editorInitialized) { return; } this.setContent(true); // Registering events before initializing the editor will bind the initialized event correctly. this.registerFroalaEvents(); // init editor this.zone.runOutsideAngular(function () { console.log(_this._opts); _this._editor = _this._$element.froalaEditor(_this._opts).data('froala.editor').$el; }); this.initListeners(); this._editorInitialized = true; }; FroalaEditorDirective.prototype.setHtml = function () { this._$element.froalaEditor('html.set', this._model || '', true); //This will reset the undo stack everytime the model changes externally. Can we fix this? this._$element.froalaEditor('undo.reset'); this._$element.froalaEditor('undo.saveStep'); }; FroalaEditorDirective.prototype.setContent = function (firstTime) { if (firstTime === void 0) { firstTime = false; } var self = this; // set initial content if (this._model || this._model == '') { this._oldModel = this._model; if (this._hasSpecialTag) { var tags = this._model; // add tags on element if (tags) { for (var attr in tags) { if (tags.hasOwnProperty(attr) && attr != this.INNER_HTML_ATTR) { this._$element.attr(attr, tags[attr]); } } if (tags.hasOwnProperty(this.INNER_HTML_ATTR)) { this._$element[0].innerHTML = tags[this.INNER_HTML_ATTR]; } } } else { if (firstTime) { this.registerEvent(this._$element, 'froalaEditor.initialized', function () { self.setHtml(); }); } else { self.setHtml(); } } } }; FroalaEditorDirective.prototype.destroyEditor = function () { if (this._editorInitialized) { this._$element.off(this._listeningEvents.join(" ")); this._editor.off('keyup'); this._$element.froalaEditor('destroy'); this._listeningEvents.length = 0; this._editorInitialized = false; } }; FroalaEditorDirective.prototype.getEditor = function () { if (this._$element) { return this._$element.froalaEditor.bind(this._$element); } return null; }; // send manual editor initialization FroalaEditorDirective.prototype.generateManualController = function () { var self = this; var controls = { initialize: this.createEditor.bind(this), destroy: this.destroyEditor.bind(this), getEditor: this.getEditor.bind(this), }; this.froalaInit.emit(controls); }; // TODO not sure if ngOnInit is executed after @inputs FroalaEditorDirective.prototype.ngOnInit = function () { // check if output froalaInit is present. Maybe observers is private and should not be used?? TODO how to better test that an output directive is present. if (!this.froalaInit.observers.length) { this.createEditor(); } else { this.generateManualController(); } }; FroalaEditorDirective.prototype.ngOnDestroy = function () { this.destroyEditor(); }; __decorate([ __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__angular_core__["Input"])(), __metadata("design:type", Object), __metadata("design:paramtypes", [Object]) ], FroalaEditorDirective.prototype, "froalaEditor", null); __decorate([ __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__angular_core__["Input"])(), __metadata("design:type", Object), __metadata("design:paramtypes", [Object]) ], FroalaEditorDirective.prototype, "froalaModel", null); __decorate([ __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__angular_core__["Output"])(), __metadata("design:type", __WEBPACK_IMPORTED_MODULE_0__angular_core__["EventEmitter"]) ], FroalaEditorDirective.prototype, "froalaModelChange", void 0); __decorate([ __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__angular_core__["Output"])(), __metadata("design:type", __WEBPACK_IMPORTED_MODULE_0__angular_core__["EventEmitter"]) ], FroalaEditorDirective.prototype, "froalaInit", void 0); FroalaEditorDirective = FroalaEditorDirective_1 = __decorate([ __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__angular_core__["Directive"])({ selector: '[froalaEditor]', providers: [{ provide: __WEBPACK_IMPORTED_MODULE_1__angular_forms__["NG_VALUE_ACCESSOR"], useExisting: __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__angular_core__["forwardRef"])(function () { return FroalaEditorDirective_1; }), multi: true }] }), __metadata("design:paramtypes", [__WEBPACK_IMPORTED_MODULE_0__angular_core__["ElementRef"], __WEBPACK_IMPORTED_MODULE_0__angular_core__["NgZone"]]) ], FroalaEditorDirective); return FroalaEditorDirective; var FroalaEditorDirective_1; }()); /***/ }), /* 4 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__angular_core__); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return FroalaViewDirective; }); var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; var FroalaViewDirective = (function () { function FroalaViewDirective(renderer, element) { this.renderer = renderer; this._element = element.nativeElement; } Object.defineProperty(FroalaViewDirective.prototype, "froalaView", { // update content model as it comes set: function (content) { this._element.innerHTML = content; }, enumerable: true, configurable: true }); FroalaViewDirective.prototype.ngAfterViewInit = function () { this.renderer.setElementClass(this._element, "fr-view", true); }; __decorate([ __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__angular_core__["Input"])(), __metadata("design:type", String), __metadata("design:paramtypes", [String]) ], FroalaViewDirective.prototype, "froalaView", null); FroalaViewDirective = __decorate([ __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__angular_core__["Directive"])({ selector: '[froalaView]' }), __metadata("design:paramtypes", [__WEBPACK_IMPORTED_MODULE_0__angular_core__["Renderer"], __WEBPACK_IMPORTED_MODULE_0__angular_core__["ElementRef"]]) ], FroalaViewDirective); return FroalaViewDirective; }()); /***/ }), /* 5 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__angular_core__); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__editor_directive__ = __webpack_require__(3); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return FroalaEditorModule; }); var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var FroalaEditorModule = (function () { function FroalaEditorModule() { } FroalaEditorModule_1 = FroalaEditorModule; FroalaEditorModule.forRoot = function () { return { ngModule: FroalaEditorModule_1, providers: [] }; }; FroalaEditorModule = FroalaEditorModule_1 = __decorate([ __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__angular_core__["NgModule"])({ declarations: [__WEBPACK_IMPORTED_MODULE_1__editor_directive__["a" /* FroalaEditorDirective */]], exports: [__WEBPACK_IMPORTED_MODULE_1__editor_directive__["a" /* FroalaEditorDirective */]] }) ], FroalaEditorModule); return FroalaEditorModule; var FroalaEditorModule_1; }()); /***/ }), /* 6 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; Object.defineProperty(__webpack_exports__, "__esModule", { value: true }); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__angular_core__); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__editor__ = __webpack_require__(1); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__view__ = __webpack_require__(2); /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "FroalaEditorDirective", function() { return __WEBPACK_IMPORTED_MODULE_1__editor__["a"]; }); /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "FroalaEditorModule", function() { return __WEBPACK_IMPORTED_MODULE_1__editor__["b"]; }); /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "FroalaViewDirective", function() { return __WEBPACK_IMPORTED_MODULE_2__view__["a"]; }); /* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "FroalaViewModule", function() { return __WEBPACK_IMPORTED_MODULE_2__view__["b"]; }); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "FERootModule", function() { return FERootModule; }); var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var MODULES = [ __WEBPACK_IMPORTED_MODULE_1__editor__["b" /* FroalaEditorModule */], __WEBPACK_IMPORTED_MODULE_2__view__["b" /* FroalaViewModule */] ]; var FERootModule = (function () { function FERootModule() { } FERootModule = __decorate([ __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__angular_core__["NgModule"])({ imports: [ __WEBPACK_IMPORTED_MODULE_1__editor__["b" /* FroalaEditorModule */].forRoot(), __WEBPACK_IMPORTED_MODULE_2__view__["b" /* FroalaViewModule */].forRoot() ], exports: MODULES }) ], FERootModule); return FERootModule; }()); /***/ }), /* 7 */ /***/ (function(module, __webpack_exports__, __webpack_require__) { "use strict"; /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core__ = __webpack_require__(0); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__angular_core__); /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__view_directive__ = __webpack_require__(4); /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return FroalaViewModule; }); var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var FroalaViewModule = (function () { function FroalaViewModule() { } FroalaViewModule_1 = FroalaViewModule; FroalaViewModule.forRoot = function () { return { ngModule: FroalaViewModule_1, providers: [] }; }; FroalaViewModule = FroalaViewModule_1 = __decorate([ __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__angular_core__["NgModule"])({ declarations: [__WEBPACK_IMPORTED_MODULE_1__view_directive__["a" /* FroalaViewDirective */]], exports: [__WEBPACK_IMPORTED_MODULE_1__view_directive__["a" /* FroalaViewDirective */]] }) ], FroalaViewModule); return FroalaViewModule; var FroalaViewModule_1; }()); /***/ }), /* 8 */ /***/ (function(module, exports) { module.exports = __WEBPACK_EXTERNAL_MODULE_8__; /***/ }) /******/ ]); }); //# sourceMappingURL=angular-froala-wysiwyg.umd.js.map