mirror of
https://github.com/aaronleetw/Attendance.git
synced 2024-11-15 03:21:38 -08:00
128 lines
No EOL
5.6 KiB
JavaScript
128 lines
No EOL
5.6 KiB
JavaScript
var signaturePad, hrCfrm = false, canvas = document.getElementById("signature_pad");
|
|
var width = $(window).width();
|
|
var indDS = {};
|
|
function loadingAnimation() {
|
|
$('.container').hide();
|
|
$('#loading').show();
|
|
}
|
|
function chgDate() {
|
|
loadingAnimation();
|
|
var url = '/manage/date/' + $('#date').val()
|
|
var new_form = document.createElement('form');
|
|
new_form.method = 'GET';
|
|
new_form.action = url;
|
|
document.body.appendChild(new_form);
|
|
new_form.submit();
|
|
}
|
|
function submitForm() {
|
|
if (!signaturePad.isEmpty()) {
|
|
$('#finalCheck').modal('hide');
|
|
loadingAnimation();
|
|
signaturePad.off();
|
|
var data = signaturePad.toDataURL('image/png');
|
|
if (hrCfrm) {
|
|
$('#hrCfrm-sign').val(data);
|
|
$('#hrCfrm-notes').val($('#subjectNotes').val());
|
|
document.getElementById('homeroom_confirm').submit()
|
|
} else {
|
|
var notes = $('#subjectNotes').val();
|
|
for (var i = 0; i < 7; i++)
|
|
document.getElementById('HR-ds'+(i+1)).value = $('.dsboard input[name="ds'+(i+1)+'"]:checked').val();
|
|
for (var i in indDS) {
|
|
$('#postHomeroomAbs').append('<input type="text" name="dsidv^' + i.split('-')[0] + '" value="'+ indDS[i] +'">')
|
|
}
|
|
document.getElementById('HR-signatureData').value = data;
|
|
document.getElementById('HR-notes').value = notes;
|
|
document.getElementById('postHomeroomAbs').submit();
|
|
}
|
|
}
|
|
else {
|
|
alert("Please sign first");
|
|
}
|
|
}
|
|
function resizeCanvas() {
|
|
var ratio = Math.max(window.devicePixelRatio || 1, 1);
|
|
canvas.width = canvas.offsetWidth * ratio;
|
|
canvas.height = canvas.offsetHeight * ratio;
|
|
canvas.getContext("2d").scale(ratio, ratio);
|
|
signaturePad.clear(); // otherwise isEmpty() might return incorrect value
|
|
}
|
|
function showSignaturePad() {
|
|
$('#finalCheck').modal('show');
|
|
signaturePad = new SignaturePad(canvas);
|
|
width = $(window).width();
|
|
window.addEventListener("resize", () => {
|
|
if (width != $(window).width()) {
|
|
resizeCanvas();
|
|
width = $(window).width();
|
|
}
|
|
});
|
|
document.getElementById("finalCheck").addEventListener('shown.bs.modal', function (e) {
|
|
resizeCanvas();
|
|
});
|
|
resizeCanvas();
|
|
}
|
|
function afterSelAbs(period) {
|
|
$('#postHomeroomAbs #HR-period').attr('value', period);
|
|
$('.tobeform').attr('disabled', 'disabled');
|
|
$('.afterSelButton').attr('disabled', 'disabled');
|
|
$('#showSignPeriod').text(period);
|
|
$('#showSignSubjectName').text(periodData[period]);
|
|
var cnt = 0;
|
|
$('.tobeform').each(function (i, obj) {
|
|
if ($(this).attr('class').split(' ')[1].split('^')[1] == period &&
|
|
$(this).is(":checked")) {
|
|
cnt++;
|
|
$('#postHomeroomAbs').append('<input type="checkbox" name="' + $(this).attr('class').split(' ')[1].split('^')[0] + '^'
|
|
+ $(this).attr('class').split(' ')[1].split('^')[2]
|
|
+ '" checked="checked">');
|
|
$('#postHomeroomAbs').append('<input type="text" name="note^' + $(this).attr('class').split(' ')[1].split('^')[0] + '^'
|
|
+ $(this).attr('class').split(' ')[1].split('^')[2] + '" value="'+ $('#note-' + $(this).attr('class').split(' ')[1].split('^')[1] + '-' + $(this).attr('class').split(' ')[1].split('^')[2]).val() +'">')
|
|
}
|
|
});
|
|
if (cnt == 0) {
|
|
$('#allPresentWarning').removeAttr('hidden');
|
|
}
|
|
// show signature pad
|
|
showSignaturePad()
|
|
}
|
|
function homeroomCfrm() {
|
|
hrCfrm = true;
|
|
$('.ds').attr('hidden', 'hidden');
|
|
$('#showSignPeriod').text("HOMEROOM CONFIRM");
|
|
$('#showSignSubjectName').text("班導確認");
|
|
$('.tobeform').attr('disabled', 'disabled');
|
|
$('.afterSelButton').attr('disabled', 'disabled');
|
|
showSignaturePad();
|
|
}
|
|
function unCheckLate(string) {
|
|
document.getElementById('late^' + string).checked = false;
|
|
if (document.getElementById("absent^" + string).checked == true && $('#note-'+string.split('^')[0]+'-'+string.split('^')[1]).length == 0) {
|
|
$('.input-'+string.split('^')[0]+'-'+string.split('^')[1]).append('<input type="text" class="form-control" id="note-'+string.split('^')[0]+'-'+string.split('^')[1]+'" name="'+ string +'">')
|
|
} else if (document.getElementById("absent^" + string).checked == false) {
|
|
$('#note-'+string.split('^')[0]+'-'+string.split('^')[1]).remove();
|
|
}
|
|
}
|
|
function unCheckAbs(string) {
|
|
document.getElementById('absent^' + string).checked = false;
|
|
if (document.getElementById("late^" + string).checked == true && $('#note-'+string.split('^')[0]+'-'+string.split('^')[1]).length == 0) {
|
|
$('.input-'+string.split('^')[0]+'-'+string.split('^')[1]).append('<input type="text" class="form-control" id="note-'+string.split('^')[0]+'-'+string.split('^')[1]+'" name="'+ string +'">')
|
|
} else if (document.getElementById("late^" + string).checked == false) {
|
|
$('#note-'+string.split('^')[0]+'-'+string.split('^')[1]).remove();
|
|
}
|
|
}
|
|
function addDS() {
|
|
if ($('#dsnumbersel').val() == "" || $('#dsoffensesel').val() == "") {
|
|
return;
|
|
}
|
|
var text = $('#dsoffensesel').val()
|
|
if ($('#dsoffenseother').val() != "") {
|
|
text = text.concat(": ", $('#dsoffenseother').val());
|
|
}
|
|
indDS[$("#dsnumbersel").val()] = text;
|
|
$('#inddsview>.col').append('<div class="row"><div class="col">'+$("#dsnumbersel").val()+'</div><div class="col">'+text+'</div></div>')
|
|
$('#dsnumbersel option[value="'+$("#dsnumbersel").val()+'"]').remove();
|
|
$('#dsoffenseother').val("");
|
|
$('#dsoffensesel').val("");
|
|
$('#dsnumbersel').val("");
|
|
} |