Files
cpone_dashboard/cpone-dashboard/templates/dashboard/index.html
2026-04-30 14:27:01 +07:00

307 lines
12 KiB
HTML

{{define "title"}}Dashboard — CpOne{{end}}
{{define "header-title"}}MCU Live Dashboard{{end}}
{{define "content"}}
{{$proj := .Project}}
<style>
@keyframes sseFlash {
0% { box-shadow: 0 0 0 0 rgba(59, 80, 160, 0.45); background-color: #eef2ff; }
100% { box-shadow: 0 0 0 0 rgba(59, 80, 160, 0); background-color: transparent; }
}
.sse-updated {
animation: sseFlash 3.8s ease-out;
}
</style>
<!-- SSE wrapper — satu koneksi, semua section dapat update otomatis -->
<div hx-ext="sse" sse-connect="{{b "/dashboard/stream"}}?mode=daily&date={{.DateFrom}}">
<!-- Project Banner -->
<section class="card p-5">
<div class="flex flex-col gap-4 lg:flex-row lg:items-center lg:justify-between">
<div>
<div class="flex items-center gap-2">
<p class="text-xs font-semibold uppercase tracking-widest text-brand-500">Ongoing Project</p>
{{if .IsLive}}
<span class="flex items-center gap-1 rounded-full bg-red-100 px-2 py-0.5 text-xs font-semibold text-red-600">
<span class="h-1.5 w-1.5 rounded-full bg-red-500 animate-pulse"></span> LIVE
</span>
{{end}}
</div>
<h2 class="mt-1 text-lg font-semibold text-slate-900">{{$proj.Label}}</h2>
<p class="mt-0.5 text-sm text-slate-500">
{{$proj.Number}} &bull; {{$proj.CorporateName}} &bull;
<span class="num">{{$proj.StartDate | fmtDate}}</span> &ndash; <span class="num">{{$proj.EndDate | fmtDate}}</span>
</p>
</div>
<div class="flex flex-wrap items-center gap-3">
<a href="{{b "/projects"}}" class="rounded-lg border border-slate-200 bg-white px-3 py-1.5 text-xs font-semibold text-slate-600 transition hover:border-brand-400 hover:text-brand-600">
Ganti project
</a>
<form method="get" action="{{b "/dashboard"}}" class="flex flex-wrap items-center gap-2" id="dashboard-filter-form">
<input type="hidden" name="mode" value="daily"/>
<label class="text-xs font-medium text-slate-500">Tanggal Check-in</label>
<select name="date"
id="dashboard-date"
onchange="this.form.submit()"
class="num rounded-lg border border-slate-200 bg-slate-50 px-3 py-1.5 text-sm text-slate-700
focus:border-brand-400 focus:outline-none focus:ring-2 focus:ring-brand-200">
{{if .AvailableDates}}
{{range .AvailableDates}}
<option value="{{.}}" {{if eq . $.DateFrom}}selected{{end}}>{{. | fmtDate}}</option>
{{end}}
{{else}}
<option value="{{.DateFrom}}" selected>{{.DateFrom | fmtDate}}</option>
{{end}}
</select>
<button type="submit"
class="rounded-lg bg-brand-500 px-3 py-1.5 text-xs font-semibold text-white transition hover:bg-brand-600">
Lihat
</button>
</form>
{{if gt .KPI.InvitedStaff 0}}
<div class="rounded-xl bg-brand-50 px-3 py-2 text-center">
<p class="text-xs text-slate-500">Invited Staff</p>
<p class="num text-sm font-semibold text-brand-600">{{.KPI.InvitedStaff}}</p>
</div>
{{end}}
</div>
</div>
</section>
<!-- KPI Cards — SSE swap -->
<section id="sse-kpi" class="grid gap-4 sm:grid-cols-3"
sse-swap="kpi" hx-swap="innerHTML">
{{range $i := seq 3}}
<div class="card h-28 animate-pulse bg-slate-50"></div>
{{end}}
</section>
<!-- TAT + TAT Chart -->
<section class="grid gap-5 xl:grid-cols-[1fr_2fr]">
<article class="card border-l-4 border-l-brand-500 p-5">
<div class="flex items-start justify-between gap-3">
<div>
<p class="text-xs font-semibold uppercase tracking-widest text-brand-500">Avg TAT by Hour</p>
<p class="mt-0.5 text-sm font-medium text-slate-600">Check-in → Check-out</p>
</div>
<span class="num rounded-full bg-brand-50 px-3 py-1 text-xs font-semibold text-brand-600">
{{.DateFrom | fmtDate}}
</span>
</div>
{{if gt .TAT.CheckedOut 0}}
<p class="num mt-5 text-4xl font-semibold text-slate-900">
{{div .TAT.AvgMinutes 60}}<span class="text-xl text-slate-400">h</span>
{{mod .TAT.AvgMinutes 60}}<span class="text-xl text-slate-400">m</span>
</p>
<p class="mt-1 text-xs text-slate-400">Average turnaround untuk pasien yang sudah selesai</p>
<div class="mt-4 grid grid-cols-2 gap-2">
<div class="rounded-xl bg-slate-50 px-2 py-2.5 text-center">
<p class="text-xs text-slate-400">Fastest</p>
<p class="num mt-1 text-sm font-semibold text-slate-700">
{{div .TAT.Fastest 60}}h {{mod .TAT.Fastest 60}}m
</p>
</div>
<div class="rounded-xl bg-slate-50 px-2 py-2.5 text-center">
<p class="text-xs text-slate-400">Median</p>
<p class="num mt-1 text-sm font-semibold text-slate-700">
{{div .TAT.Median 60}}h {{mod .TAT.Median 60}}m
</p>
</div>
</div>
{{else}}
<p class="mt-6 text-sm text-slate-400">Belum ada data checkout pada tanggal ini.</p>
{{end}}
</article>
<article class="card p-5">
<div class="mb-4 flex items-center justify-between">
<h2 class="text-sm font-semibold text-slate-700">Average TAT by Hour</h2>
<span class="text-xs text-slate-400">Hourly average across selected date(s)</span>
</div>
<div id="tat-chart" class="h-52 w-full"></div>
</article>
</section>
<!-- Station Status + Arrival List — SSE swap -->
<section class="grid gap-5 xl:grid-cols-3">
<article id="sse-stations" class="card xl:col-span-2 overflow-hidden"
sse-swap="stations" hx-swap="innerHTML">
<div class="flex items-center justify-between border-b border-slate-100 px-5 py-3">
<h2 class="text-sm font-semibold text-slate-700">Station Status</h2>
<span class="flex items-center gap-1.5 text-xs font-medium text-slate-400 animate-pulse">
<span class="h-1.5 w-1.5 rounded-full bg-slate-300"></span> Connecting...
</span>
</div>
<div class="p-5 text-sm text-slate-400">Memuat data...</div>
</article>
<article id="sse-arrivals" class="card overflow-hidden"
sse-swap="arrivals" hx-swap="innerHTML">
<div class="flex items-center justify-between border-b border-slate-100 px-5 py-3">
<h2 class="text-sm font-semibold text-slate-700">Arrival List</h2>
<a href="{{b "/arrival"}}" class="text-xs font-medium text-brand-500 hover:text-brand-700">View all</a>
</div>
<div class="p-5 text-sm text-slate-400">Memuat data...</div>
</article>
</section>
<!-- Trend Chart -->
<section>
<article class="card p-5">
<div class="mb-4 flex items-center justify-between">
<h2 class="text-sm font-semibold text-slate-700">Arrival to Verification Trend by Hour</h2>
<span class="num text-xs text-slate-400">
{{.DateFrom | fmtDate}}
</span>
</div>
<div id="trend-chart" class="h-64 w-full"></div>
</article>
</section>
</div><!-- end SSE wrapper -->
<!-- Modal: Semua Pasien -->
<dialog id="patients-modal"
class="w-full max-w-6xl rounded-2xl border border-slate-200 bg-white shadow-2xl p-0 backdrop:bg-slate-900/50"
onclick="if(event.target===this)this.close()">
<div class="flex flex-col max-h-[85vh]">
<!-- Header -->
<div class="flex items-center justify-between border-b border-slate-100 px-6 py-4 flex-shrink-0">
<div>
<h2 class="text-base font-semibold text-slate-900">Semua Pasien</h2>
<p id="patients-modal-subtitle" class="mt-0.5 text-xs text-slate-400"></p>
</div>
<button onclick="document.getElementById('patients-modal').close()"
class="flex h-8 w-8 items-center justify-center rounded-lg text-slate-400 hover:bg-slate-100 hover:text-slate-600 transition-colors">
<svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12"/>
</svg>
</button>
</div>
<!-- Body -->
<div id="patients-modal-body" class="overflow-auto flex-1 min-h-0">
<div class="flex items-center justify-center py-16 text-slate-400">
<svg class="h-5 w-5 animate-spin mr-2 text-brand-400" fill="none" viewBox="0 0 24 24">
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8v8H4z"></path>
</svg>
Memuat data...
</div>
</div>
</div>
</dialog>
<script>
function fmtDate(s) {
if (!s) return '';
const [y, m, d] = s.split('-');
return d + '/' + m + '/' + y;
}
function openPatientsModal() {
const params = new URLSearchParams(window.location.search);
const modal = document.getElementById('patients-modal');
const body = document.getElementById('patients-modal-body');
const subtitle = document.getElementById('patients-modal-subtitle');
const mode = params.get('mode') || 'daily';
const date = params.get('date') || '';
const dateEnd = params.get('date_end') || '';
if (mode === 'daily') {
subtitle.textContent = date ? 'Tanggal: ' + fmtDate(date) : 'Hari ini';
} else {
subtitle.textContent = 'Periode: ' + fmtDate(date) + (dateEnd ? ' s/d ' + fmtDate(dateEnd) : '');
}
body.innerHTML = '<div class="flex items-center justify-center py-16 text-slate-400"><svg class="h-5 w-5 animate-spin mr-2 text-brand-400" fill="none" viewBox="0 0 24 24"><circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle><path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8v8H4z"></path></svg>Memuat data...</div>';
modal.showModal();
fetch('{{b "/dashboard/patients"}}?' + params.toString())
.then(r => r.text())
.then(html => { body.innerHTML = html; })
.catch(() => { body.innerHTML = '<p class="p-6 text-sm text-red-500">Gagal memuat data.</p>'; });
}
(function() {
const sseTargets = new Set(['sse-kpi', 'sse-stations', 'sse-arrivals']);
document.body.addEventListener('htmx:afterSwap', function (evt) {
const target = evt.detail && evt.detail.target ? evt.detail.target : null;
if (!target || !target.id || !sseTargets.has(target.id)) return;
// Skip first hydration so highlight means "new/update", not initial render.
if (!target.dataset.sseHydrated) {
target.dataset.sseHydrated = '1';
return;
}
target.classList.remove('sse-updated');
void target.offsetWidth;
target.classList.add('sse-updated');
});
const palette = ['#3b50a0', '#6677d6', '#10b981', '#f59e0b'];
const tatData = {{.TATChart}};
const trendData = {{.TrendChart}};
const tatEl = document.getElementById('tat-chart');
if (tatEl && tatData.labels && tatData.labels.length) {
const tatChart = echarts.init(tatEl);
tatChart.setOption({
color: palette,
tooltip: {
trigger: 'axis',
formatter: p => `${p[0].axisValue}<br/>Avg TAT: <b>${Math.round(p[0].data)} mnt</b>`
},
grid: { left: 50, right: 20, top: 16, bottom: 28 },
xAxis: {
type: 'category', data: tatData.labels,
axisLine: { lineStyle: { color: '#e2e8f0' } }, axisTick: { show: false }
},
yAxis: {
type: 'value', name: 'Mnt',
nameTextStyle: { color: '#94a3b8', fontSize: 11 },
splitLine: { lineStyle: { color: '#f1f5f9' } }
},
series: [{
name: 'Avg TAT', type: 'bar', barWidth: 24, data: tatData.values,
itemStyle: { borderRadius: [6, 6, 0, 0], color: '#3b50a0' }
}]
});
window.addEventListener('resize', () => tatChart.resize());
}
const trendEl = document.getElementById('trend-chart');
if (trendEl && trendData.labels && trendData.labels.length) {
const trendChart = echarts.init(trendEl);
trendChart.setOption({
color: palette,
tooltip: { trigger: 'axis' },
legend: {
data: ['Checked In', 'Checked Out'],
textStyle: { fontSize: 12, color: '#64748b' }, top: 0
},
grid: { left: 40, right: 20, top: 36, bottom: 28 },
xAxis: {
type: 'category', data: trendData.labels,
axisLine: { lineStyle: { color: '#e2e8f0' } }, axisTick: { show: false }
},
yAxis: { type: 'value', splitLine: { lineStyle: { color: '#f1f5f9' } } },
series: [
{ name: 'Checked In', type: 'line', smooth: true, data: trendData.checkedIn, symbolSize: 5 },
{ name: 'Checked Out', type: 'line', smooth: true, data: trendData.checkedOut, symbolSize: 5, lineStyle: { type: 'dashed' } }
]
});
window.addEventListener('resize', () => trendChart.resize());
}
})();
</script>
{{end}}