@ckeditor/ckeditor5-basic-styles
Version:
Basic styles feature for CKEditor 5.
48 lines (47 loc) • 1.5 kB
JavaScript
/**
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
/**
* @module basic-styles/strikethrough/strikethroughui
*/
import { Plugin } from 'ckeditor5/src/core.js';
import { IconStrikethrough } from 'ckeditor5/src/icons.js';
import { ButtonView, MenuBarMenuListItemButtonView } from 'ckeditor5/src/ui.js';
import { getButtonCreator } from '../utils.js';
const STRIKETHROUGH = 'strikethrough';
/**
* The strikethrough UI feature. It introduces the Strikethrough button.
*/
export class StrikethroughUI extends Plugin {
/**
* @inheritDoc
*/
static get pluginName() {
return 'StrikethroughUI';
}
/**
* @inheritDoc
*/
static get isOfficialPlugin() {
return true;
}
/**
* @inheritDoc
*/
init() {
const editor = this.editor;
const t = editor.locale.t;
const createButton = getButtonCreator({
editor,
commandName: STRIKETHROUGH,
plugin: this,
icon: IconStrikethrough,
keystroke: 'CTRL+SHIFT+X',
label: t('Strikethrough')
});
// Add strikethrough button to feature components.
editor.ui.componentFactory.add(STRIKETHROUGH, () => createButton(ButtonView));
editor.ui.componentFactory.add('menuBar:' + STRIKETHROUGH, () => createButton(MenuBarMenuListItemButtonView));
}
}