| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /**
- * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* globals document */
- import View from '../view.js';
- import Template from '../template.js';
- /**
- * The editor UI view class. Base class for the editor main views.
- *
- * See {@link ui.editorUI.EditorUI}.
- *
- * @memberOf ui.editorUI
- * @extends ui.View
- */
- export default class EditorUIView extends View {
- /**
- * Creates an instance of the editor UI view class.
- *
- * @param {utils.Locale} [locale] The {@link core.editor.Editor#locale editor's locale} instance.
- */
- constructor( locale ) {
- super( locale );
- this._createBodyRegion();
- /**
- * The element holding elements of the 'body' region.
- *
- * @private
- * @member {HTMLElement} ui.editorUI.EditorUIView#_bodyRegionContainer
- */
- }
- destroy() {
- this._bodyRegionContainer.remove();
- this._bodyRegionContainer = null;
- }
- /**
- * Creates and appends to `<body>` the 'body' region container.
- *
- * @private
- */
- _createBodyRegion() {
- const bodyElement = document.createElement( 'div' );
- document.body.appendChild( bodyElement );
- new Template( {
- attributes: {
- class: 'ck-body ck-reset_all'
- }
- } ).apply( bodyElement );
- this._bodyRegionContainer = bodyElement;
- this.register( 'body', () => bodyElement );
- }
- }
|