first commit
This commit is contained in:
88
media/com_menus/js/admin-item-edit_modules.js
Normal file
88
media/com_menus/js/admin-item-edit_modules.js
Normal file
@ -0,0 +1,88 @@
|
||||
/**
|
||||
* @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
|
||||
Joomla = window.Joomla || {};
|
||||
(() => {
|
||||
|
||||
const options = Joomla.getOptions('menus-edit-modules');
|
||||
if (options) {
|
||||
window.viewLevels = options.viewLevels;
|
||||
window.menuId = parseInt(options.itemId, 10);
|
||||
}
|
||||
const baseLink = 'index.php?option=com_modules&client_id=0&task=module.edit&tmpl=component&view=module&layout=modal&id=';
|
||||
const assigned1 = document.getElementById('jform_toggle_modules_assigned1');
|
||||
const assigned0 = document.getElementById('jform_toggle_modules_assigned0');
|
||||
const published1 = document.getElementById('jform_toggle_modules_published1');
|
||||
const published0 = document.getElementById('jform_toggle_modules_published0');
|
||||
const linkElements = [].slice.call(document.getElementsByClassName('module-edit-link'));
|
||||
const elements = [].slice.call(document.querySelectorAll('#moduleEditModal .modal-footer .btn'));
|
||||
if (assigned1) {
|
||||
assigned1.addEventListener('click', () => {
|
||||
const list = [].slice.call(document.querySelectorAll('tr.no'));
|
||||
list.forEach(item => {
|
||||
item.classList.add('table-row');
|
||||
item.classList.remove('hidden');
|
||||
});
|
||||
});
|
||||
}
|
||||
if (assigned0) {
|
||||
assigned0.addEventListener('click', () => {
|
||||
const list = [].slice.call(document.querySelectorAll('tr.no'));
|
||||
list.forEach(item => {
|
||||
item.classList.add('hidden');
|
||||
item.classList.remove('table-row');
|
||||
});
|
||||
});
|
||||
}
|
||||
if (published1) {
|
||||
published1.addEventListener('click', () => {
|
||||
const list = [].slice.call(document.querySelectorAll('.table tr.unpublished'));
|
||||
list.forEach(item => {
|
||||
item.classList.add('table-row');
|
||||
item.classList.remove('hidden');
|
||||
});
|
||||
});
|
||||
}
|
||||
if (published0) {
|
||||
published0.addEventListener('click', () => {
|
||||
const list = [].slice.call(document.querySelectorAll('.table tr.unpublished'));
|
||||
list.forEach(item => {
|
||||
item.classList.add('hidden');
|
||||
item.classList.remove('table-row');
|
||||
});
|
||||
});
|
||||
}
|
||||
if (linkElements.length) {
|
||||
linkElements.forEach(linkElement => {
|
||||
linkElement.addEventListener('click', ({
|
||||
target
|
||||
}) => {
|
||||
const link = baseLink + target.getAttribute('data-module-id');
|
||||
const modal = document.getElementById('moduleEditModal');
|
||||
const body = modal.querySelector('.modal-body');
|
||||
const iFrame = document.createElement('iframe');
|
||||
iFrame.src = link;
|
||||
iFrame.setAttribute('class', 'class="iframe jviewport-height70"');
|
||||
body.innerHTML = '';
|
||||
body.appendChild(iFrame);
|
||||
modal.open();
|
||||
});
|
||||
});
|
||||
}
|
||||
if (elements.length) {
|
||||
elements.forEach(element => {
|
||||
element.addEventListener('click', ({
|
||||
target
|
||||
}) => {
|
||||
const dataTarget = target.getAttribute('data-bs-target');
|
||||
if (dataTarget) {
|
||||
const iframe = document.querySelector('#moduleEditModal iframe');
|
||||
const iframeDocument = iframe.contentDocument || iframe.contentWindow.document;
|
||||
iframeDocument.querySelector(dataTarget).click();
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
})();
|
||||
Reference in New Issue
Block a user