/** * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** * @module restricted-editing/standardeditingmodeediting */ import Plugin from '@ckeditor/ckeditor5-core/src/plugin'; import RestrictedEditingExceptionCommand from './restrictededitingexceptioncommand'; /** * The Standard Editing Mode editing feature. * * * It introduces the `restrictedEditingException` text attributes that is rendered as * `` with the `restricted-editing-exception` CSS class. * * It registers the `'restrictedEditingException'` command. * * @extends module:core/plugin~Plugin */ export default class StandardEditingModeEditing extends Plugin { /** * @inheritDoc */ static get pluginName() { return 'StandardEditingModeEditing'; } /** * @inheritDoc */ init() { const editor = this.editor; editor.model.schema.extend( '$text', { allowAttributes: [ 'restrictedEditingException' ] } ); editor.conversion.for( 'upcast' ).elementToAttribute( { model: 'restrictedEditingException', view: { name: 'span', classes: 'restricted-editing-exception' } } ); editor.conversion.for( 'downcast' ).attributeToElement( { model: 'restrictedEditingException', view: ( modelAttributeValue, viewWriter ) => { if ( modelAttributeValue ) { // Make the restricted editing outer-most in the view. return viewWriter.createAttributeElement( 'span', { class: 'restricted-editing-exception' }, { priority: -10 } ); } } } ); editor.commands.add( 'restrictedEditingException', new RestrictedEditingExceptionCommand( editor ) ); editor.editing.view.change( writer => { for ( const root of editor.editing.view.document.roots ) { writer.addClass( 'ck-restricted-editing_mode_standard', root ); } } ); } }