ckeditor5-image-upload-base64
Version:
The development environment of CKEditor 5 – the best browser-based rich text editor.
58 lines (49 loc) • 1.48 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 image/imagetextalternative/imagetextalternativecommand
*/
import Command from '@ckeditor/ckeditor5-core/src/command';
import { isImage } from '../image/utils';
/**
* The image text alternative command. It is used to change the `alt` attribute of `<image>` elements.
*
* @extends module:core/command~Command
*/
export default class ImageTextAlternativeCommand extends Command {
/**
* The command value: `false` if there is no `alt` attribute, otherwise the value of the `alt` attribute.
*
* @readonly
* @observable
* @member {String|Boolean} #value
*/
/**
* @inheritDoc
*/
refresh() {
const element = this.editor.model.document.selection.getSelectedElement();
this.isEnabled = isImage( element );
if ( isImage( element ) && element.hasAttribute( 'alt' ) ) {
this.value = element.getAttribute( 'alt' );
} else {
this.value = false;
}
}
/**
* Executes the command.
*
* @fires execute
* @param {Object} options
* @param {String} options.newValue The new value of the `alt` attribute to set.
*/
execute( options ) {
const model = this.editor.model;
const imageElement = model.document.selection.getSelectedElement();
model.change( writer => {
writer.setAttribute( 'alt', options.newValue, imageElement );
} );
}
}