Files
loustique-home/flask/templates/dashboard.html

232 lines
11 KiB
HTML
Raw Normal View History

2026-03-21 10:53:02 +01:00
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
2026-03-26 14:47:53 +01:00
<title>Loustiques Home — Dashboard</title>
2026-03-21 10:53:02 +01:00
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
2026-04-02 22:20:07 +02:00
body { font-family: system-ui, sans-serif; background: #1f1f1f; color: #f0f0f0; min-height: 100vh; }
header { display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; border-bottom: 1px solid #2e2e2e; background: #1a1a1a; }
.logo { font-size: 17px; font-weight: 700; }
.header-right { display: flex; align-items: center; gap: 20px; }
.status-dot { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #888; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
2026-03-21 10:53:02 +01:00
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
2026-04-02 22:20:07 +02:00
.logout { font-family: inherit; font-size: 12px; color: #888; background: none; border: 1px solid #3a3a3a; padding: 6px 14px; border-radius: 6px; cursor: pointer; transition: color 0.15s, border-color 0.15s; }
2026-03-26 14:47:53 +01:00
.logout:hover { color: #f0f0f0; border-color: #666; }
2026-04-02 22:20:07 +02:00
main { max-width: 1100px; margin: 0 auto; padding: 36px 32px; }
.welcome { margin-bottom: 36px; text-align: center; }
.welcome .label { font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; color: #2563eb; margin-bottom: 8px; }
.welcome h1 { font-size: 30px; font-weight: 700; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-bottom: 32px; }
.card { background: #2a2a2a; border: 1px solid #333; border-radius: 8px; padding: 22px; position: relative; }
.card-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-bottom: 10px; }
.card-value { font-size: 22px; font-weight: 700; }
.card-sub { font-size: 12px; color: #666; margin-top: 6px; }
.card-icon { position: absolute; top: 20px; right: 20px; width: 28px; height: 28px; opacity: 0.15; }
.section-title { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #666; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
2026-03-26 14:47:53 +01:00
.section-title::after { content: ''; flex: 1; height: 1px; background: #2e2e2e; }
2026-04-02 22:20:07 +02:00
.actions { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.action-btn { background: #2a2a2a; border: 1px solid #333; border-radius: 8px; padding: 18px 20px; cursor: pointer; text-align: left; color: #f0f0f0; position: relative; transition: border-color 0.15s, background 0.15s; }
2026-03-26 14:47:53 +01:00
.action-btn:hover { border-color: #2563eb; background: #2e2e3a; }
2026-03-21 10:53:02 +01:00
.action-btn:active { transform: scale(0.98); }
2026-04-02 22:20:07 +02:00
.action-btn .a-label { font-size: 14px; font-weight: 600; display: block; margin-bottom: 4px; }
.action-btn .a-sub { font-size: 12px; color: #ffffff; }
.action-btn .a-arrow { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: #555; font-size: 18px; transition: color 0.15s, right 0.15s; }
2026-03-26 14:47:53 +01:00
.action-btn:hover .a-arrow { color: #2563eb; right: 12px; }
2026-04-02 22:20:07 +02:00
.toast { position: fixed; bottom: 24px; right: 24px; background: #2a2a2a; border: 1px solid #333; border-radius: 8px; padding: 12px 18px; font-size: 13px; color: #f0f0f0; display: flex; align-items: center; gap: 10px; transform: translateY(20px); opacity: 0; transition: transform 0.3s, opacity 0.3s; z-index: 100; }
2026-03-21 10:53:02 +01:00
.toast.show { transform: translateY(0); opacity: 1; }
2026-03-26 14:47:53 +01:00
.toast-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
2026-03-21 10:53:02 +01:00
</style>
</head>
<body>
<header>
2026-03-26 14:47:53 +01:00
<div class="logo">Loustiques Home</div>
2026-03-21 10:53:02 +01:00
<div class="header-right">
<div class="status-dot"><div class="dot"></div> Système actif</div>
<button class="logout" onclick="window.location.href='/'">Déconnexion</button>
</div>
</header>
<main>
<div class="welcome">
<div class="label">Tableau de bord</div>
2026-03-26 14:47:53 +01:00
<h1>Bienvenue chez vous</h1>
2026-03-21 10:53:02 +01:00
</div>
<div class="grid">
<div class="card">
<svg class="card-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>
<div class="card-label">Heure locale</div>
2026-03-26 14:47:53 +01:00
<div class="card-value" id="clock">--:--</div>
2026-04-02 22:20:07 +02:00
<div class="card-sub" id="date-display">--</div>
</div>
2026-04-01 22:23:25 +02:00
2026-04-02 22:20:07 +02:00
<div class="card">
<svg class="card-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"/></svg>
2026-04-01 00:58:00 +02:00
<div class="card-label">Température</div>
2026-04-01 22:23:25 +02:00
<div class="card-value" id="temp-display">-- °C</div>
2026-04-02 22:20:07 +02:00
<div class="card-sub">Capteur DHT11 (Pi 2)</div>
2026-03-21 10:53:02 +01:00
</div>
<div class="card">
2026-04-02 22:20:07 +02:00
<svg class="card-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5">
<path d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364-6.364l-.707.707M6.343 17.657l-.707.707m12.728 0l-.707-.707M6.343 6.343l-.707-.707M12 8a4 4 0 100 8 4 4 0 000-8z"/>
</svg>
<div class="card-label">Luminosité</div>
<div class="card-value" id="ldr-display">--</div>
<div class="card-sub">Capteur LDR (Pi 2)</div>
</div>
<div class="card">
<svg class="card-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="9" y1="3" x2="9" y2="21"></line></svg>
<div class="card-label">Porte / Volet</div>
<div class="card-value" id="door-display">--</div>
<div class="card-sub">État du moteur (Pi 2)</div>
2026-03-21 10:53:02 +01:00
</div>
2026-04-02 22:20:07 +02:00
<div class="card">
<svg class="card-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>
<div class="card-label">Alarme</div>
<div class="card-value" id="alarm-display">--</div>
<div class="card-sub">Sécurité (Pi 1)</div>
</div>
2026-04-01 00:58:00 +02:00
<div class="card">
<svg class="card-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><rect x="2" y="3" width="20" height="14" rx="2"/><line x1="8" y1="21" x2="16" y2="21"/><line x1="12" y1="17" x2="12" y2="21"/></svg>
2026-04-02 22:20:07 +02:00
<div class="card-label">Raspberry Pi 1</div>
<div class="card-value" id="status-pi44">Vérification...</div>
<div class="card-sub">Serveur Flask</div>
2026-04-01 00:58:00 +02:00
</div>
2026-04-02 22:20:07 +02:00
2026-03-21 10:53:02 +01:00
<div class="card">
2026-04-02 22:20:07 +02:00
<svg class="card-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5"><rect x="2" y="3" width="20" height="14" rx="2"/><line x1="8" y1="21" x2="16" y2="21"/><line x1="12" y1="17" x2="12" y2="21"/></svg>
<div class="card-label">Raspberry Pi 2</div>
<div class="card-value" id="status-pi32">Vérification...</div>
<div class="card-sub">Serveur FastAPI</div>
2026-03-21 10:53:02 +01:00
</div>
</div>
<div class="section-title">Actions rapides</div>
<div class="actions">
2026-04-01 18:39:00 +02:00
<button class="action-btn" onclick="call_led_up()">
<span class="a-label">💡 UP LED</span>
2026-04-02 22:20:07 +02:00
<span class="a-sub">Allumer la LED (Pi 2)</span>
2026-03-21 10:53:02 +01:00
<span class="a-arrow"></span>
2026-03-27 15:00:11 +01:00
</button>
2026-04-02 22:20:07 +02:00
<button class="action-btn" onclick="call_led_down()">
2026-04-02 11:29:29 +02:00
<span class="a-label">💡 DOWN LED</span>
2026-04-02 22:20:07 +02:00
<span class="a-sub">Éteindre la LED (Pi 2)</span>
<span class="a-arrow"></span>
</button>
2026-03-26 14:47:53 +01:00
<button class="action-btn" onclick="go_admin()">
2026-03-24 23:06:07 +01:00
<span class="a-label">Administration</span>
2026-04-02 22:20:07 +02:00
<span class="a-sub">Gérer les utilisateurs</span>
2026-03-24 23:06:07 +01:00
<span class="a-arrow"></span>
</button>
2026-03-21 10:53:02 +01:00
</div>
</main>
<div class="toast" id="toast">
<div class="toast-dot"></div>
<span id="toast-text">Action effectuée</span>
</div>
<script>
function updateClock() {
const now = new Date();
2026-04-02 22:20:07 +02:00
document.getElementById("clock").textContent = now.toLocaleTimeString("fr-FR", { hour: "2-digit", minute: "2-digit" });
document.getElementById("date-display").textContent = now.toLocaleDateString("fr-FR", { weekday: "long", day: "numeric", month: "long" });
2026-03-21 10:53:02 +01:00
}
setInterval(updateClock, 1000);
2026-04-02 22:20:07 +02:00
updateClock();
async function updateAll() {
console.log("Rafraîchissement des données...");
2026-03-21 10:53:02 +01:00
2026-04-02 22:20:07 +02:00
2026-03-27 15:00:11 +01:00
try {
2026-04-02 22:20:07 +02:00
const resA = await fetch('/alarme_status');
const dataA = await resA.json();
const elA = document.getElementById("alarm-display");
const elS1 = document.getElementById("status-pi44");
if (dataA.success) {
elA.textContent = dataA.status;
elA.style.color = (dataA.status === "desarmee") ? "#4ade80" : "#f87171";
elS1.textContent = "Actif";
elS1.style.color = "#4ade80";
}
} catch (e) {
document.getElementById("status-pi44").textContent = "Hors ligne";
document.getElementById("status-pi44").style.color = "#f87171";
}
try {
const resL = await fetch('/api/luminosite');
const dataL = await resL.json();
const elL = document.getElementById("ldr-display");
if (dataL.success) {
elL.textContent = dataL.status;
elL.style.color = (dataL.status === "Jour") ? "#fbbf24" : "#818cf8";
}
} catch (e) {
console.log("Erreur de lecture luminosité");
document.getElementById("ldr-display").textContent = "Erreur";
}
2026-04-01 22:23:25 +02:00
try {
2026-04-02 22:20:07 +02:00
const resV = await fetch('/api/volet_status');
const dataV = await resV.json();
const elV = document.getElementById("door-display");
const elS2 = document.getElementById("status-pi32");
if (dataV.success) {
elV.textContent = dataV.status;
elV.style.color = (dataV.status === "Ouvert") ? "#4ade80" : "#f87171";
elS2.textContent = "Actif";
elS2.style.color = "#4ade80";
2026-04-01 22:23:25 +02:00
} else {
2026-04-02 22:20:07 +02:00
elS2.textContent = "Injoignable";
elS2.style.color = "#fbbf24";
2026-04-01 22:23:25 +02:00
}
} catch (e) {
2026-04-02 22:20:07 +02:00
document.getElementById("status-pi32").textContent = "Hors ligne";
document.getElementById("status-pi32").style.color = "#f87171";
2026-03-27 15:00:11 +01:00
}
2026-03-30 23:17:08 +02:00
try {
2026-04-02 22:20:07 +02:00
const resT = await fetch('/api/temperature');
const dataT = await resT.json();
if (dataT.success) {
document.getElementById("temp-display").textContent = dataT.temperature + " °C";
}
} catch (e) {
document.getElementById("temp-display").textContent = "-- °C";
}
}
setInterval(updateAll, 15000);
updateAll();
2026-04-01 22:23:25 +02:00
async function call_led_up() {
2026-03-30 14:00:03 +02:00
try {
2026-04-02 22:20:07 +02:00
await fetch('/api/up_led');
2026-04-01 18:39:00 +02:00
showToast("LED allumée !");
2026-04-02 22:20:07 +02:00
} catch { showToast("Erreur Pi 2"); }
2026-03-30 14:00:03 +02:00
}
2026-04-02 22:20:07 +02:00
async function call_led_down() {
try {
await fetch('/api/down_led');
showToast("LED éteinte !");
} catch { showToast("Erreur Pi 2"); }
2026-03-24 23:06:07 +01:00
}
2026-04-02 22:20:07 +02:00
function go_admin() { window.location.href = "/admin"; }
2026-03-21 10:53:02 +01:00
function showToast(msg) {
const toast = document.getElementById("toast");
document.getElementById("toast-text").textContent = msg;
toast.classList.add("show");
setTimeout(() => toast.classList.remove("show"), 3000);
}
</script>
</body>
2026-03-26 14:47:53 +01:00
</html>