@ckeditor/ckeditor5-basic-styles
Version:
Basic styles feature for CKEditor 5.
49 lines (48 loc) • 1.42 kB
JavaScript
/**
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
/**
* @module basic-styles/code/codeui
*/
import { Plugin } from 'ckeditor5/src/core';
import { ButtonView } from 'ckeditor5/src/ui';
import codeIcon from '../../theme/icons/code.svg';
import '../../theme/code.css';
const CODE = 'code';
/**
* The code UI feature. It introduces the Code button.
*/
export default class CodeUI extends Plugin {
/**
* @inheritDoc
*/
static get pluginName() {
return 'CodeUI';
}
/**
* @inheritDoc
*/
init() {
const editor = this.editor;
const t = editor.t;
// Add code button to feature components.
editor.ui.componentFactory.add(CODE, locale => {
const command = editor.commands.get(CODE);
const view = new ButtonView(locale);
view.set({
label: t('Code'),
icon: codeIcon,
tooltip: true,
isToggleable: true
});
view.bind('isOn', 'isEnabled').to(command, 'value', 'isEnabled');
// Execute command.
this.listenTo(view, 'execute', () => {
editor.execute(CODE);
editor.editing.view.focus();
});
return view;
});
}
}