zoneminder/web/skins/classic/views/js/monitor.js

246 lines
8.5 KiB
JavaScript
Raw Normal View History

function updateMonitorDimensions(element) {
2017-05-19 01:50:56 +08:00
var form = element.form;
2019-09-20 22:44:38 +08:00
if ( element.type == 'number' ) {
// either width or height
2019-09-20 22:44:38 +08:00
var widthFactor = parseInt(defaultAspectRatio.replace(/:.*$/, ''));
var heightFactor = parseInt(defaultAspectRatio.replace(/^.*:/, ''));
2017-05-19 01:50:56 +08:00
var monitorWidth = parseInt(form.elements['newMonitor[Width]'].value);
var monitorHeight = parseInt(form.elements['newMonitor[Height]'].value);
if ( form.elements['preserveAspectRatio'].checked ) {
switch ( element.name ) {
case 'newMonitor[Width]':
if ( monitorWidth >= 0 ) {
form.elements['newMonitor[Height]'].value = Math.round((monitorWidth * heightFactor) / widthFactor);
} else {
form.elements['newMonitor[Height]'].value = '';
}
monitorHeight = parseInt(form.elements['newMonitor[Height]'].value);
break;
case 'newMonitor[Height]':
if ( monitorHeight >= 0 ) {
form.elements['newMonitor[Width]'].value = Math.round((monitorHeight * widthFactor) / heightFactor);
} else {
form.elements['newMonitor[Width]'].value = '';
}
monitorWidth = parseInt(form.elements['newMonitor[Width]'].value);
break;
}
}
// If we find a matching option in the dropdown, select it or select custom
var option = $j('select[name="dimensions_select"] option[value="'+monitorWidth+'x'+monitorHeight+'"]');
if ( !option.size() ) {
$j('select[name="dimensions_select"]').val('');
} else {
$j('select[name="dimensions_select"]').val(monitorWidth+'x'+monitorHeight);
}
} else {
// For some reason we get passed the first option instead of the select
element = form.elements['dimensions_select'];
var value = element.options[element.selectedIndex].value;
if ( value != '' ) { // custom dimensions
var dimensions = value.split('x');
form.elements['newMonitor[Width]'].value = dimensions[0];
form.elements['newMonitor[Height]'].value = dimensions[1];
}
2017-05-19 01:50:56 +08:00
}
return false;
}
2017-05-19 01:50:56 +08:00
function loadLocations( element ) {
var form = element.form;
var controlIdSelect = form.elements['newMonitor[ControlId]'];
var returnLocationSelect = form.elements['newMonitor[ReturnLocation]'];
2017-05-19 01:50:56 +08:00
returnLocationSelect.options.length = 1;
//returnLocationSelect.options[0] = new Option( noneString, -1 );
2017-05-19 01:50:56 +08:00
var returnLocationOptions = controlOptions[controlIdSelect.selectedIndex];
if ( returnLocationOptions ) {
for ( var i = 0; i < returnLocationOptions.length; i++ ) {
returnLocationSelect.options[returnLocationSelect.options.length] = new Option( returnLocationOptions[i], i );
}
2017-05-19 01:50:56 +08:00
}
}
2017-05-19 01:50:56 +08:00
function initPage() {
2020-08-28 05:30:49 +08:00
var backBtn = $j('#backBtn');
var onvifBtn = $j('#onvifBtn');
2020-08-28 05:30:49 +08:00
2017-05-19 01:50:56 +08:00
//var protocolSelector = $('contentForm').elements['newMonitor[Protocol]'];
//if ( $(protocolSelector).getTag() == 'select' )
//updateMethods( $(protocolSelector) );
document.querySelectorAll('input[name="newMonitor[SignalCheckColour]"]').forEach(function(el) {
el.oninput = function(event) {
$j('#SignalCheckSwatch').css('background-color', event.target.value);
};
});
document.querySelectorAll('input[name="newMonitor[WebColour]"]').forEach(function(el) {
el.oninput = function(event) {
$j('#WebSwatch').css('background-color', event.target.value);
};
});
2019-03-30 23:41:04 +08:00
$j('#contentForm').submit(function(event) {
if ( validateForm(this) ) {
$j('#contentButtons').hide();
return true;
} else {
return false;
};
});
// Disable form submit on enter
$j('#contentForm input').on('keyup keypress', function(e) {
var keyCode = e.keyCode || e.which;
if ( keyCode == 13 ) {
e.preventDefault();
return false;
}
});
document.querySelectorAll('input[name="newMonitor[MaxFPS]"]').forEach(function(el) {
el.oninput = el.onclick = function(e) {
2019-05-27 23:25:49 +08:00
if ( e.target.value ) {
console.log('showing');
$j('#newMonitor\\[MaxFPS\\]').show();
} else {
$j('#newMonitor\\[MaxFPS\\]').hide();
}
};
});
document.querySelectorAll('input[name="newMonitor[AlarmMaxFPS]"]').forEach(function(el) {
el.oninput = el.onclick = function(e) {
2019-05-27 23:25:49 +08:00
if ( e.target.value ) {
console.log('showing');
$j('#newMonitor\\[AlarmMaxFPS\\]').show();
} else {
$j('#newMonitor\\[AlarmMaxFPS\\]').hide();
}
};
});
document.querySelectorAll('input[name="newMonitor[Width]"]').forEach(function(el) {
el.oninput = window['updateMonitorDimensions'].bind(el, el);
});
document.querySelectorAll('input[name="newMonitor[Height]"]').forEach(function(el) {
el.oninput = window['updateMonitorDimensions'].bind(el, el);
});
document.querySelectorAll('select[name="dimensions_select"]').forEach(function(el) {
el.onchange = window['updateMonitorDimensions'].bind(el, el);
});
2019-09-20 02:56:16 +08:00
document.querySelectorAll('select[name="newMonitor[ControlId]"]').forEach(function(el) {
el.onchange = window['loadLocations'].bind(el, el);
});
document.querySelectorAll('input[name="newMonitor[WebColour]"]').forEach(function(el) {
el.onchange = window['change_WebColour'].bind(el);
});
document.querySelectorAll('select[name="newMonitor[Type]"]').forEach(function(el) {
el.onchange = function() {
var form = document.getElementById('contentForm');
form.tab.value = 'general';
form.submit();
};
});
document.querySelectorAll('input[name="newMonitor[ImageBufferCount]"],input[name="newMonitor[Width]"],input[name="newMonitor[Height]"]').forEach(function(el) {
el.oninput = window['update_estimated_ram_use'].bind(el);
});
2019-09-20 02:56:16 +08:00
2019-05-24 23:54:14 +08:00
$j('.chosen').chosen();
2020-08-28 05:30:49 +08:00
// Don't enable the back button if there is no previous zm page to go back to
backBtn.prop('disabled', !document.referrer.length);
// Manage the BACK button
document.getElementById("backBtn").addEventListener("click", function onBackClick(evt) {
evt.preventDefault();
window.history.back();
});
// Manage the REFRESH Button
document.getElementById("refreshBtn").addEventListener("click", function onRefreshClick(evt) {
evt.preventDefault();
window.location.reload(true);
});
2020-08-28 23:56:09 +08:00
// Manage the PROBE button
$j('#probeBtn').click(function(evt) {
var mid = evt.currentTarget.getAttribute("data-mid");
evt.preventDefault();
//FIX-ME: MAKE THIS A MODAL
//$j('#modalFunction-'+mid).modal('show');
window.location.assign('?view=monitorprobe&mid='+mid);
});
// Manage the ONVIF button
$j('#onvifBtn').click(function(evt) {
var mid = evt.currentTarget.getAttribute("data-mid");
evt.preventDefault();
//FIX-ME: MAKE THIS A MODAL
//$j('#modalFunction-'+mid).modal('show');
window.location.assign('?view=onvifprobe&mid='+mid);
});
// Don't enable the onvif button if there is no previous zm page to go back to
onvifBtn.prop('disabled', !hasOnvif);
// Manage the PRESET button
$j('#presetBtn').click(function(evt) {
var mid = evt.currentTarget.getAttribute("data-mid");
evt.preventDefault();
//FIX-ME: MAKE THIS A MODAL
//$j('#modalFunction-'+mid).modal('show');
window.location.assign('?view=monitorpreset&mid='+mid);
});
2020-08-28 23:56:09 +08:00
// Manage the CANCEL Button
document.getElementById("cancelBtn").addEventListener("click", function onCancelClick(evt) {
evt.preventDefault();
window.location.assign('?view=console');
});
} // end function initPage()
function change_WebColour() {
$j('#WebSwatch').css(
2020-01-01 09:24:51 +08:00
'backgroundColor',
$j('input[name="newMonitor[WebColour]"]').val()
);
}
function getRandomColour() {
var letters = '0123456789ABCDEF';
var colour = '#';
for (var i = 0; i < 6; i++) {
colour += letters[Math.floor(Math.random() * 16)];
}
return colour;
}
function random_WebColour() {
var new_colour = getRandomColour();
$j('input[name="newMonitor[WebColour]"]').val(new_colour);
$j('#WebSwatch').css(
2020-01-01 09:24:51 +08:00
'backgroundColor', new_colour
);
}
function update_estimated_ram_use() {
var buffer_count = document.querySelectorAll('input[name="newMonitor[ImageBufferCount]"]')[0].value;
console.log(buffer_count);
var width = document.querySelectorAll('input[name="newMonitor[Width]"]')[0].value;
console.log(width);
var height = document.querySelectorAll('input[name="newMonitor[Height]"]')[0].value;
console.log(height);
var colours = document.querySelectorAll('select[name="newMonitor[Colours]"]')[0].value;
console.log(colours);
document.getElementById('estimated_ram_use').innerHTML = human_filesize(buffer_count * width * height * colours, 0);
}
window.addEventListener('DOMContentLoaded', initPage);