ckeditor5-image-upload-base64
Version:
The development environment of CKEditor 5 – the best browser-based rich text editor.
59 lines (48 loc) • 1.36 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 remove-format/removeformatui
*/
import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview';
import removeFormatIcon from '../theme/icons/remove-format.svg';
const REMOVE_FORMAT = 'removeFormat';
/**
* The remove format UI plugin. It registers the `'removeFormat'` button which can be
* used in the toolbar.
*
* @extends module:core/plugin~Plugin
*/
export default class RemoveFormatUI extends Plugin {
/**
* @inheritDoc
*/
static get pluginName() {
return 'RemoveFormatUI';
}
/**
* @inheritDoc
*/
init() {
const editor = this.editor;
const t = editor.t;
editor.ui.componentFactory.add( REMOVE_FORMAT, locale => {
const command = editor.commands.get( REMOVE_FORMAT );
const view = new ButtonView( locale );
view.set( {
label: t( 'Remove Format' ),
icon: removeFormatIcon,
tooltip: true
} );
view.bind( 'isOn', 'isEnabled' ).to( command, 'value', 'isEnabled' );
// Execute the command.
this.listenTo( view, 'execute', () => {
editor.execute( REMOVE_FORMAT );
editor.editing.view.focus();
} );
return view;
} );
}
}