This commit is contained in:
2026-06-30 09:31:33 +07:00
parent c736326162
commit bbf8336664
77 changed files with 12601 additions and 556 deletions

691
client/frontend/src/app.css Normal file
View File

@@ -0,0 +1,691 @@
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800&family=Share+Tech+Mono&display=swap');
:root {
--bg-main: #f5f7fa;
--bg-card: #ffffff;
--bg-subtle: #f0f3f7;
--border-color: #e4e9f0;
--accent: #bb2126;
--accent-dark: #9e1c22;
--accent-light: #fde8e9;
--accent-glow: rgba(187, 33, 38, 0.12);
--text-primary: #1a2332;
--text-secondary: #5a6a7e;
--text-muted: #8b99a8;
--online-color: #0d9f6e;
--online-light: #e6f7f1;
--offline-color: #d63031;
--offline-light: #fdeaea;
--shadow-sm: 0 1px 3px rgba(26, 35, 50, 0.05);
--shadow-md: 0 4px 16px rgba(26, 35, 50, 0.07);
--radius-sm: 8px;
--radius-md: 12px;
--radius-lg: 16px;
--transition: 0.2s ease;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
height: 100%;
overflow: hidden;
}
body {
margin: 0;
background-color: var(--bg-main);
color: var(--text-primary);
font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
overflow: hidden;
height: 100%;
width: 100%;
-webkit-font-smoothing: antialiased;
}
#app {
width: 100%;
height: 100%;
max-height: 100vh;
display: flex;
overflow: hidden;
}
/* ── Cards ── */
.card {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: var(--radius-lg);
box-shadow: var(--shadow-sm);
padding: 1.75rem;
transition: var(--transition);
}
/* ── Login Screen ── */
.login-prompt-container {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
padding: 1.5rem;
background: var(--bg-main);
overflow: hidden;
}
.login-prompt-container .card {
max-width: 420px;
width: 100%;
max-height: calc(100vh - 3rem);
overflow-y: auto;
text-align: center;
animation: floatIn 0.4s ease forwards;
}
.login-brand-row {
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
margin-bottom: 1.5rem;
}
.login-logo {
width: 48px;
height: 48px;
background: var(--accent);
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 0.9rem;
color: white;
flex-shrink: 0;
}
.login-brand-text {
text-align: left;
}
.login-brand-name {
font-size: 1.1rem;
font-weight: 800;
color: var(--text-primary);
letter-spacing: -0.3px;
line-height: 1.2;
}
.login-brand-sub {
font-size: 0.72rem;
font-weight: 500;
color: var(--accent);
}
.login-title {
font-size: 1.35rem;
font-weight: 800;
margin-bottom: 0.6rem;
color: var(--text-primary);
letter-spacing: -0.3px;
}
.login-desc {
color: var(--text-secondary);
font-size: 0.875rem;
line-height: 1.65;
margin-bottom: 1.75rem;
}
/* ── Dashboard Layout ── */
.dashboard-wrapper {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
max-height: 100vh;
padding: 1.25rem 1.5rem;
box-sizing: border-box;
overflow: hidden;
animation: fadeIn 0.35s ease-out;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
padding-bottom: 0.85rem;
border-bottom: 1px solid var(--border-color);
flex-shrink: 0;
}
.brand {
display: flex;
align-items: center;
gap: 0.75rem;
}
.brand-logo {
width: 38px;
height: 38px;
background: var(--accent);
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 0.85rem;
color: white;
flex-shrink: 0;
}
.brand-text {
display: flex;
flex-direction: column;
gap: 0.05rem;
}
.brand-name {
font-weight: 800;
font-size: 1.05rem;
letter-spacing: -0.3px;
color: var(--text-primary);
line-height: 1.2;
}
.brand-sub {
font-size: 0.7rem;
font-weight: 500;
color: var(--accent);
}
.main-grid {
display: grid;
grid-template-columns: minmax(220px, 260px) 1fr;
gap: 1rem;
flex: 1;
min-height: 0;
overflow: hidden;
}
/* ── Profile Card ── */
.profile-card {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
height: 100%;
min-height: 0;
overflow-y: auto;
justify-content: flex-start;
padding-top: 1rem;
}
.avatar-container {
position: relative;
margin-bottom: 1.25rem;
}
.avatar {
width: 84px;
height: 84px;
border-radius: 50%;
object-fit: cover;
border: 3px solid var(--accent-light);
padding: 3px;
background: var(--bg-subtle);
}
.status-indicator {
position: absolute;
bottom: 6px;
right: 6px;
width: 14px;
height: 14px;
border-radius: 50%;
border: 2.5px solid #fff;
}
.status-indicator.online {
background-color: var(--online-color);
animation: pulseGreen 2s infinite;
}
.status-indicator.offline {
background-color: var(--offline-color);
animation: pulseRed 2s infinite;
}
.student-name {
margin: 0;
font-size: 1.2rem;
font-weight: 700;
color: var(--text-primary);
letter-spacing: -0.3px;
}
.student-code {
background: var(--accent-light);
color: var(--accent);
padding: 3px 10px;
border-radius: 6px;
font-size: 0.8rem;
font-weight: 700;
margin-top: 0.4rem;
margin-bottom: 0.5rem;
border: 1px solid rgba(187, 33, 38, 0.15);
letter-spacing: 0.3px;
display: inline-block;
}
.student-email {
margin: 0;
color: var(--text-muted);
font-size: 0.82rem;
}
.divider {
width: 100%;
height: 1px;
background: var(--border-color);
margin: 1.25rem 0;
}
.profile-info-row {
display: flex;
justify-content: space-between;
width: 100%;
font-size: 0.82rem;
margin-bottom: 0.6rem;
}
.profile-info-row span {
color: var(--text-muted);
}
.profile-info-row strong {
color: var(--text-primary);
font-weight: 600;
}
/* ── Right Column ── */
.right-column {
display: flex;
flex-direction: column;
gap: 0.85rem;
overflow: hidden;
height: 100%;
min-height: 0;
}
.status-banner {
padding: 0.75rem 1rem;
display: flex;
align-items: flex-start;
gap: 0.75rem;
border-left: 3px solid var(--accent);
flex-shrink: 0;
}
.status-banner-main {
flex: 1;
min-width: 0;
}
.status-banner-top {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.4rem 0.65rem;
margin-bottom: 0.25rem;
}
.monitor-mode-tag {
font-size: 0.68rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.04em;
padding: 0.15rem 0.45rem;
border-radius: 4px;
background: var(--accent-light);
color: var(--accent);
}
.status-class-line {
font-size: 0.78rem;
font-weight: 600;
color: var(--text-secondary);
}
.status-banner-sub {
font-size: 0.78rem;
color: var(--text-muted);
margin-top: 0.2rem;
}
.status-banner.mode-learning { border-left-color: var(--online-color); }
.status-banner.mode-learning .monitor-mode-tag { background: var(--online-light); color: var(--online-color); }
.status-banner.mode-outside { border-left-color: #94a3b8; }
.status-banner.mode-outside .monitor-mode-tag { background: #f1f5f9; color: #64748b; }
.status-banner.mode-config { border-left-color: #f59e0b; }
.status-banner.mode-config .monitor-mode-tag { background: #fffbeb; color: #b45309; }
.status-banner.mode-exam { border-left-color: #7c3aed; }
.status-banner.mode-exam .monitor-mode-tag { background: #f5f3ff; color: #6d28d9; }
.stats-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.65rem;
}
.stats-grid--two {
grid-template-columns: 1fr 1fr;
}
.connectivity-note {
font-size: 0.75rem;
line-height: 1.45;
color: var(--text-muted);
padding: 0.65rem 0.85rem;
background: #f8fafc;
border: 1px solid var(--border-color);
}
.connectivity-note strong {
color: var(--text-primary);
}
.conn-split {
font-weight: 600;
color: var(--online-color);
}
.conn-split.offline-text {
color: var(--offline-color);
}
.card-title-row {
display: flex;
justify-content: space-between;
align-items: baseline;
gap: 0.5rem;
margin-bottom: 0.65rem;
}
.card-title-sub {
font-size: 0.75rem;
color: var(--text-muted);
font-family: monospace;
}
.clock-display-summary {
margin-bottom: 0.75rem;
padding-bottom: 0.75rem;
border-bottom: 1px dashed var(--border-color);
}
.shifts-wrap {
overflow: auto;
max-height: min(32vh, 220px);
}
.shifts-table {
width: 100%;
border-collapse: collapse;
font-size: 0.76rem;
}
.shifts-table th {
text-align: left;
padding: 0.4rem 0.35rem;
color: var(--text-muted);
font-weight: 600;
border-bottom: 1px solid var(--border-color);
position: sticky;
top: 0;
background: #fff;
}
.shifts-table td {
padding: 0.45rem 0.35rem;
border-bottom: 1px solid #f1f5f9;
vertical-align: middle;
}
.shift-row-active {
background: #f0fdf8;
}
.shift-now {
font-size: 0.65rem;
color: var(--online-color);
font-weight: 700;
text-transform: uppercase;
}
.shift-time {
font-family: monospace;
font-size: 0.72rem;
color: var(--text-muted);
}
.time-online { color: var(--online-color); font-family: monospace; font-weight: 600; }
.time-offline { color: var(--offline-color); font-family: monospace; }
.att-badge {
display: inline-block;
padding: 0.12rem 0.4rem;
border-radius: 4px;
font-size: 0.68rem;
font-weight: 600;
white-space: nowrap;
}
.att-ok { background: var(--online-light); color: var(--online-color); }
.att-late { background: #fffbeb; color: #b45309; }
.att-leave { background: #eff6ff; color: #2563eb; }
.att-absent { background: var(--offline-light); color: var(--offline-color); }
.att-pending { background: #f1f5f9; color: #64748b; }
.shifts-empty {
padding: 1rem;
text-align: center;
color: var(--text-muted);
font-size: 0.82rem;
}
.status-banner-icon {
width: 36px;
height: 36px;
background: var(--accent-light);
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.1rem;
flex-shrink: 0;
}
.status-banner-label {
font-size: 0.7rem;
color: var(--text-muted);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.status-banner-value {
font-size: 0.9rem;
font-weight: 600;
color: var(--text-primary);
}
.stat-card {
display: flex;
align-items: center;
gap: 0.85rem;
padding: 0.9rem 1rem;
}
.stat-icon-wrap {
width: 40px;
height: 40px;
background: var(--bg-subtle);
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
flex-shrink: 0;
}
.stat-info {
display: flex;
flex-direction: column;
gap: 0.15rem;
min-width: 0;
}
.stat-title {
font-size: 0.72rem;
color: var(--text-muted);
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
}
.stat-value {
font-size: 0.95rem;
font-weight: 700;
color: var(--text-primary);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* ── Clocks ── */
.clocks-card {
display: flex;
flex-direction: column;
gap: 0.65rem;
flex: 1;
min-height: 0;
overflow: hidden;
}
.card-title {
font-size: 0.85rem;
font-weight: 700;
color: var(--text-primary);
letter-spacing: -0.2px;
flex-shrink: 0;
}
.clock-display {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.85rem;
flex: 1;
min-height: 0;
}
.clock-item {
background: var(--bg-subtle);
border: 1px solid var(--border-color);
border-radius: var(--radius-md);
padding: 0.75rem 0.85rem;
text-align: center;
transition: var(--transition);
display: flex;
flex-direction: column;
justify-content: center;
}
.clock-label {
font-size: 0.68rem;
color: var(--text-muted);
font-weight: 600;
margin-bottom: 0.4rem;
letter-spacing: 0.04em;
text-transform: uppercase;
}
.clock-value {
font-size: clamp(1.4rem, 3.5vw, 1.85rem);
font-weight: 800;
font-family: 'Share Tech Mono', monospace;
letter-spacing: 1px;
}
.clock-value.online {
color: var(--online-color);
}
.clock-value.offline {
color: var(--offline-color);
}
/* ── Buttons ── */
.btn {
padding: 0.65rem 1.15rem;
border-radius: var(--radius-sm);
border: none;
font-weight: 600;
font-size: 0.875rem;
font-family: 'Be Vietnam Pro', sans-serif;
cursor: pointer;
transition: var(--transition);
}
.btn-primary {
background: var(--accent);
color: white;
box-shadow: 0 2px 8px var(--accent-glow);
}
.btn-primary:hover {
background: var(--accent-dark);
transform: translateY(-1px);
box-shadow: 0 4px 14px rgba(187, 33, 38, 0.25);
}
.btn-logout {
background: var(--bg-subtle);
color: var(--text-secondary);
border: 1px solid var(--border-color);
padding: 0.5rem 0.9rem;
font-size: 0.82rem;
}
.btn-logout:hover {
background: var(--offline-light);
color: var(--offline-color);
border-color: rgba(214, 48, 49, 0.25);
}
/* ── Animations ── */
@keyframes floatIn {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes pulseGreen {
0% { box-shadow: 0 0 0 0 rgba(13, 159, 110, 0.35); }
70% { box-shadow: 0 0 0 8px rgba(13, 159, 110, 0); }
100% { box-shadow: 0 0 0 0 rgba(13, 159, 110, 0); }
}
@keyframes pulseRed {
0% { box-shadow: 0 0 0 0 rgba(214, 48, 49, 0.35); }
70% { box-shadow: 0 0 0 8px rgba(214, 48, 49, 0); }
100% { box-shadow: 0 0 0 0 rgba(214, 48, 49, 0); }
}

View File

@@ -0,0 +1,93 @@
Copyright 2016 The Nunito Project Authors (contact@sansoxygen.com),
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
-----------------------------------------------------------
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
-----------------------------------------------------------
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting -- in part or in whole -- any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

368
client/frontend/src/main.js Normal file
View File

@@ -0,0 +1,368 @@
import './style.css';
import './app.css';
// Trạng thái cục bộ
let loggedIn = false;
let studentInfo = null;
let stats = {
wifiSSID: '',
onlineSecs: 0,
offlineSecs: 0,
wsConnected: false,
serverReachable: false,
allowedApps: '',
monitorMode: '',
monitorLabel: '',
className: '',
classCode: '',
currentPeriod: 0,
currentCourseName: '',
shifts: []
};
// Quản lý webcam
let webcamStream = null;
let webcamInterval = null;
const webcamVideo = document.createElement('video');
webcamVideo.autoplay = true;
webcamVideo.playsInline = true;
webcamVideo.style.display = 'none';
document.body.appendChild(webcamVideo);
const webcamCanvas = document.createElement('canvas');
webcamCanvas.width = 320;
webcamCanvas.height = 240;
webcamCanvas.style.display = 'none';
document.body.appendChild(webcamCanvas);
function init() {
if (typeof window.go === 'undefined' || typeof window.go.main === 'undefined') {
setTimeout(init, 200);
return;
}
window.runtime.EventsOn('start_webcam_stream', startWebcam);
window.runtime.EventsOn('stop_webcam_stream', stopWebcam);
checkLogin();
}
async function checkLogin() {
try {
const isLogged = await window.go.main.App.CheckLoginStatus();
if (isLogged) {
loggedIn = true;
studentInfo = await window.go.main.App.GetStudentInfo();
renderDashboard();
startStatsTicker();
} else {
loggedIn = false;
renderLoginPrompt();
}
} catch (err) {
console.error('Error checking login status:', err);
}
}
function renderLoginPrompt() {
document.querySelector('#app').innerHTML = `
<div class="login-prompt-container">
<div class="card">
<div class="login-brand-row">
<div class="login-logo">RE</div>
<div class="login-brand-text">
<div class="login-brand-name">Simple Care</div>
<div class="login-brand-sub">Rikkei Education</div>
</div>
</div>
<h2 class="login-title">Đăng nhập sinh viên</h2>
<p class="login-desc">
Ứng dụng sẽ chuyển hướng bạn đến trang Rikkei Portal. Sau khi đăng nhập thành công, hệ thống sẽ tự động đồng bộ tài khoản học tập của bạn.
</p>
<button class="btn btn-primary" id="btn-goto-login" style="width: 100%; padding: 0.75rem;">
Đi đến trang đăng nhập
</button>
</div>
</div>
`;
document.getElementById('btn-goto-login').addEventListener('click', () => {
window.go.main.App.NavigateToLogin();
});
}
function monitorModeMeta(mode) {
switch (mode) {
case 'learning':
return { icon: '🛡️', label: 'Đang giám sát', cls: 'mode-learning' };
case 'exam':
return { icon: '📝', label: 'Phòng thi', cls: 'mode-exam' };
case 'outside_schedule':
return { icon: '😴', label: 'Ngoài giờ học', cls: 'mode-outside' };
case 'not_configured':
return { icon: '⚙️', label: 'Chưa sẵn sàng', cls: 'mode-config' };
default:
return { icon: '⏳', label: 'Đang kết nối', cls: 'mode-pending' };
}
}
function attendanceClass(status) {
if (status === 4) return 'att-ok';
if (status === 3) return 'att-late';
if (status === 1 || status === 2) return 'att-leave';
if (status === 0) return 'att-absent';
return 'att-pending';
}
function renderShiftsTable(shifts) {
if (!shifts || shifts.length === 0) {
return '<div class="shifts-empty">Hôm nay không có ca học theo lịch lớp.</div>';
}
return `
<table class="shifts-table">
<thead>
<tr>
<th>Ca</th>
<th>Môn học</th>
<th>Giờ</th>
<th>Trực tuyến</th>
<th>Ngoại tuyến</th>
<th>Điểm danh</th>
</tr>
</thead>
<tbody>
${shifts.map(s => `
<tr class="${s.isActiveNow ? 'shift-row-active' : ''}">
<td><strong>Ca ${s.period}</strong>${s.isActiveNow ? ' <span class="shift-now">đang học</span>' : ''}</td>
<td>${s.courseName || '—'}</td>
<td class="shift-time">${s.startTime}${s.endTime}</td>
<td class="time-online">${formatDuration(s.onlineSeconds || 0)}</td>
<td class="time-offline">${formatDuration(s.offlineSeconds || 0)}</td>
<td><span class="att-badge ${attendanceClass(s.attendanceStatus)}">${s.attendanceLabel || 'Chưa tính'}</span></td>
</tr>
`).join('')}
</tbody>
</table>
`;
}
function renderDashboard() {
if (!studentInfo) return;
const mode = monitorModeMeta(stats.monitorMode);
const classLine = stats.className
? `${stats.className}${stats.classCode ? ` (${stats.classCode})` : ''}`
: 'Đang xác định lớp...';
document.querySelector('#app').innerHTML = `
<div class="dashboard-wrapper">
<header class="header">
<div class="brand">
<div class="brand-logo">RE</div>
<div class="brand-text">
<span class="brand-name">Simple Care</span>
<span class="brand-sub">Rikkei Education</span>
</div>
</div>
<button class="btn btn-logout" id="btn-logout">Đăng xuất</button>
</header>
<div class="main-grid">
<div class="card profile-card">
<div class="avatar-container">
<img src="${studentInfo.avatar || 'https://via.placeholder.com/150'}" alt="Avatar" class="avatar" />
<div class="status-indicator ${stats.serverReachable ? 'online' : 'offline'}"></div>
</div>
<h2 class="student-name">${studentInfo.fullName}</h2>
<div class="student-code">${studentInfo.studentCode}</div>
<p class="student-email">${studentInfo.email}</p>
<div class="divider"></div>
<div class="profile-info-row">
<span>Lớp</span>
<strong id="profile-class">${classLine}</strong>
</div>
<div class="profile-info-row">
<span>Điện thoại</span>
<strong>${studentInfo.phone || 'Chưa cung cấp'}</strong>
</div>
</div>
<div class="right-column">
<div class="card status-banner ${mode.cls}">
<div class="status-banner-icon" id="status-icon">${mode.icon}</div>
<div class="status-banner-main">
<div class="status-banner-top">
<span class="monitor-mode-tag" id="monitor-mode-tag">${mode.label}</span>
<span class="status-class-line" id="status-class-line">${classLine}</span>
</div>
<div class="status-banner-value" id="status-message">${stats.monitorLabel || stats.statusMsg || 'Đang kết nối...'}</div>
<div class="status-banner-sub" id="status-sub">
${stats.currentPeriod > 0 && stats.currentCourseName
? `Ca ${stats.currentPeriod} · ${stats.currentCourseName}`
: 'Theo dõi theo lịch học của lớp'}
</div>
</div>
</div>
<div class="stats-grid stats-grid--two">
<div class="card stat-card">
<div class="stat-icon-wrap">📡</div>
<div class="stat-info">
<div class="stat-title">WiFi</div>
<div class="stat-value" id="wifi-ssid">${stats.wifiSSID || 'Đang quét...'}</div>
</div>
</div>
<div class="card stat-card">
<div class="stat-icon-wrap">🖥️</div>
<div class="stat-info">
<div class="stat-title">Máy chủ</div>
<div class="stat-value" id="server-status" style="color: ${stats.serverReachable ? 'var(--online-color)' : 'var(--offline-color)'}">
${stats.serverReachable ? 'Đã kết nối' : 'Mất kết nối'}
</div>
</div>
</div>
</div>
<div class="clocks-card card">
<div class="card-title-row">
<div class="card-title">Hôm nay — theo ca</div>
<div class="card-title-sub" id="session-date">${stats.sessionDate || ''}</div>
</div>
<div class="clock-display clock-display-summary">
<div class="clock-item">
<div class="clock-label">Tổng trực tuyến</div>
<div class="clock-value online" id="clock-online">00:00:00</div>
</div>
<div class="clock-item">
<div class="clock-label">Tổng ngoại tuyến</div>
<div class="clock-value offline" id="clock-offline">00:00:00</div>
</div>
</div>
<div class="shifts-wrap" id="shifts-wrap">
${renderShiftsTable(stats.shifts)}
</div>
</div>
</div>
</div>
</div>
`;
document.getElementById('btn-logout').addEventListener('click', async () => {
if (confirm('Bạn có chắc chắn muốn đăng xuất khỏi ứng dụng giám sát?')) {
loggedIn = false;
studentInfo = null;
stopWebcam();
await window.go.main.App.Logout();
}
});
}
function formatDuration(totalSeconds) {
const hrs = Math.floor(totalSeconds / 3600);
const mins = Math.floor((totalSeconds % 3600) / 60);
const secs = totalSeconds % 60;
const pad = (num) => String(num).padStart(2, '0');
return `${pad(hrs)}:${pad(mins)}:${pad(secs)}`;
}
function startStatsTicker() {
setInterval(async () => {
if (!loggedIn) return;
try {
const freshStats = await window.go.main.App.GetStats();
stats = { ...stats, ...freshStats };
if (!Array.isArray(stats.shifts)) stats.shifts = [];
const wifiEl = document.getElementById('wifi-ssid');
if (wifiEl) wifiEl.innerText = stats.wifiSSID || 'Không có WiFi';
const serverEl = document.getElementById('server-status');
if (serverEl) {
serverEl.innerText = stats.serverReachable ? 'Đã kết nối' : 'Mất kết nối';
serverEl.style.color = stats.serverReachable ? 'var(--online-color)' : 'var(--offline-color)';
}
const statusMsgEl = document.getElementById('status-message');
if (statusMsgEl) {
statusMsgEl.innerText = stats.monitorLabel || stats.statusMsg || 'Đang kết nối...';
}
const mode = monitorModeMeta(stats.monitorMode);
const statusIconEl = document.getElementById('status-icon');
if (statusIconEl) statusIconEl.innerText = mode.icon;
const modeTagEl = document.getElementById('monitor-mode-tag');
if (modeTagEl) modeTagEl.innerText = mode.label;
const banner = document.querySelector('.status-banner');
if (banner) banner.className = `card status-banner ${mode.cls}`;
const classLine = stats.className
? `${stats.className}${stats.classCode ? ` (${stats.classCode})` : ''}`
: 'Đang xác định lớp...';
const classLineEl = document.getElementById('status-class-line');
if (classLineEl) classLineEl.innerText = classLine;
const profileClassEl = document.getElementById('profile-class');
if (profileClassEl) profileClassEl.innerText = classLine;
const statusSubEl = document.getElementById('status-sub');
if (statusSubEl) {
statusSubEl.innerText = stats.currentPeriod > 0 && stats.currentCourseName
? `Ca ${stats.currentPeriod} · ${stats.currentCourseName}`
: 'Theo dõi theo lịch học của lớp';
}
const onlineEl = document.getElementById('clock-online');
if (onlineEl) onlineEl.innerText = formatDuration(stats.onlineSecs || 0);
const offlineEl = document.getElementById('clock-offline');
if (offlineEl) offlineEl.innerText = formatDuration(stats.offlineSecs || 0);
const shiftsWrap = document.getElementById('shifts-wrap');
if (shiftsWrap) shiftsWrap.innerHTML = renderShiftsTable(stats.shifts);
const sessionDateEl = document.getElementById('session-date');
if (sessionDateEl && stats.sessionDate) sessionDateEl.innerText = stats.sessionDate;
const indicator = document.querySelector('.status-indicator');
if (indicator) {
indicator.className = `status-indicator ${stats.serverReachable ? 'online' : 'offline'}`;
}
} catch (err) {
console.error('Error fetching stats:', err);
}
}, 1000);
}
async function startWebcam() {
if (webcamStream) return;
try {
webcamStream = await navigator.mediaDevices.getUserMedia({
video: { width: 320, height: 240, frameRate: { max: 10 } }
});
webcamVideo.srcObject = webcamStream;
webcamInterval = setInterval(() => {
const ctx = webcamCanvas.getContext('2d');
if (ctx) {
ctx.drawImage(webcamVideo, 0, 0, webcamCanvas.width, webcamCanvas.height);
const dataUrl = webcamCanvas.toDataURL('image/jpeg', 0.4);
window.go.main.App.SendWebcamFrame(dataUrl);
}
}, 250);
} catch (err) {
console.error('Failed to open webcam:', err);
}
}
function stopWebcam() {
if (webcamInterval) {
clearInterval(webcamInterval);
webcamInterval = null;
}
if (webcamStream) {
webcamStream.getTracks().forEach(track => track.stop());
webcamStream = null;
}
webcamVideo.srcObject = null;
}
init();

View File

@@ -0,0 +1,14 @@
html {
height: 100%;
overflow: hidden;
}
body {
margin: 0;
height: 100%;
overflow: hidden;
}
#app {
height: 100%;
}