UNPKG

@ckeditor/ckeditor5-editor-inline

Version:

Inline editor implementation for CKEditor 5.

491 lines (486 loc) 19.5 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 */ import { ElementApiMixin, Editor, secureSourceElement, attachToForm } from '@ckeditor/ckeditor5-core/dist/index.js'; import { ResizeObserver, toUnit, Rect, CKEditorError, getDataFromElement } from '@ckeditor/ckeditor5-utils/dist/index.js'; import { EditorUI, normalizeToolbarConfig, EditorUIView, ToolbarView, MenuBarView, BalloonPanelView, InlineEditableUIView } from '@ckeditor/ckeditor5-ui/dist/index.js'; import { enablePlaceholder } from '@ckeditor/ckeditor5-engine/dist/index.js'; import { isElement as isElement$1 } from 'es-toolkit/compat'; /** * The inline editor UI class. * * @extends module:ui/editorui/editorui~EditorUI */ class InlineEditorUI extends EditorUI { /** * The main (top–most) view of the editor UI. */ view; /** * A normalized `config.toolbar` object. */ _toolbarConfig; /** * Creates an instance of the inline editor UI class. * * @param editor The editor instance. * @param view The view of the UI. */ constructor(editor, view){ super(editor); this.view = view; this._toolbarConfig = normalizeToolbarConfig(editor.config.get('toolbar')); } /** * @inheritDoc */ get element() { return this.view.editable.element; } /** * Initializes the UI. */ init() { const editor = this.editor; const view = this.view; const editingView = editor.editing.view; const editable = view.editable; const editingRoot = editingView.document.getRoot(); // The editable UI and editing root should share the same name. Then name is used // to recognize the particular editable, for instance in ARIA attributes. editable.name = editingRoot.rootName; view.render(); // The editable UI element in DOM is available for sure only after the editor UI view has been rendered. // But it can be available earlier if a DOM element has been passed to InlineEditor.create(). const editableElement = editable.element; // Register the editable UI view in the editor. A single editor instance can aggregate multiple // editable areas (roots) but the inline editor has only one. this.setEditableElement(editable.name, editableElement); // Let the editable UI element respond to the changes in the global editor focus // tracker. It has been added to the same tracker a few lines above but, in reality, there are // many focusable areas in the editor, like balloons, toolbars or dropdowns and as long // as they have focus, the editable should act like it is focused too (although technically // it isn't), e.g. by setting the proper CSS class, visually announcing focus to the user. // Doing otherwise will result in editable focus styles disappearing, once e.g. the // toolbar gets focused. editable.bind('isFocused').to(this.focusTracker); // Bind the editable UI element to the editing view, making it an end– and entry–point // of the editor's engine. This is where the engine meets the UI. editingView.attachDomRoot(editableElement); this._initPlaceholder(); this._initToolbar(); if (view.menuBarView) { this.initMenuBar(view.menuBarView); } this.fire('ready'); } /** * @inheritDoc */ destroy() { super.destroy(); const view = this.view; const editingView = this.editor.editing.view; if (editingView.getDomRoot(view.editable.name)) { editingView.detachDomRoot(view.editable.name); } view.destroy(); } /** * Initializes the inline editor toolbar and its panel. */ _initToolbar() { const editor = this.editor; const view = this.view; const editableElement = view.editable.element; const toolbar = view.toolbar; // Set–up the view#panel. view.panel.bind('isVisible').to(this.focusTracker, 'isFocused'); view.bind('viewportTopOffset').to(this, 'viewportOffset', ({ visualTop })=>visualTop || 0); // https://github.com/ckeditor/ckeditor5-editor-inline/issues/4 view.listenTo(editor.ui, 'update', ()=>{ // Don't pin if the panel is not already visible. It prevents the panel // showing up when there's no focus in the UI. if (view.panel.isVisible) { view.panel.pin({ target: editableElement, positions: view.panelPositions }); } }); toolbar.fillFromConfig(this._toolbarConfig, this.componentFactory); // Register the toolbar so it becomes available for Alt+F10 and Esc navigation. this.addToolbar(toolbar); } /** * Enable the placeholder text on the editing root. */ _initPlaceholder() { const editor = this.editor; const editingView = editor.editing.view; const editingRoot = editingView.document.getRoot(); const placeholder = editor.config.get('placeholder'); if (placeholder) { const placeholderText = typeof placeholder === 'string' ? placeholder : placeholder[editingRoot.rootName]; if (placeholderText) { editingRoot.placeholder = placeholderText; } } enablePlaceholder({ view: editingView, element: editingRoot, isDirectHost: false, keepOnFocus: true }); } } const toPx = /* #__PURE__ */ toUnit('px'); /** * Inline editor UI view. Uses an nline editable and a floating toolbar. */ class InlineEditorUIView extends EditorUIView { /** * A floating toolbar view instance. */ toolbar; /** * A balloon panel view instance. */ panel; /** * A set of positioning functions used by the {@link #panel} to float around * {@link #element editableElement}. * * The positioning functions are as follows: * * * West: * * ``` * [ Panel ] * +------------------+ * | #editableElement | * +------------------+ * * +------------------+ * | #editableElement | * |[ Panel ] | * | | * +------------------+ * * +------------------+ * | #editableElement | * +------------------+ * [ Panel ] * ``` * * * East: * * ``` * [ Panel ] * +------------------+ * | #editableElement | * +------------------+ * * +------------------+ * | #editableElement | * | [ Panel ]| * | | * +------------------+ * * +------------------+ * | #editableElement | * +------------------+ * [ Panel ] * ``` * * See: {@link module:utils/dom/position~Options#positions}. */ panelPositions; /** * Editable UI view. */ editable; /** * An instance of the resize observer that helps dynamically determine the geometry of the toolbar * and manage items that do not fit into a single row. * * **Note:** Created in {@link #render}. */ _resizeObserver; /** * Creates an instance of the inline editor UI view. * * @param locale The {@link module:core/editor/editor~Editor#locale} instance. * @param editingView The editing view instance this view is related to. * @param editableElement The editable element. If not specified, it will be automatically created by * {@link module:ui/editableui/editableuiview~EditableUIView}. Otherwise, the given element will be used. * @param options Configuration options for the view instance. * @param options.shouldToolbarGroupWhenFull When set `true` enables automatic items grouping * in the main {@link module:editor-inline/inlineeditoruiview~InlineEditorUIView#toolbar toolbar}. * See {@link module:ui/toolbar/toolbarview~ToolbarOptions#shouldGroupWhenFull} to learn more. * @param options.label When set, this value will be used as an accessible `aria-label` of the * {@link module:ui/editableui/editableuiview~EditableUIView editable view}. */ constructor(locale, editingView, editableElement, options = {}){ super(locale); this.toolbar = new ToolbarView(locale, { shouldGroupWhenFull: options.shouldToolbarGroupWhenFull, isFloating: true }); if (options.useMenuBar) { this.menuBarView = new MenuBarView(locale); } this.set('viewportTopOffset', 0); this.panel = new BalloonPanelView(locale); this.panelPositions = this._getPanelPositions(); this.panel.extendTemplate({ attributes: { class: 'ck-toolbar-container' } }); this.editable = new InlineEditableUIView(locale, editingView, editableElement, { label: options.label }); this._resizeObserver = null; } /** * @inheritDoc */ render() { super.render(); this.body.add(this.panel); this.registerChild(this.editable); if (this.menuBarView) { // Set toolbar as a child of a stickyPanel and makes toolbar sticky. this.panel.content.addMany([ this.menuBarView, this.toolbar ]); } else { this.panel.content.add(this.toolbar); } const options = this.toolbar.options; // Set toolbar's max-width on the initialization and update it on the editable resize, // if 'shouldToolbarGroupWhenFull' in config is set to 'true'. if (options.shouldGroupWhenFull) { const editableElement = this.editable.element; this._resizeObserver = new ResizeObserver(editableElement, ()=>{ this.toolbar.maxWidth = toPx(new Rect(editableElement).width); }); } } /** * @inheritDoc */ destroy() { super.destroy(); if (this._resizeObserver) { this._resizeObserver.destroy(); } } /** * Determines the panel top position of the {@link #panel} in {@link #panelPositions}. * * @param editableRect Rect of the {@link #element}. * @param panelRect Rect of the {@link #panel}. */ _getPanelPositionTop(editableRect, panelRect) { let top; if (editableRect.top > panelRect.height + this.viewportTopOffset) { top = editableRect.top - panelRect.height; } else if (editableRect.bottom > panelRect.height + this.viewportTopOffset + 50) { top = this.viewportTopOffset; } else { top = editableRect.bottom; } return top; } /** * Returns the positions for {@link #panelPositions}. * * See: {@link module:utils/dom/position~Options#positions}. */ _getPanelPositions() { const positions = [ (editableRect, panelRect)=>{ return { top: this._getPanelPositionTop(editableRect, panelRect), left: editableRect.left, name: 'toolbar_west', config: { withArrow: false } }; }, (editableRect, panelRect)=>{ return { top: this._getPanelPositionTop(editableRect, panelRect), left: editableRect.left + editableRect.width - panelRect.width, name: 'toolbar_east', config: { withArrow: false } }; } ]; if (this.locale.uiLanguageDirection === 'ltr') { return positions; } else { return positions.reverse(); } } } /** * The inline editor implementation. It uses an inline editable and a floating toolbar. * See the {@glink examples/builds/inline-editor demo}. * * In order to create a inline editor instance, use the static * {@link module:editor-inline/inlineeditor~InlineEditor.create `InlineEditor.create()`} method. */ class InlineEditor extends /* #__PURE__ */ ElementApiMixin(Editor) { /** * @inheritDoc */ static get editorName() { return 'InlineEditor'; } /** * @inheritDoc */ ui; /** * Creates an instance of the inline editor. * * **Note:** Do not use the constructor to create editor instances. Use the static * {@link module:editor-inline/inlineeditor~InlineEditor.create `InlineEditor.create()`} method instead. * * @param sourceElementOrData The DOM element that will be the source for the created editor * (on which the editor will be initialized) or initial data for the editor. For more information see * {@link module:editor-inline/inlineeditor~InlineEditor.create `InlineEditor.create()`}. * @param config The editor configuration. */ constructor(sourceElementOrData, config = {}){ // If both `config.initialData` and initial data parameter in `create()` are set, then throw. if (!isElement(sourceElementOrData) && config.initialData !== undefined) { // Documented in core/editor/editorconfig.jsdoc. // eslint-disable-next-line ckeditor5-rules/ckeditor-error-message throw new CKEditorError('editor-create-initial-data', null); } super(config); this.config.define('menuBar.isVisible', false); if (this.config.get('initialData') === undefined) { this.config.set('initialData', getInitialData(sourceElementOrData)); } this.model.document.createRoot(); if (isElement(sourceElementOrData)) { this.sourceElement = sourceElementOrData; secureSourceElement(this, sourceElementOrData); } const shouldToolbarGroupWhenFull = !this.config.get('toolbar.shouldNotGroupWhenFull'); const menuBarConfig = this.config.get('menuBar'); const view = new InlineEditorUIView(this.locale, this.editing.view, this.sourceElement, { shouldToolbarGroupWhenFull, useMenuBar: menuBarConfig.isVisible, label: this.config.get('label') }); this.ui = new InlineEditorUI(this, view); attachToForm(this); } /** * Destroys the editor instance, releasing all resources used by it. * * Updates the original editor element with the data if the * {@link module:core/editor/editorconfig~EditorConfig#updateSourceElementOnDestroy `updateSourceElementOnDestroy`} * configuration option is set to `true`. */ destroy() { // Cache the data, then destroy. // It's safe to assume that the model->view conversion will not work after super.destroy(). const data = this.getData(); this.ui.destroy(); return super.destroy().then(()=>{ if (this.sourceElement) { this.updateSourceElement(data); } }); } /** * Creates a new inline editor instance. * * There are three general ways how the editor can be initialized. * * # Using an existing DOM element (and loading data from it) * * You can initialize the editor using an existing DOM element: * * ```ts * InlineEditor * .create( document.querySelector( '#editor' ) ) * .then( editor => { * console.log( 'Editor was initialized', editor ); * } ) * .catch( err => { * console.error( err.stack ); * } ); * ``` * * The element's content will be used as the editor data and the element will become the editable element. * * # Creating a detached editor * * Alternatively, you can initialize the editor by passing the initial data directly as a `String`. * In this case, the editor will render an element that must be inserted into the DOM for the editor to work properly: * * ```ts * InlineEditor * .create( '<p>Hello world!</p>' ) * .then( editor => { * console.log( 'Editor was initialized', editor ); * * // Initial data was provided so the editor UI element needs to be added manually to the DOM. * document.body.appendChild( editor.ui.element ); * } ) * .catch( err => { * console.error( err.stack ); * } ); * ``` * * This lets you dynamically append the editor to your web page whenever it is convenient for you. You may use this method if your * web page content is generated on the client side and the DOM structure is not ready at the moment when you initialize the editor. * * # Using an existing DOM element (and data provided in `config.initialData`) * * You can also mix these two ways by providing a DOM element to be used and passing the initial data through the configuration: * * ```ts * InlineEditor * .create( document.querySelector( '#editor' ), { * initialData: '<h2>Initial data</h2><p>Foo bar.</p>' * } ) * .then( editor => { * console.log( 'Editor was initialized', editor ); * } ) * .catch( err => { * console.error( err.stack ); * } ); * ``` * * This method can be used to initialize the editor on an existing element with the specified content in case if your integration * makes it difficult to set the content of the source element. * * Note that an error will be thrown if you pass the initial data both as the first parameter and also in the configuration. * * # Configuring the editor * * See the {@link module:core/editor/editorconfig~EditorConfig editor configuration documentation} to learn more about * customizing plugins, toolbar and more. * * @param sourceElementOrData The DOM element that will be the source for the created editor * or the editor's initial data. * * If a DOM element is passed, its content will be automatically loaded to the editor upon initialization. * The editor data will be set back to the original element once the editor is destroyed only if the * {@link module:core/editor/editorconfig~EditorConfig#updateSourceElementOnDestroy updateSourceElementOnDestroy} * option is set to `true`. * * If the initial data is passed, a detached editor will be created. In this case you need to insert it into the DOM manually. * It is available under the {@link module:editor-inline/inlineeditorui~InlineEditorUI#element `editor.ui.element`} property. * * @param config The editor configuration. * @returns A promise resolved once the editor is ready. The promise resolves with the created editor instance. */ static create(sourceElementOrData, config = {}) { return new Promise((resolve)=>{ if (isElement(sourceElementOrData) && sourceElementOrData.tagName === 'TEXTAREA') { // Documented in core/editor/editor.js // eslint-disable-next-line ckeditor5-rules/ckeditor-error-message throw new CKEditorError('editor-wrong-element', null); } const editor = new this(sourceElementOrData, config); resolve(editor.initPlugins().then(()=>editor.ui.init()).then(()=>editor.data.init(editor.config.get('initialData'))).then(()=>editor.fire('ready')).then(()=>editor)); }); } } function getInitialData(sourceElementOrData) { return isElement(sourceElementOrData) ? getDataFromElement(sourceElementOrData) : sourceElementOrData; } function isElement(value) { return isElement$1(value); } export { InlineEditor }; //# sourceMappingURL=index.js.map