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.
zabbix/ui/app/views/js/administration.iconmap.edit...

163 lines
4.9 KiB

<?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 type="text/x-jquery-tmpl" id="iconMapRowTPL">
<?=
(new CRow([
(new CCol((new CDiv())->addClass(ZBX_STYLE_DRAG_ICON)))->addClass(ZBX_STYLE_TD_DRAG_ICON),
(new CSpan('#0:'))->addClass('rowNum'),
(new CSelect('iconmap[mappings][#{iconmappingid}][inventory_link]'))
->addOptions(CSelect::createOptionsFromArray($data['inventory_list']))
->setId('iconmap_mappings_#{iconmappingid}_inventory_link'),
(new CTextBox('iconmap[mappings][#{iconmappingid}][expression]', '', false, 64))
->setId('iconmap_mappings_#{iconmappingid}_expression')
->setAriaRequired()
->setWidth(ZBX_TEXTAREA_SMALL_WIDTH),
(new CSelect('iconmap[mappings][#{iconmappingid}][iconid]'))
->addOptions(CSelect::createOptionsFromArray($data['icon_list']))
->setId('iconmap_mappings_#{iconmappingid}_iconid')
->addClass('js-mapping-icon'),
(new CCol(
(new CImg('imgstore.php?iconid='.$data['default_imageid'].'&width='.ZBX_ICON_PREVIEW_WIDTH.
'&height='.ZBX_ICON_PREVIEW_HEIGHT, _('Preview'))
)
->setAttribute('data-image-full', 'imgstore.php?iconid='.$data['default_imageid'])
->addClass(ZBX_STYLE_CURSOR_POINTER)
->addClass('preview')
))->addStyle('vertical-align: middle'),
(new CCol(
(new CButton('remove', _('Remove')))
->addClass(ZBX_STYLE_BTN_LINK)
->addClass('remove_mapping')
->removeId()
))->addClass(ZBX_STYLE_NOWRAP)
]))
->setId('iconmapidRow_#{iconmappingid}')
->addClass('sortable')
?>
</script>
<script type="text/javascript">
jQuery(function($) {
var $form = $('form#iconmap');
$form.on('submit', function() {
$form.trimValues(['#iconmap_name']);
});
$form.find('#clone').click(function() {
var url = new Curl('zabbix.php?action=iconmap.edit');
$form.serializeArray().forEach(function(field) {
if (field.name !== 'iconmapid') {
url.setArgument(field.name, field.value);
}
});
redirect(url.getUrl(), 'post', 'action', undefined, true);
});
var iconMapTable = $('#iconMapTable'),
addMappingButton = $('#addMapping');
function recalculateSortOrder() {
var i = 1;
iconMapTable.find('tr.sortable .rowNum').each(function() {
$(this).text(i++ + ':');
});
}
iconMapTable.sortable({
disabled: (iconMapTable.find('tr.sortable').length < 2),
items: 'tbody tr.sortable',
axis: 'y',
containment: 'parent',
cursor: 'grabbing',
handle: 'div.<?= ZBX_STYLE_DRAG_ICON ?>',
tolerance: 'pointer',
opacity: 0.6,
update: recalculateSortOrder,
helper: function(e, ui) {
ui.children().each(function() {
var td = $(this);
td.width(td.width());
});
return ui;
},
start: function(e, ui) {
$(ui.placeholder).height($(ui.helper).height());
}
});
iconMapTable.find('tbody')
.on('click', '.remove_mapping', function() {
$(this).parent().parent().remove();
if (iconMapTable.find('tr.sortable').length < 2) {
iconMapTable.sortable('disable');
}
recalculateSortOrder();
})
.on('change', 'z-select.js-mapping-icon, z-select#iconmap_default_iconid', function() {
$(this).closest('tr').find('.preview')
.attr('src', 'imgstore.php?&width=<?= ZBX_ICON_PREVIEW_WIDTH ?>&height=<?= ZBX_ICON_PREVIEW_HEIGHT ?>&iconid=' + $(this).val())
.data('imageFull', 'imgstore.php?iconid=' + $(this).val());
})
.on('click', 'img.preview', function(e) {
var img = $('<img>', {src: $(this).data('imageFull')});
hintBox.showStaticHint(e, this, '', true, '', img);
});
addMappingButton.click(function() {
var tpl = new Template($('#iconMapRowTPL').html()),
iconmappingid = getUniqueId(),
mapping = {};
// on error, whole page reloads and getUniqueId reset ids sequence which can cause in duplicate ids
while ($('#iconmapidRow_' + iconmappingid).length != 0) {
iconmappingid = getUniqueId();
}
mapping.iconmappingid = iconmappingid;
$('#iconMapListFooter').before(tpl.evaluate(mapping));
iconMapTable.sortable('refresh');
if (iconMapTable.find('tr.sortable').length > 1) {
iconMapTable.sortable('enable');
}
recalculateSortOrder();
});
if (iconMapTable.find('tr.sortable').length === 0) {
addMappingButton.click();
}
});
</script>