UNPKG

jodit

Version:

Jodit is awesome and usefully wysiwyg editor with filebrowser

46 lines (38 loc) 1.17 kB
/*! * Jodit Editor (https://xdsoft.net/jodit/) * Licensed under GNU General Public License version 2 or later or a commercial license or MIT; * For GPL see LICENSE-GPL.txt in the project root for license information. * For MIT see LICENSE-MIT.txt in the project root for license information. * For commercial licenses see https://xdsoft.net/jodit/commercial/ * Copyright (c) 2013-2019 Valeriy Chupurnov. All rights reserved. https://xdsoft.net */ import { IViewBased } from '../types/view'; import { IComponent } from '../types/types'; import { isJoditObject } from './helpers/checker/isJoditObject'; export abstract class Component<T extends IViewBased = IViewBased> implements IComponent<T> { public jodit: T; private __isDestructed = false; /** * Editor was destructed * * @type {boolean} */ get isDestructed(): boolean { return this.__isDestructed; } destruct(): any { if (this.jodit) { (<any>this.jodit) = undefined; } this.__isDestructed = true; } constructor(jodit?: T) { if (jodit && jodit instanceof Component) { this.jodit = jodit; if (isJoditObject(jodit)) { jodit.components.push(this); } } } }