ckeditor5-image-upload-base64
Version:
The development environment of CKEditor 5 – the best browser-based rich text editor.
54 lines (44 loc) • 1.43 kB
JavaScript
/**
* @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
/**
* @module restricted-editing/standardeditingmodeui
*/
import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview';
import unlockIcon from '../theme/icons/contentunlock.svg';
/**
* The standard editing mode UI feature.
*
* It introduces the `'restrictedEditingException'` button that marks text as unrestricted for editing.
*
* @extends module:core/plugin~Plugin
*/
export default class StandardEditingModeUI extends Plugin {
/**
* @inheritDoc
*/
init() {
const editor = this.editor;
const t = editor.t;
editor.ui.componentFactory.add( 'restrictedEditingException', locale => {
const command = editor.commands.get( 'restrictedEditingException' );
const view = new ButtonView( locale );
view.set( {
icon: unlockIcon,
tooltip: true,
isToggleable: true
} );
view.bind( 'isOn', 'isEnabled' ).to( command, 'value', 'isEnabled' );
view.bind( 'label' ).to( command, 'value', value => {
return value ? t( 'Disable editing' ) : t( 'Enable editing' );
} );
this.listenTo( view, 'execute', () => {
editor.execute( 'restrictedEditingException' );
editor.editing.view.focus();
} );
return view;
} );
}
}