Attendance/templates/homeroom.html

302 lines
15 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
2021-09-14 07:55:11 -07:00
<title>Attendance | Homeroom</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="stylesheet" href="/static/allpages.css">
2021-09-12 02:39:09 -07:00
<link rel="stylesheet" href="/static/homeroom.css">
</head>
<body>
<div class="container">
2021-09-14 07:55:11 -07:00
<h1>Attendance | Homeroom</h1>
<h2>{{homeroomCode[0]}}: {{homeroomCode[1]}}</h2>
2021-09-14 07:55:11 -07:00
<h2>{{currDate}}, 依照 星期{{absData[currDate]['dow']}} 課表</h2>
2021-09-12 02:39:09 -07:00
<a href="/logout"><button class="btn btn-primary">Logout 登出</button></a>
<form action="/manage/date" id="dateSelForm" method="post">
<select name="date" id="date" class="form-select" onchange="chgDate();">
2021-09-12 02:39:09 -07:00
{% for date in absData %}
{% if date == currDate %}
<option value="{{date}}" selected="selected">{{date}}</option>
{% else %}
<option value="{{date}}">{{date}}</option>
{% endif %}
{% endfor %}
</select>
</form>
<form action="/manage/homeroom_confirm" id="homeroom_confirm" method="post">
<input type="hidden" name="date" value="{{currDate}}">
2021-09-12 02:39:09 -07:00
<input type="hidden" name="homeroom" value="{{homeroomCode[0]}}^{{homeroomCode[1]}}">
<input type="hidden" id="hrCfrm-sign" name="signatureData" value="">
</form>
<div class="col">
<div class="sticky-top" style="background-color:white;">
<div class="row title">
<div class="col">HR</div>
<div class="col">Number</div>
<div class="col">Name</div>
<div class="col">Eng Name</div>
{% for i in periods %}
<div class="col" {% if currPeriod==i %} style="background-color: #ffdf81;" {% endif %}>{{i}}</div>
{% endfor %}
</div>
<div class="row title">
<div class="col"></div>
<div class="col"></div>
<div class="col"></div>
<div class="col"></div>
{% for i in periods %}
<div class="col" {% if currPeriod==i %} style="background-color: #ffdf81;" {% endif %}>
{{absData[currDate][i]['name']}}</div>
{% endfor %}
</div>
<div class="row title">
<div class="col"></div>
<div class="col"></div>
<div class="col"></div>
<div class="col"></div>
{% for i in periods %}
<div class="col" {% if currPeriod==i %} style="background-color: #ffdf81;" {% endif %}>
{{absData[currDate][i]['teacher']}}</div>
{% endfor %}
</div>
</div>
2021-09-12 02:39:09 -07:00
{% for i in homeroomData %}
<div class="row">
<div class="col">{{homeroomCode[0]}}{{homeroomCode[1]}}</div>
<div class="col">{{i}}</div>
2021-09-12 02:39:09 -07:00
<div class="col">{{ homeroomData[i]['name'] }}</div>
<div class="col">{{ homeroomData[i]['eng_name'] }}</div>
{% for j in periods %}
2021-09-12 06:59:31 -07:00
<div class="col" {% if currPeriod==j %} style="background-color: #ffdf81;" {% endif %}>
{% if 'signature' in absData[currDate][j] %}
{% if i in absData[currDate][j] %}
{% if absData[currDate][j][i] == 1 %}
2021-09-12 02:39:09 -07:00
<p class="highlightAbs n-2">X</p>
2021-09-12 06:59:31 -07:00
{% else %}
<p class="highlightAbs n-3">φ</p>
{% endif %}
{% else %}
2021-09-12 06:59:31 -07:00
{% if absData[currDate][j]['name'] != 'GP' %}
2021-09-12 02:39:09 -07:00
<p class="highlightAbs n-1">V</p>
2021-09-12 06:59:31 -07:00
{% else %}
{% if (homeroomData[i]['GP_Class'][absData[currDate][j]['teacher']] in
absData[currDate][j]['signature'])%}
2021-09-12 02:39:09 -07:00
<p class="highlightAbs n-1">V</p>
2021-09-12 06:59:31 -07:00
{% else %}
2021-09-12 02:39:09 -07:00
<p class="highlightAbs n-2"></p>
2021-09-12 06:59:31 -07:00
{% endif %}
{% endif %}
{% endif %}
{% elif absData[currDate][j]['name'] == 'GP' %}
2021-09-12 02:39:09 -07:00
<p class="highlightAbs"></p>
2021-09-12 06:59:31 -07:00
{% else %}
2021-09-12 02:39:09 -07:00
{% if 'confirm' in absData[currDate] %}
<p class="highlightAbs"></p>
{% else %}
<input type="checkbox" class="tobeform 2^{{j}}^{{i}} late" id="late^{{j}}^{{i}}"
onchange="unCheckAbs('{{j}}^{{i}}')">
<input type="checkbox" class="tobeform 1^{{j}}^{{i}} absent" id="absent^{{j}}^{{i}}"
onchange="unCheckLate('{{j}}^{{i}}')">
2021-09-12 02:39:09 -07:00
{% endif %}
<!-- <input type="checkbox" class="tobeform {{j}}^{{i}}"> -->
2021-09-12 06:59:31 -07:00
{% endif %}
2021-09-12 02:39:09 -07:00
</div>
{% endfor %}
</div>
{% endfor %}
2021-09-12 02:39:09 -07:00
<div class="row">
<div class="col"></div>
<div class="col"></div>
<div class="col"></div>
<div class="col"></div>
{% for i in periods %}
2021-09-12 06:59:31 -07:00
<div class="col" {% if currPeriod==i %} style="background-color: #ffdf81;" {% endif %}>
2021-09-12 02:39:09 -07:00
{% if ('signature' in absData[currDate][i] or absData[currDate][i]['name'] == 'GP' or
'confirm' in absData[currDate]) %}
<button class="btn btn-primary afterSelButton" disabled="disabled"
2021-09-12 06:59:31 -07:00
onclick="afterSelAbs('{{i|string}}')"></button>
2021-09-12 02:39:09 -07:00
{% else %}
<button class="btn btn-primary afterSelButton"
2021-09-12 06:59:31 -07:00
onclick="afterSelAbs('{{i|string}}')">Confirm<br>{{absData[currDate][i]['name']}}</button>
2021-09-12 02:39:09 -07:00
{% endif %}
</div>
{% endfor %}
</div>
<form action="/manage/homeroom_abs" id="postHomeroomAbs" hidden="hidden" method="post">
<input type="text" id="HR-date" name="date" value="{{currDate}}">
<input type="text" id="HR-period" name="period" value="">
<input type="text" id="HR-signatureData" name="signatureData" value="">
2021-09-14 02:49:16 -07:00
<input type="text" id="HR-notes" name="notes" value="">
2021-09-12 02:39:09 -07:00
<input type="text" id="HR-homeroom" name="homeroom" value="{{homeroomCode[0]}}^{{homeroomCode[1]}}">
</form>
{% if 'confirm' in absData[currDate] %}
<button class="btn btn-primary margin-top afterSelButton" onclick="homeroomCfrm()" disabled="disabled">
2021-09-14 07:55:11 -07:00
Homeroom Teacher Already Confirmed | 班導已確認</button>
2021-09-12 02:39:09 -07:00
{% else %}
<button class="btn btn-primary margin-top afterSelButton" onclick="homeroomCfrm()">Homeroom
2021-09-15 04:30:09 -07:00
Teacher Confirm | 班導確認</button>
{% endif %}
2021-09-12 02:39:09 -07:00
<div id="finalCheck" hidden="hidden">
<!-- show warning -->
<div class="alert alert-warning" id="allPresentWarning" role="alert" hidden="hidden">
<h4 class="alert-heading">請確認是否全班全到Please check if everyone is present!</h4>
</div>
2021-09-14 02:49:16 -07:00
<h3>Please Sign Below 請在底下簽名<br>
2021-09-12 06:59:31 -07:00
Period: <span id="showSignPeriod"></span> <br>
Subject: <span id="showSignSubjectName"></span>
</h3>
2021-09-12 02:39:09 -07:00
<div class="forSign"><canvas id="signature_pad"></canvas></div>
2021-09-14 02:49:16 -07:00
<h3>Notes 備註欄</h3>
<input type="textarea" class="form-control" name="notes" id="subjectNotes"
placeholder="Enter Notes 請輸入備註" style="width: 80%; margin-left: 10%;" row="3">
2021-09-12 02:39:09 -07:00
<button class="btn btn-secondary" type="button" onclick="signaturePad.clear()">Clear Signature</button>
<button class="btn btn-primary" type="button" onclick="submitForm()">Submit</button>
</div>
{% for c in range(periods|length + 1) %}
2021-09-14 02:49:16 -07:00
{% if c % 4 == 0 %}
<div class="row signatures">
{% endif %}
<div class="col half">
2021-09-12 02:39:09 -07:00
{% if c == 0 %}
2021-09-16 06:19:10 -07:00
<div class="row">Homeroom Teacher 導師</div>
{% if 'confirm' in absData[currDate] %}
2021-09-12 02:39:09 -07:00
<div class="row"><img src="{{absData[currDate]['confirm']}}" alt=""></div>
{% else %}
2021-09-16 06:19:10 -07:00
<div class="row"><span style="color:red;">No Signature 導師尚未簽名</span></div>
{% endif %}
{% else %}
2021-09-12 02:39:09 -07:00
{% if absData[currDate][periods[c-1]]['name'] == 'GP' %}
{% if 'signature' in absData[currDate][periods[c-1]] %}
{% for i in absData[currDate][periods[c-1]]['signature'] %}
2021-09-16 06:19:10 -07:00
<div class="row">{{periods[c-1]}}: {{absData[currDate][periods[c-1]]['teacher']}}: {{i}}:
{{absData[currDate][periods[c-1]]['names'][i]}}</div>
2021-09-14 02:49:16 -07:00
<div class="row"><img src="{{absData[currDate][periods[c-1]]['signature'][i]}}" alt=""><br>備註:
{{absData[currDate][periods[c-1]]['notes']}}</div>
2021-09-12 02:39:09 -07:00
{% endfor %}
{% else %}
<div class="row">{{periods[c-1]}}: {{absData[currDate][periods[c-1]]['teacher']}}: No Signature
</div>
<div class="row"></div>
{% endif %}
{% else %}
<div class="row">{{periods[c-1]}}: {{absData[currDate][periods[c-1]]['name']}}:
{{absData[currDate][periods[c-1]]['teacher']}}
</div>
2021-09-14 02:49:16 -07:00
<div class="row"><img src="{{absData[currDate][periods[c-1]]['signature']}}" alt=""><br>備註:
{{absData[currDate][periods[c-1]]['notes']}}</div>
2021-09-12 02:39:09 -07:00
{% endif %}
{% endif %}
</div>
2021-09-14 02:49:16 -07:00
{% if c % 4 == 3 %}
</div>
{% endif %}
{% endfor %}
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/signature_pad@2.3.2/dist/signature_pad.min.js"></script>
2021-09-12 02:44:27 -07:00
<script type="text/javascript" src="/static/jquery.min.js"></script>
<div id="loading" style="text-align:center; width:100%; display:none;"><img src="/static/loading.gif" alt=""
style="height:100%;" />
</div>
<footer>
<hr>
<p style="text-align: center;">&copy; 2021 Attendance (β) | Made by <a target="_blank"
href="https://github.com/aaronleetw">Aaron Lee 李翊愷</a> for <a target="_blank"
href="https://www.fhjh.tp.edu.tw">Taipei Fuhsing Private School</a>
2021-09-12 05:31:32 -07:00
<br>
Consultants: Mr. Raymond Tsai 蔡瑋倫老師, Alvin Tsao 曹庭睿
</p>
</footer>
<script>
2021-09-12 02:39:09 -07:00
var signaturePad, hrCfrm = false;
2021-09-12 06:59:31 -07:00
var periodData = {}
{% for i in periods %}
periodData['{{i}}'] = '{{ absData[currDate][i]['name'] }}'
{% endfor %}
function loadingAnimation() {
$('.container').hide();
$('#loading').show();
}
function chgDate() {
loadingAnimation();
document.getElementById('dateSelForm').submit();
}
2021-09-12 02:39:09 -07:00
function submitForm() {
if (!signaturePad.isEmpty()) {
loadingAnimation()
signaturePad.off();
var data = signaturePad.toDataURL('image/png');
if (hrCfrm) {
$('#hrCfrm-sign').val(data);
document.getElementById('homeroom_confirm').submit()
} else {
2021-09-14 02:49:16 -07:00
var notes = $('#subjectNotes').val();
2021-09-12 02:39:09 -07:00
document.getElementById('HR-signatureData').value = data;
2021-09-14 02:49:16 -07:00
document.getElementById('HR-notes').value = notes;
2021-09-12 02:39:09 -07:00
document.getElementById('postHomeroomAbs').submit();
}
}
else {
alert("Please sign first");
}
}
function showSignaturePad() {
$('#finalCheck').removeAttr('hidden');
var canvas = document.getElementById("signature_pad");
signaturePad = new SignaturePad(canvas);
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
}
window.addEventListener("resize", resizeCanvas);
resizeCanvas();
}
function afterSelAbs(period) {
var tobeformArr = [];
$('#postHomeroomAbs #HR-period').attr('value', period);
2021-09-12 02:39:09 -07:00
$('.tobeform').attr('disabled', 'disabled');
$('.afterSelButton').attr('disabled', 'disabled');
2021-09-12 06:59:31 -07:00
$('#showSignPeriod').text(period);
$('#showSignSubjectName').text(periodData[period]);
var cnt = 0;
2021-09-12 02:39:09 -07:00
$('.tobeform').each(function (i, obj) {
if ($(this).attr('class').split(' ')[1].split('^')[1] == period &&
2021-09-12 02:39:09 -07:00
$(this).is(":checked")) {
cnt++;
$('#postHomeroomAbs').append('<input type="checkbox" name="' + $(this).attr('class').split(' ')[1].split('^')[0] + '^'
+ $(this).attr('class').split(' ')[1].split('^')[2]
2021-09-12 02:39:09 -07:00
+ '" checked="checked">');
}
});
if (cnt == 0) {
$('#allPresentWarning').removeAttr('hidden');
}
2021-09-12 02:39:09 -07:00
// show signature pad
showSignaturePad()
}
function homeroomCfrm() {
hrCfrm = true;
$('.tobeform').attr('disabled', 'disabled');
$('.afterSelButton').attr('disabled', 'disabled');
2021-09-12 02:39:09 -07:00
showSignaturePad();
}
function unCheckLate(string) {
document.getElementById('late^' + string).checked = false;
}
function unCheckAbs(string) {
document.getElementById('absent^' + string).checked = false;
}
</script>
</body>
</html>