primo commit
This commit is contained in:
42
media/plg_editors-xtd_image/js/button-image.js
Normal file
42
media/plg_editors-xtd_image/js/button-image.js
Normal file
@ -0,0 +1,42 @@
|
||||
import { JoomlaEditorButton } from 'editor-api';
|
||||
import JoomlaDialog from 'joomla.dialog';
|
||||
|
||||
/**
|
||||
* @copyright (C) 2023 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
// Register modal-media action
|
||||
JoomlaEditorButton.registerAction('modal-media', (editor, options) => {
|
||||
// Create a dialog popup
|
||||
let dialog;
|
||||
options.popupButtons = [{
|
||||
label: Joomla.Text._('PLG_IMAGE_BUTTON_INSERT'),
|
||||
className: 'button button-success btn btn-success',
|
||||
location: 'header',
|
||||
onClick: () => {
|
||||
if (Joomla.selectedMediaFile && Joomla.selectedMediaFile.path) {
|
||||
Joomla.getMedia(Joomla.selectedMediaFile, editor).then(() => {
|
||||
dialog.close();
|
||||
Joomla.selectedMediaFile = {};
|
||||
});
|
||||
}
|
||||
}
|
||||
}, {
|
||||
label: '',
|
||||
ariaLabel: Joomla.Text._('JCLOSE'),
|
||||
className: 'button-close btn-close',
|
||||
data: {
|
||||
buttonClose: '',
|
||||
dialogClose: ''
|
||||
},
|
||||
location: 'header'
|
||||
}];
|
||||
dialog = new JoomlaDialog(options);
|
||||
dialog.addEventListener('joomla-dialog:close', () => {
|
||||
Joomla.Modal.setCurrent(null);
|
||||
dialog.destroy();
|
||||
});
|
||||
Joomla.Modal.setCurrent(dialog);
|
||||
dialog.show();
|
||||
});
|
||||
4
media/plg_editors-xtd_image/js/button-image.min.js
vendored
Normal file
4
media/plg_editors-xtd_image/js/button-image.min.js
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
import{JoomlaEditorButton as a}from"editor-api";import t from"joomla.dialog";/**
|
||||
* @copyright (C) 2023 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/a.registerAction("modal-media",(l,o)=>{let e;o.popupButtons=[{label:Joomla.Text._("PLG_IMAGE_BUTTON_INSERT"),className:"button button-success btn btn-success",location:"header",onClick:()=>{Joomla.selectedMediaFile&&Joomla.selectedMediaFile.path&&Joomla.getMedia(Joomla.selectedMediaFile,l).then(()=>{e.close(),Joomla.selectedMediaFile={}})}},{label:"",ariaLabel:Joomla.Text._("JCLOSE"),className:"button-close btn-close",data:{buttonClose:"",dialogClose:""},location:"header"}],e=new t(o),e.addEventListener("joomla-dialog:close",()=>{Joomla.Modal.setCurrent(null),e.destroy()}),Joomla.Modal.setCurrent(e),e.show()});
|
||||
BIN
media/plg_editors-xtd_image/js/button-image.min.js.gz
Normal file
BIN
media/plg_editors-xtd_image/js/button-image.min.js.gz
Normal file
Binary file not shown.
Reference in New Issue
Block a user