Populate ImageBlock alt text from default_alt_text when an image is chosen

Fixes #12660
pull/12755/head
Matt Westcott 2024-12-19 21:02:48 +00:00 zatwierdzone przez Thibaud Colas
rodzic 1db66a7ded
commit 26f4d07ee1
2 zmienionych plików z 9 dodań i 1 usunięć

Wyświetl plik

@ -1,11 +1,13 @@
import EventEmitter from 'events';
import { ChooserModal } from '../../includes/chooserModal';
export class Chooser {
export class Chooser extends EventEmitter {
chooserModalClass = ChooserModal;
titleStateKey = 'title'; // key used in the 'state' dictionary to hold the human-readable title
editUrlStateKey = 'edit_url'; // key used in the 'state' dictionary to hold the URL of the edit page
constructor(id, opts = {}) {
super();
this.opts = opts;
this.initHTMLElements(id);
this.state = this.getStateFromHTML();
@ -83,6 +85,7 @@ export class Chooser {
setStateFromModalData(data) {
this.setState(data);
this.emit('chosen', data);
}
clear() {

Wyświetl plik

@ -15,6 +15,11 @@ class ImageBlockDefinition extends window.wagtailStreamField.blocks
updateStateInput();
isDecorativeField.addEventListener('change', updateStateInput);
const imageChooserWidget = block.childBlocks.image.widget;
imageChooserWidget.on('chosen', (data) => {
altTextField.value = data.default_alt_text;
});
return block;
}
}