circuitforge-core/packages/display/launcher/launcher.html
pyr0ball 6d82f3561f
Some checks failed
CI / test (pull_request) Has been cancelled
feat(display): add @circuitforge/display strip-display Vue package
New packages/display/ — Vue 3 primitives for products running a secondary
1920x480 landscape / 480x1920 portrait kiosk display, per the strip display
spec. First non-Python module in this repo; published as its own npm
package (not part of the Python circuitforge-core distribution) so products
that don't use a strip display never pull in Vue as a dependency.

- DisplayLayout — root wrapper: identity zone, orientation-aware grid
  (landscape/portrait), dark-default theme, #metrics/#alerts/#macros slots.
- DisplayMetric — value/label tile with optional unit, severity colour,
  sparkline.
- DisplayAlert — timestamped, severity-coloured alert row.
- DisplayMacroButton — touch target (44px+ min) emitting a
  shell/url/api/display_switch action payload; execution stays product-side.
- theme.ts — central theme file: CSS custom properties (dark/light) plus
  UnoCSS theme/shortcut fragments for products that already run UnoCSS
  (Turnstone, Robin) to spread into their own uno.config.ts.
- launcher/launcher.html — static, framework-free product switcher reading
  a sibling launcher.config.json.

37 Vitest tests across all four components; vue-tsc type-checks clean;
vite build produces ESM/CJS bundles + CSS + .d.ts.

First consumer: Turnstone's sysadmin profile (turnstone#25, currently
blocked on this ticket).

Closes: #69
2026-07-10 18:29:21 -07:00

151 lines
4.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>CircuitForge Display Launcher</title>
<style>
:root {
--cf-display-surface: #0d1117;
--cf-display-surface-raised: #161b22;
--cf-display-surface-border: #30363d;
--cf-display-accent: #39d353;
--cf-display-text-primary: #e6edf3;
--cf-display-text-muted: #8b949e;
}
@media (prefers-color-scheme: light) {
:root {
--cf-display-surface: #ffffff;
--cf-display-surface-raised: #f6f8fa;
--cf-display-surface-border: #d0d7de;
--cf-display-accent: #1f883d;
--cf-display-text-primary: #1f2328;
--cf-display-text-muted: #59636e;
}
}
* { box-sizing: border-box; }
html, body {
margin: 0;
height: 100%;
background: var(--cf-display-surface);
color: var(--cf-display-text-primary);
font-family: system-ui, sans-serif;
}
#app {
display: flex;
flex-wrap: wrap;
align-content: center;
justify-content: center;
gap: 1rem;
height: 100%;
padding: 1rem;
}
.launcher-tile {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.25rem;
min-width: 8rem;
min-height: 8rem;
padding: 1rem;
border: 1px solid var(--cf-display-surface-border);
border-radius: 0.75rem;
background: var(--cf-display-surface-raised);
color: inherit;
text-decoration: none;
cursor: pointer;
touch-action: manipulation;
}
.launcher-tile:hover, .launcher-tile:focus-visible {
border-color: var(--cf-display-accent);
outline: none;
}
.launcher-tile__name {
font-size: 1.1rem;
font-weight: 700;
}
.launcher-tile__profile {
font-size: 0.75rem;
color: var(--cf-display-text-muted);
text-transform: uppercase;
letter-spacing: 0.05em;
}
#empty {
color: var(--cf-display-text-muted);
text-align: center;
padding: 2rem;
}
</style>
</head>
<body>
<!--
cf-core strip display launcher — no framework dependency, per the strip
display spec. Config is a small JSON file the user edits once, fetched
from ./launcher.config.json next to this HTML file (same-origin — this is
meant to be served by a product's own backend, e.g. Turnstone, at a
well-known /launcher route, or served as a static file alongside a
kiosk browser profile).
{
"products": [
{ "name": "Turnstone", "url": "http://localhost:8600/display", "profile": "sysadmin" }
],
"default": 0
}
Tapping a tile navigates the kiosk window to that product's display URL.
On first boot, kiosk mode should open this launcher.
-->
<div id="app"></div>
<div id="empty" style="display: none;">
No products configured. Add entries to <code>launcher.config.json</code> next to this file.
</div>
<script>
(async function () {
const app = document.getElementById('app');
const empty = document.getElementById('empty');
let config;
try {
const resp = await fetch('./launcher.config.json');
config = await resp.json();
} catch (err) {
config = { products: [] };
}
const products = Array.isArray(config.products) ? config.products : [];
if (products.length === 0) {
empty.style.display = 'block';
return;
}
for (const product of products) {
const tile = document.createElement('a');
tile.className = 'launcher-tile';
tile.href = product.url;
tile.setAttribute('aria-label', `Open ${product.name}`);
const name = document.createElement('span');
name.className = 'launcher-tile__name';
name.textContent = product.name;
tile.appendChild(name);
if (product.profile) {
const profile = document.createElement('span');
profile.className = 'launcher-tile__profile';
profile.textContent = product.profile;
tile.appendChild(profile);
}
app.appendChild(tile);
}
const defaultIndex = Number.isInteger(config.default) ? config.default : null;
if (defaultIndex !== null && products[defaultIndex] && location.hash === '#auto') {
location.href = products[defaultIndex].url;
}
})();
</script>
</body>
</html>