UNPKG

@ckeditor/ckeditor5-list

Version:

Ordered and unordered lists feature to CKEditor 5.

52 lines (51 loc) 1.76 kB
/** * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** * @module list/legacylistproperties/legacyliststartcommand */ import { Command } from 'ckeditor5/src/core.js'; import { getSelectedListItems } from '../legacylist/legacyutils.js'; /** * The list start index command. It changes the `listStart` attribute of the selected list items. * It is used by the {@link module:list/legacylistproperties~LegacyListProperties legacy list properties feature}. */ export default class LegacyListStartCommand extends Command { /** * @inheritDoc */ refresh() { const value = this._getValue(); this.value = value; this.isEnabled = value != null; } /** * Executes the command. * * @fires execute * @param options.startIndex The list start index. */ execute({ startIndex = 1 } = {}) { const model = this.editor.model; const listItems = getSelectedListItems(model) .filter(item => item.getAttribute('listType') == 'numbered'); model.change(writer => { for (const item of listItems) { writer.setAttribute('listStart', startIndex >= 0 ? startIndex : 1, item); } }); } /** * Checks the command's {@link #value}. * * @returns The current value. */ _getValue() { const listItem = this.editor.model.document.selection.getFirstPosition().parent; if (listItem && listItem.is('element', 'listItem') && listItem.getAttribute('listType') == 'numbered') { return listItem.getAttribute('listStart'); } return null; } }