2021-03-12 22:28:05 +08:00
|
|
|
var backBtn = $j('#backBtn');
|
|
|
|
var saveBtn = $j('#saveBtn');
|
|
|
|
var deleteBtn = $j('#deleteBtn');
|
|
|
|
|
|
|
|
// Manage the DELETE CONFIRMATION modal button
|
|
|
|
function manageDelConfirmModalBtns() {
|
|
|
|
document.getElementById('delConfirmBtn').addEventListener('click', function onDelConfirmClick(evt) {
|
|
|
|
if ( !canEdit.Events ) {
|
|
|
|
enoperm();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
evt.preventDefault();
|
|
|
|
/*
|
|
|
|
$j.getJSON(thisUrl + '?request=events&task=delete&eids[]='+eventData.Id)
|
|
|
|
.done(function(data) {
|
|
|
|
streamNext(true);
|
|
|
|
})
|
|
|
|
.fail(logAjaxFail);
|
|
|
|
*/
|
|
|
|
});
|
|
|
|
|
|
|
|
// Manage the CANCEL modal button
|
|
|
|
document.getElementById("delCancelBtn").addEventListener("click", function onDelCancelClick(evt) {
|
|
|
|
$j('#deleteConfirm').modal('hide');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-08-06 01:29:45 +08:00
|
|
|
function exportResponse(respObj, respText) {
|
|
|
|
clearInterval(exportTimer);
|
|
|
|
if ( respObj.result != 'Ok' ) {
|
|
|
|
$j('#exportProgressTicker').text(respObj.message);
|
|
|
|
} else {
|
|
|
|
$j('#exportProgressTicker').text(exportSucceededString);
|
|
|
|
setTimeout(startDownload, 1500, decodeURIComponent(respObj.exportFile));
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
function startDownload(file) {
|
|
|
|
console.log('Starting download of ' + file);
|
|
|
|
window.location.replace(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
function exportProgress() {
|
|
|
|
if ( exportTimer ) {
|
|
|
|
var tickerText = $j('#exportProgressTicker').text();
|
|
|
|
if ( tickerText.length < 1 || tickerText.length > 4 ) {
|
|
|
|
$j('#exportProgressTicker').text('.');
|
|
|
|
} else {
|
|
|
|
$j('#exportProgressTicker').append('.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-12 22:28:05 +08:00
|
|
|
function initPage() {
|
|
|
|
// enable or disable buttons based on current selection and user rights
|
|
|
|
/*
|
|
|
|
renameBtn.prop('disabled', !canEdit.Events);
|
|
|
|
archiveBtn.prop('disabled', !(!eventData.Archived && canEdit.Events));
|
|
|
|
unarchiveBtn.prop('disabled', !(eventData.Archived && canEdit.Events));
|
|
|
|
*/
|
|
|
|
saveBtn.prop('disabled', !(canEdit.Events || (snapshot.CreatedBy == user.Id) ));
|
|
|
|
/*
|
|
|
|
downloadBtn.prop('disabled', !canView.Events);
|
|
|
|
*/
|
|
|
|
deleteBtn.prop('disabled', !canEdit.Events);
|
|
|
|
|
|
|
|
// 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
|
|
|
|
bindButton('#backBtn', 'click', null, function onBackClick(evt) {
|
|
|
|
evt.preventDefault();
|
|
|
|
window.history.back();
|
|
|
|
});
|
|
|
|
|
|
|
|
// Manage the REFRESH Button
|
|
|
|
bindButton('#refreshBtn', 'click', null, function onRefreshClick(evt) {
|
|
|
|
evt.preventDefault();
|
|
|
|
window.location.reload(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Manage the EDIT button
|
|
|
|
bindButton('#saveBtn', 'click', null, function onSaveClick(evt) {
|
|
|
|
/*
|
|
|
|
if ( ! canEdit.Events ) {
|
|
|
|
enoperm();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
evt.target.form.submit();
|
|
|
|
});
|
|
|
|
|
|
|
|
// Manage the EXPORT button
|
|
|
|
bindButton('#exportBtn', 'click', null, function onExportClick(evt) {
|
|
|
|
evt.preventDefault();
|
2021-08-06 01:29:45 +08:00
|
|
|
formData = {
|
|
|
|
eids: snapshot.EventIds,
|
|
|
|
exportImages: 1,
|
|
|
|
exportVideo: 0,
|
|
|
|
exportFrames: 0,
|
|
|
|
exportDetail: 0,
|
|
|
|
exportMisc: 0,
|
|
|
|
exportFormat: 'zip',
|
|
|
|
exportCompress: 0,
|
|
|
|
exportFile: 'Snapshot'+snapshot.Id
|
|
|
|
};
|
|
|
|
$j.getJSON(thisUrl + '?view=event&request=event&action=export', formData)
|
|
|
|
.done(exportResponse)
|
|
|
|
.fail(logAjaxFail);
|
|
|
|
|
|
|
|
$j('#exportProgress').removeClass('hidden');
|
|
|
|
$j('#exportProgress').addClass('warnText');
|
|
|
|
$j('#exportProgress').text(exportProgressString);
|
|
|
|
|
|
|
|
//exportProgress();
|
|
|
|
exportTimer = setInterval(exportProgress, 500);
|
|
|
|
|
|
|
|
//window.location.assign('?view=export&eids[]='+snapshot.EventIds.join('&eids[]='));
|
2021-03-12 22:28:05 +08:00
|
|
|
});
|
|
|
|
|
2021-08-06 01:29:45 +08:00
|
|
|
/*
|
2021-03-12 22:28:05 +08:00
|
|
|
// Manage the DOWNLOAD VIDEO button
|
|
|
|
bindButton('#downloadBtn', 'click', null, function onDownloadClick(evt) {
|
|
|
|
evt.preventDefault();
|
|
|
|
$j.getJSON(thisUrl + '?request=modal&modal=download&eids[]='+eventData.Id)
|
|
|
|
.done(function(data) {
|
|
|
|
insertModalHtml('downloadModal', data.html);
|
|
|
|
$j('#downloadModal').modal('show');
|
|
|
|
// Manage the GENERATE DOWNLOAD button
|
|
|
|
$j('#exportButton').click(exportEvent);
|
|
|
|
})
|
|
|
|
.fail(logAjaxFail);
|
|
|
|
});
|
|
|
|
*/
|
|
|
|
// Manage the DELETE button
|
|
|
|
bindButton('#deleteBtn', 'click', null, function onDeleteClick(evt) {
|
|
|
|
if ( !canEdit.Events ) {
|
|
|
|
enoperm();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
evt.preventDefault();
|
|
|
|
if ( ! $j('#deleteConfirm').length ) {
|
|
|
|
// Load the delete confirmation modal into the DOM
|
|
|
|
$j.getJSON(thisUrl + '?request=modal&modal=delconfirm')
|
|
|
|
.done(function(data) {
|
|
|
|
insertModalHtml('deleteConfirm', data.html);
|
|
|
|
manageDelConfirmModalBtns();
|
|
|
|
$j('#deleteConfirm').modal('show');
|
|
|
|
})
|
|
|
|
.fail(logAjaxFail);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$j('#deleteConfirm').modal('show');
|
|
|
|
});
|
|
|
|
} // end initPage
|
|
|
|
|
|
|
|
// Kick everything off
|
|
|
|
$j(document).ready(initPage);
|