UNPKG

@ckeditor/ckeditor5-basic-styles

Version:

Basic styles feature for CKEditor 5.

48 lines (47 loc) 1.43 kB
/** * @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/underline/underlineui */ import { Plugin } from 'ckeditor5/src/core.js'; import { IconUnderline } from 'ckeditor5/src/icons.js'; import { ButtonView, MenuBarMenuListItemButtonView } from 'ckeditor5/src/ui.js'; import { getButtonCreator } from '../utils.js'; const UNDERLINE = 'underline'; /** * The underline UI feature. It introduces the Underline button. */ export class UnderlineUI extends Plugin { /** * @inheritDoc */ static get pluginName() { return 'UnderlineUI'; } /** * @inheritDoc */ static get isOfficialPlugin() { return true; } /** * @inheritDoc */ init() { const editor = this.editor; const t = editor.locale.t; const createButton = getButtonCreator({ editor, commandName: UNDERLINE, plugin: this, icon: IconUnderline, label: t('Underline'), keystroke: 'CTRL+U' }); // Add bold button to feature components. editor.ui.componentFactory.add(UNDERLINE, () => createButton(ButtonView)); editor.ui.componentFactory.add('menuBar:' + UNDERLINE, () => createButton(MenuBarMenuListItemButtonView)); } }