2019-09-19 22:48:25 +08:00
|
|
|
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-19 22:48:25 +08:00
|
|
|
|
2019-09-20 22:44:38 +08:00
|
|
|
var widthFactor = parseInt(defaultAspectRatio.replace(/:.*$/, ''));
|
|
|
|
var heightFactor = parseInt(defaultAspectRatio.replace(/^.*:/, ''));
|
2008-07-14 21:54:50 +08:00
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
var monitorWidth = parseInt(form.elements['newMonitor[Width]'].value);
|
|
|
|
var monitorHeight = parseInt(form.elements['newMonitor[Height]'].value);
|
2019-09-19 22:48:25 +08:00
|
|
|
|
|
|
|
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];
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
2017-05-19 01:50:56 +08:00
|
|
|
}
|
2019-09-19 22:48:25 +08:00
|
|
|
return false;
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
|
|
|
|
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]'];
|
2008-07-14 21:54:50 +08:00
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
returnLocationSelect.options.length = 1;
|
|
|
|
//returnLocationSelect.options[0] = new Option( noneString, -1 );
|
2008-07-14 21:54:50 +08:00
|
|
|
|
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 );
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
2017-05-19 01:50:56 +08:00
|
|
|
}
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
2008-07-16 16:40:21 +08:00
|
|
|
|
2017-05-19 01:50:56 +08:00
|
|
|
function initPage() {
|
2020-08-28 05:30:49 +08:00
|
|
|
var backBtn = $j('#backBtn');
|
2020-08-29 04:22:57 +08:00
|
|
|
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) );
|
2019-03-26 04:25:09 +08:00
|
|
|
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) {
|
2019-03-26 04:25:09 +08:00
|
|
|
if ( validateForm(this) ) {
|
|
|
|
$j('#contentButtons').hide();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
});
|
2008-07-16 16:40:21 +08:00
|
|
|
|
2019-04-26 22:26:16 +08:00
|
|
|
// Disable form submit on enter
|
2019-04-26 22:40:11 +08:00
|
|
|
$j('#contentForm input').on('keyup keypress', function(e) {
|
2019-04-26 22:26:16 +08:00
|
|
|
var keyCode = e.keyCode || e.which;
|
2019-05-25 00:40:02 +08:00
|
|
|
if ( keyCode == 13 ) {
|
2019-04-26 22:26:16 +08:00
|
|
|
e.preventDefault();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
2019-05-25 00:40:02 +08:00
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
};
|
2019-05-25 00:40:02 +08:00
|
|
|
});
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
};
|
2019-05-25 00:40:02 +08:00
|
|
|
});
|
2019-09-19 22:48:25 +08:00
|
|
|
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);
|
|
|
|
});
|
2020-01-01 08:10:29 +08:00
|
|
|
document.querySelectorAll('input[name="newMonitor[WebColour]"]').forEach(function(el) {
|
|
|
|
el.onchange = window['change_WebColour'].bind(el);
|
|
|
|
});
|
2020-09-23 02:33:26 +08:00
|
|
|
document.querySelectorAll('select[name="newMonitor[Type]"]').forEach(function(el) {
|
|
|
|
el.onchange = function() {
|
|
|
|
var form = document.getElementById('contentForm');
|
|
|
|
form.tab.value = 'general';
|
|
|
|
form.submit();
|
|
|
|
};
|
|
|
|
});
|
2020-09-23 04:21:59 +08:00
|
|
|
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
|
|
|
|
2020-08-29 04:22:57 +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');
|
|
|
|
});
|
2019-04-26 22:26:16 +08:00
|
|
|
} // end function initPage()
|
|
|
|
|
2020-01-01 08:10:29 +08:00
|
|
|
function change_WebColour() {
|
|
|
|
$j('#WebSwatch').css(
|
2020-01-01 09:24:51 +08:00
|
|
|
'backgroundColor',
|
|
|
|
$j('input[name="newMonitor[WebColour]"]').val()
|
2020-01-01 08:10:29 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2020-01-01 08:10:29 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-09-23 04:21:59 +08:00
|
|
|
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);
|
|
|
|
}
|
2020-09-24 21:01:30 +08:00
|
|
|
function updateLatitudeAndLongitude(latitude,longitude) {
|
|
|
|
var form = document.getElementById('contentForm');
|
|
|
|
form.elements['newMonitor[Latitude]'].value = latitude;
|
|
|
|
form.elements['newMonitor[Longitude]'].value = longitude;
|
|
|
|
}
|
|
|
|
function getLocation() {
|
|
|
|
if('geolocation' in navigator) {
|
|
|
|
navigator.geolocation.getCurrentPosition((position) => {
|
|
|
|
updateLatitudeAndLongitude(position.coords.latitude, position.coords.longitude);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
console.log("Geolocation not available");
|
|
|
|
}
|
|
|
|
}
|
2020-09-23 04:21:59 +08:00
|
|
|
|
2019-04-26 22:26:16 +08:00
|
|
|
window.addEventListener('DOMContentLoaded', initPage);
|