ckeditor5-image-upload-base64
Version:
The development environment of CKEditor 5 – the best browser-based rich text editor.
63 lines (56 loc) • 1.66 kB
JavaScript
/**
* @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
/**
* @module table/tableproperties/commands/tableborderwidthcommand
*/
import TablePropertyCommand from './tablepropertycommand';
import { addDefaultUnitToNumericValue, getSingleValue } from '../../utils/table-properties';
/**
* The table width border command.
*
* The command is registered by the {@link module:table/tableproperties/tablepropertiesediting~TablePropertiesEditing} as
* the `'tableBorderWidth'` editor command.
*
* To change the border width of the selected table, execute the command:
*
* editor.execute( 'tableBorderWidth', {
* value: '5px'
* } );
*
* **Note**: This command adds the default `'px'` unit to numeric values. Executing:
*
* editor.execute( 'tableBorderWidth', {
* value: '5'
* } );
*
* will set the `borderWidth` attribute to `'5px'` in the model.
*
* @extends module:table/tableproperties/commands/tablepropertycommand~TablePropertyCommand
*/
export default class TableBorderWidthCommand extends TablePropertyCommand {
/**
* Creates a new `TableBorderWidthCommand` instance.
*
* @param {module:core/editor/editor~Editor} editor An editor in which this command will be used.
*/
constructor( editor ) {
super( editor, 'borderWidth' );
}
/**
* @inheritDoc
*/
_getValue( table ) {
if ( !table ) {
return;
}
return getSingleValue( table.getAttribute( this.attributeName ) );
}
/**
* @inheritDoc
*/
_getValueToSet( value ) {
return addDefaultUnitToNumericValue( value, 'px' );
}
}