Source
this.overlay.$dialogue[0].addEventListener('dialogue.close', this.events.overlayCloseAfterUpdate,
<?php declare(strict_types = 0);
/*
** 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
*/
?>
window.token_edit_popup = {
overlay: null,
dialogue: null,
form: null,
form_name: null,
expires_at_field: null,
expires_at_label: null,
expires_at: null,
expires_state: null,
init() {
this.overlay = overlays_stack.getById('token_edit');
this.dialogue = this.overlay.$dialogue[0];
this.form = this.overlay.$dialogue.$body[0].querySelector('form');
this.expires_at_field = document.getElementById('expires-at-row').parentNode;
this.expires_at_label = this.expires_at_field.previousSibling;
this.expires_at = document.getElementById('expires_at');
this.expires_state = document.getElementById('expires_state');
this.expiresAtHandler();
this.expires_state.addEventListener('change', () => this.expiresAtHandler());
},
submit() {
this.removePopupMessages();
const fields = this.preprocessFormFields(getFormFields(this.form));
const curl = new Curl(this.form.getAttribute('action'));
fetch(curl.getUrl(), {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify(fields)
})
.then((response) => response.json())
.then((response) => {
if ('error' in response) {
throw {error: response.error};
}
if ('data' in response) {