UNPKG

@ckeditor/ckeditor5-image

Version:

Image feature for CKEditor 5.

58 lines (57 loc) 2.18 kB
/** * @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 image/imagetoolbar */ import { Plugin } from 'ckeditor5/src/core'; import { WidgetToolbarRepository } from 'ckeditor5/src/widget'; import ImageUtils from './imageutils'; import { isObject } from 'lodash-es'; /** * The image toolbar plugin. It creates and manages the image toolbar (the toolbar displayed when an image is selected). * * For an overview, check the {@glink features/images/images-overview#image-contextual-toolbar image contextual toolbar} documentation. * * Instances of toolbar components (e.g. buttons) are created using the editor's * {@link module:ui/componentfactory~ComponentFactory component factory} * based on the {@link module:image/imageconfig~ImageConfig#toolbar `image.toolbar` configuration option}. * * The toolbar uses the {@link module:ui/panel/balloon/contextualballoon~ContextualBalloon}. */ export default class ImageToolbar extends Plugin { /** * @inheritDoc */ static get requires() { return [WidgetToolbarRepository, ImageUtils]; } /** * @inheritDoc */ static get pluginName() { return 'ImageToolbar'; } /** * @inheritDoc */ afterInit() { const editor = this.editor; const t = editor.t; const widgetToolbarRepository = editor.plugins.get(WidgetToolbarRepository); const imageUtils = editor.plugins.get('ImageUtils'); widgetToolbarRepository.register('image', { ariaLabel: t('Image toolbar'), items: normalizeDeclarativeConfig(editor.config.get('image.toolbar') || []), getRelatedElement: selection => imageUtils.getClosestSelectedImageWidget(selection) }); } } /** * Convert the dropdown definitions to their keys registered in the ComponentFactory. * The registration precess should be handled by the plugin which handles the UI of a particular feature. */ function normalizeDeclarativeConfig(config) { return config.map(item => isObject(item) ? item.name : item); }