primo commit

This commit is contained in:
2024-12-17 17:34:10 +01:00
commit e650f8df99
16435 changed files with 2451012 additions and 0 deletions

View 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();
});

View 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()});

Binary file not shown.