You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
4.1 KiB
150 lines
4.1 KiB
1 year ago
|
<?php
|
||
|
/*
|
||
|
** Zabbix
|
||
|
** Copyright (C) 2001-2023 Zabbix SIA
|
||
|
**
|
||
|
** This program is free software; you can redistribute it and/or modify
|
||
|
** it under the terms of the GNU General Public License as published by
|
||
|
** the Free Software Foundation; either version 2 of the License, or
|
||
|
** (at your option) any later version.
|
||
|
**
|
||
|
** This program is distributed in the hope that it will be useful,
|
||
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
** GNU General Public License for more details.
|
||
|
**
|
||
|
** You should have received a copy of the GNU General Public License
|
||
|
** along with this program; if not, write to the Free Software
|
||
|
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
**/
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @var CView $this
|
||
|
*/
|
||
|
?>
|
||
|
|
||
|
<script>
|
||
|
const view = {
|
||
|
init({checkbox_hash, checkbox_object, context, parent_discoveryid}) {
|
||
|
this.checkbox_hash = checkbox_hash;
|
||
|
this.checkbox_object = checkbox_object;
|
||
|
this.context = context;
|
||
|
this.is_discovery = parent_discoveryid !== null;
|
||
|
|
||
|
this._initActions();
|
||
|
},
|
||
|
|
||
|
_initActions() {
|
||
|
const copy = document.querySelector('.js-copy');
|
||
|
|
||
|
if (copy !== null) {
|
||
|
copy.addEventListener('click', () => {
|
||
|
const overlay = this.openCopyPopup();
|
||
|
const dialogue = overlay.$dialogue[0];
|
||
|
|
||
|
dialogue.addEventListener('dialogue.submit', (e) => {
|
||
|
postMessageOk(e.detail.title);
|
||
|
|
||
|
const uncheckids = Object.keys(chkbxRange.getSelectedIds());
|
||
|
uncheckTableRows('graphs_' + this.checkbox_hash, [], false);
|
||
|
chkbxRange.checkObjects(this.checkbox_object, uncheckids, false);
|
||
|
chkbxRange.update(this.checkbox_object);
|
||
|
|
||
|
if ('messages' in e.detail) {
|
||
|
postMessageDetails('success', e.detail.messages);
|
||
|
}
|
||
|
|
||
|
location.href = location.href;
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
},
|
||
|
|
||
|
openCopyPopup() {
|
||
|
const parameters = {
|
||
|
graphids: Object.keys(chkbxRange.getSelectedIds()),
|
||
|
source: 'graphs'
|
||
|
};
|
||
|
|
||
|
const filter_hostids = document.getElementsByName('filter_hostids[]');
|
||
|
const context = document.getElementById('context');
|
||
|
|
||
|
if (filter_hostids.length == 1) {
|
||
|
parameters.src_hostid = context === 'host' ? filter_hostids[0].value : 0;
|
||
|
}
|
||
|
|
||
|
return PopUp('copy.edit', parameters, {
|
||
|
dialogueid: 'copy',
|
||
|
dialogue_class: 'modal-popup-static'
|
||
|
});
|
||
|
},
|
||
|
|
||
|
editHost(e, hostid) {
|
||
|
e.preventDefault();
|
||
|
const host_data = {hostid};
|
||
|
|
||
|
this.openHostPopup(host_data);
|
||
|
},
|
||
|
|
||
|
editTemplate(e, templateid) {
|
||
|
e.preventDefault();
|
||
|
const template_data = {templateid};
|
||
|
|
||
|
this.openTemplatePopup(template_data);
|
||
|
},
|
||
|
|
||
|
openHostPopup(host_data) {
|
||
|
const original_url = location.href;
|
||
|
const overlay = PopUp('popup.host.edit', host_data, {
|
||
|
dialogueid: 'host_edit',
|
||
|
dialogue_class: 'modal-popup-large',
|
||
|
prevent_navigation: true
|
||
|
});
|
||
|
|
||
|
overlay.$dialogue[0].addEventListener('dialogue.submit',
|
||
|
this.events.elementSuccess.bind(this, this.context, this.is_discovery), {once: true}
|
||
|
);
|
||
|
overlay.$dialogue[0].addEventListener('dialogue.close', () => {
|
||
|
history.replaceState({}, '', original_url);
|
||
|
}, {once: true});
|
||
|
},
|
||
|
|
||
|
openTemplatePopup(template_data) {
|
||
|
const overlay = PopUp('template.edit', template_data, {
|
||
|
dialogueid: 'templates-form',
|
||
|
dialogue_class: 'modal-popup-large',
|
||
|
prevent_navigation: true
|
||
|
});
|
||
|
|
||
|
overlay.$dialogue[0].addEventListener('dialogue.submit',
|
||
|
this.events.elementSuccess.bind(this, this.context, this.is_discovery), {once: true}
|
||
|
);
|
||
|
},
|
||
|
|
||
|
events: {
|
||
|
elementSuccess(context, discovery, e) {
|
||
|
const data = e.detail;
|
||
|
let curl = null;
|
||
|
|
||
|
if ('success' in data) {
|
||
|
postMessageOk(data.success.title);
|
||
|
|
||
|
if ('messages' in data.success) {
|
||
|
postMessageDetails('success', data.success.messages);
|
||
|
}
|
||
|
|
||
|
if ('action' in data.success && data.success.action === 'delete') {
|
||
|
curl = discovery ? new Curl('host_discovery.php') : new Curl('graphs.php');
|
||
|
curl.setArgument('context', context);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
uncheckTableRows('graphs_' + this.checkbox_hash, [], false);
|
||
|
|
||
|
location.href = curl === null? location.href : curl.getUrl();
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|