1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
<?php
/*
** Copyright (C) 2001-2025 Zabbix SIA
**
** This program is free software: you can redistribute it and/or modify it under the terms of
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
**
** 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 Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
/**
* @var CView $this
*/
?>
<script>
const view = {
init({checkbox_hash, checkbox_object, context, parent_discoveryid, form_name}) {
this.checkbox_hash = checkbox_hash;
this.checkbox_object = checkbox_object;
this.context = context;
this.is_discovery = parent_discoveryid !== null;
this.form = document.forms[form_name];
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.success.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.success) {
postMessageDetails('success', e.detail.success.messages);
}
location.href = location.href;
});
});
}
this.form.addEventListener('click', (e) => {
const target = e.target;
if (target.classList.contains('js-edit-host')) {
this.editHost(e, target.dataset.hostid);
}
else if (target.classList.contains('js-edit-template')) {
this.editTemplate(e, target.dataset.hostid);
}
});
},
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>
|