115 lines
3.3 KiB
JavaScript
115 lines
3.3 KiB
JavaScript
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');
|
|
});
|
|
}
|
|
|
|
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) ));
|
|
/*
|
|
exportBtn.prop('disabled', !canView.Events);
|
|
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;
|
|
}
|
|
*/
|
|
console.log(evt);
|
|
evt.target.form.submit();
|
|
});
|
|
|
|
/*
|
|
// Manage the EXPORT button
|
|
bindButton('#exportBtn', 'click', null, function onExportClick(evt) {
|
|
evt.preventDefault();
|
|
window.location.assign('?view=export&eids[]='+eventData.Id);
|
|
});
|
|
|
|
// 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);
|