200 lines
4.8 KiB
HTML
200 lines
4.8 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>{{ title }}</title>
|
|
<script src="https://unpkg.com/htmx.org@1.9.12"></script>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
font-family: Arial, sans-serif;
|
|
background: #0b1220;
|
|
color: #e5eefb;
|
|
}
|
|
.shell {
|
|
max-width: 1120px;
|
|
margin: 0 auto;
|
|
padding: 32px 20px 48px;
|
|
}
|
|
.hero {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 24px;
|
|
align-items: end;
|
|
margin-bottom: 24px;
|
|
}
|
|
.title {
|
|
font-size: 2rem;
|
|
margin: 0 0 8px;
|
|
}
|
|
.subtitle {
|
|
margin: 0;
|
|
color: #9fb2d0;
|
|
}
|
|
.panel {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
border-radius: 16px;
|
|
padding: 20px;
|
|
}
|
|
.grid {
|
|
display: grid;
|
|
gap: 16px;
|
|
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
}
|
|
.card {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
border-radius: 14px;
|
|
padding: 16px;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
.label {
|
|
color: #9fb2d0;
|
|
font-size: 0.85rem;
|
|
margin-bottom: 8px;
|
|
}
|
|
.value {
|
|
font-size: 1.4rem;
|
|
font-weight: 700;
|
|
}
|
|
.meta {
|
|
margin-top: 18px;
|
|
color: #7f95b7;
|
|
font-size: 0.85rem;
|
|
}
|
|
.toolbar {
|
|
display: flex;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
}
|
|
.toolbar form {
|
|
margin: 0;
|
|
}
|
|
.button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 0;
|
|
cursor: pointer;
|
|
padding: 10px 14px;
|
|
border-radius: 999px;
|
|
background: #2d6cdf;
|
|
color: white;
|
|
text-decoration: none;
|
|
font: inherit;
|
|
}
|
|
.button.secondary {
|
|
background: transparent;
|
|
border: 1px solid rgba(255, 255, 255, 0.14);
|
|
}
|
|
.button.danger {
|
|
background: #ba3d4f;
|
|
}
|
|
.form-grid {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
.field {
|
|
display: grid;
|
|
gap: 6px;
|
|
color: #9fb2d0;
|
|
font-size: 0.9rem;
|
|
}
|
|
.field input {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 10px 12px;
|
|
border-radius: 10px;
|
|
border: 1px solid rgba(255, 255, 255, 0.14);
|
|
background: rgba(255, 255, 255, 0.04);
|
|
color: #e5eefb;
|
|
font: inherit;
|
|
}
|
|
.field.checkbox {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.field.checkbox input {
|
|
width: auto;
|
|
}
|
|
.control-actions {
|
|
display: flex;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main class="shell">
|
|
<section class="hero">
|
|
<div>
|
|
<h1 class="title">Arbitrade Dashboard</h1>
|
|
<p class="subtitle">Live execution, P&L, and system state.</p>
|
|
</div>
|
|
<div class="toolbar">
|
|
<a
|
|
class="button"
|
|
href="{{ metrics_endpoint }}"
|
|
hx-get="{{ metrics_endpoint }}"
|
|
hx-target="#metrics-panel"
|
|
hx-swap="outerHTML"
|
|
>Refresh metrics</a
|
|
>
|
|
<a class="button secondary" href="/health">Health</a>
|
|
</div>
|
|
</section>
|
|
|
|
<section
|
|
id="metrics-shell"
|
|
hx-get="{{ metrics_endpoint }}"
|
|
hx-target="this"
|
|
hx-trigger="load, every 15s"
|
|
hx-swap="outerHTML"
|
|
>
|
|
{% include "partials/metrics.html" %}
|
|
</section>
|
|
|
|
<section
|
|
id="overview-shell"
|
|
hx-get="{{ overview_endpoint }}"
|
|
hx-target="this"
|
|
hx-trigger="load, every 10s"
|
|
hx-swap="outerHTML"
|
|
>
|
|
{% include "partials/overview.html" %}
|
|
</section>
|
|
|
|
<section
|
|
id="controls-shell"
|
|
hx-get="{{ controls_endpoint }}"
|
|
hx-target="this"
|
|
hx-trigger="load, every 20s"
|
|
hx-swap="outerHTML"
|
|
>
|
|
{% include "partials/controls.html" %}
|
|
</section>
|
|
|
|
<script>
|
|
const stream = new EventSource("{{ stream_endpoint }}");
|
|
stream.addEventListener("metrics", (event) => {
|
|
const panel = document.getElementById("metrics-panel");
|
|
if (panel) {
|
|
panel.outerHTML = JSON.parse(event.data);
|
|
}
|
|
});
|
|
const overviewStream = new EventSource(
|
|
"{{ overview_stream_endpoint }}",
|
|
);
|
|
overviewStream.addEventListener("overview", (event) => {
|
|
const panel = document.getElementById("overview-panel");
|
|
if (panel) {
|
|
panel.outerHTML = JSON.parse(event.data);
|
|
}
|
|
});
|
|
</script>
|
|
</main>
|
|
</body>
|
|
</html>
|