| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /**
- * @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 );
- } );
- }
- }
|