@ckeditor/ckeditor5-list
Version:
Ordered and unordered lists feature to CKEditor 5.
227 lines (226 loc) • 7.29 kB
TypeScript
/**
* @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 list/list/listediting
*/
import { Plugin, type Editor } from 'ckeditor5/src/core.js';
import type { DowncastWriter, Element, ViewElement, ViewAttributeElement, Writer } from 'ckeditor5/src/engine.js';
import { Delete } from 'ckeditor5/src/typing.js';
import { Enter } from 'ckeditor5/src/enter.js';
import ListUtils from './listutils.js';
import { ListBlocksIterable } from './utils/listwalker.js';
import { ClipboardPipeline } from 'ckeditor5/src/clipboard.js';
import '../../theme/documentlist.css';
import '../../theme/list.css';
export type ListType = 'numbered' | 'bulleted' | 'todo' | 'customNumbered' | 'customBulleted';
/**
* Map of model attributes applicable to list blocks.
*/
export interface ListItemAttributesMap {
listType?: ListType;
listIndent?: number;
listItemId?: string;
}
/**
* The editing part of the document-list feature. It handles creating, editing and removing lists and list items.
*/
export default class ListEditing extends Plugin {
/**
* The list of registered downcast strategies.
*/
private readonly _downcastStrategies;
/**
* @inheritDoc
*/
static get pluginName(): "ListEditing";
/**
* @inheritDoc
*/
static get isOfficialPlugin(): true;
/**
* @inheritDoc
*/
static get requires(): readonly [typeof Enter, typeof Delete, typeof ListUtils, typeof ClipboardPipeline];
/**
* @inheritDoc
*/
constructor(editor: Editor);
/**
* @inheritDoc
*/
init(): void;
/**
* @inheritDoc
*/
afterInit(): void;
/**
* Registers a downcast strategy.
*
* **Note**: Strategies must be registered in the `Plugin#init()` phase so that it can be applied
* in the `ListEditing#afterInit()`.
*
* @param strategy The downcast strategy to register.
*/
registerDowncastStrategy(strategy: DowncastStrategy): void;
/**
* Returns list of model attribute names that should affect downcast conversion.
*/
getListAttributeNames(): Array<string>;
/**
* Attaches the listener to the {@link module:engine/view/document~Document#event:delete} event and handles backspace/delete
* keys in and around document lists.
*/
private _setupDeleteIntegration;
/**
* Attaches a listener to the {@link module:engine/view/document~Document#event:enter} event and handles enter key press
* in document lists.
*/
private _setupEnterIntegration;
/**
* Attaches a listener to the {@link module:engine/view/document~Document#event:tab} event and handles tab key and tab+shift keys
* presses in document lists.
*/
private _setupTabIntegration;
/**
* Registers the conversion helpers for the document-list feature.
*/
private _setupConversion;
/**
* Registers model post-fixers.
*/
private _setupModelPostFixing;
/**
* Integrates the feature with the clipboard via {@link module:engine/model/model~Model#insertContent} and
* {@link module:engine/model/model~Model#getSelectedContent}.
*/
private _setupClipboardIntegration;
/**
* Informs editor accessibility features about keystrokes brought by the plugin.
*/
private _setupAccessibilityIntegration;
}
/**
* The attribute to attribute downcast strategy for UL, OL, LI elements.
*/
export interface AttributeDowncastStrategy {
/**
* The scope of the downcast (whether it applies to LI or OL/UL).
*/
scope: 'list' | 'item';
/**
* The model attribute name.
*/
attributeName: string;
/**
* Sets the property on the view element.
*/
setAttributeOnDowncast(writer: DowncastWriter, value: unknown, element: ViewElement): void;
}
/**
* The custom marker downcast strategy.
*/
export interface ItemMarkerDowncastStrategy {
/**
* The scope of the downcast.
*/
scope: 'itemMarker';
/**
* The model attribute name.
*/
attributeName: string;
/**
* Creates a view element for a custom item marker.
*/
createElement(writer: DowncastWriter, modelElement: Element, { dataPipeline }: {
dataPipeline?: boolean;
}): ViewElement | null;
/**
* Creates an AttributeElement to be used for wrapping a first block of a list item.
*/
createWrapperElement?(writer: DowncastWriter, modelElement: Element, { dataPipeline }: {
dataPipeline?: boolean;
}): ViewAttributeElement;
/**
* Should return true if the given list block can be wrapped with the wrapper created by `createWrapperElement()`
* or only the marker element should be wrapped.
*/
canWrapElement?(modelElement: Element): boolean;
/**
* Should return true if the custom marker can be injected into a given list block.
* Otherwise, custom marker view element is always injected before the block element.
*/
canInjectMarkerIntoElement?(modelElement: Element): boolean;
}
/**
* The downcast strategy.
*/
export type DowncastStrategy = AttributeDowncastStrategy | ItemMarkerDowncastStrategy;
/**
* Event fired on changes detected on the model list element to verify if the view representation of a list element
* is representing those attributes.
*
* It allows triggering a re-wrapping of a list item.
*
* @internal
* @eventName ~ListEditing#postFixer
* @param listHead The head element of a list.
* @param writer The writer to do changes with.
* @param seenIds The set of already known IDs.
* @returns If a post-fixer made a change of the model tree, it should return `true`.
*/
export type ListEditingPostFixerEvent = {
name: 'postFixer';
args: [
{
listNodes: ListBlocksIterable;
listHead: Element;
writer: Writer;
seenIds: Set<string>;
}
];
return: boolean;
};
/**
* Event fired on changes detected on the model list element to verify if the view representation of a list element
* is representing those attributes.
*
* It allows triggering a re-wrapping of a list item.
*
* **Note**: For convenience this event is namespaced and could be captured as `checkAttributes:list` or `checkAttributes:item`.
*
* @internal
* @eventName ~ListEditing#checkAttributes
*/
export type ListEditingCheckAttributesEvent = {
name: 'checkAttributes' | 'checkAttributes:list' | 'checkAttributes:item';
args: [
{
viewElement: ViewElement & {
id?: string;
};
modelAttributes: ListItemAttributesMap;
}
];
return: boolean;
};
/**
* Event fired on changes detected on the model list element to verify if the view representation of a list block element
* is representing those attributes.
*
* It allows triggering a reconversion of a list item block.
*
* @internal
* @eventName ~ListEditing#checkElement
*/
export type ListEditingCheckElementEvent = {
name: 'checkElement';
args: [
{
viewElement: ViewElement;
modelElement: Element;
}
];
return: boolean;
};