UNPKG

@ckeditor/ckeditor5-table

Version:

Table feature for CKEditor 5.

45 lines (44 loc) 1.42 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 */ import TableCellPropertyCommand from './tablecellpropertycommand'; import { getSingleValue } from '../../utils/table-properties'; /** * The table cell border style command. * * The command is registered by the {@link module:table/tablecellproperties/tablecellpropertiesediting~TableCellPropertiesEditing} as * the `'tableCellBorderStyle'` editor command. * * To change the border style of selected cells, execute the command: * * ```ts * editor.execute( 'tableCellBorderStyle', { * value: 'dashed' * } ); * ``` */ export default class TableCellBorderStyleCommand extends TableCellPropertyCommand { /** * Creates a new `TableCellBorderStyleCommand` instance. * * @param editor An editor in which this command will be used. * @param defaultValue The default value of the attribute. */ constructor(editor, defaultValue) { super(editor, 'tableCellBorderStyle', defaultValue); } /** * @inheritDoc */ _getAttribute(tableCell) { if (!tableCell) { return; } const value = getSingleValue(tableCell.getAttribute(this.attributeName)); if (value === this._defaultValue) { return; } return value; } }