fix: Various fixes. Mail, UI, Flash etc

This commit is contained in:
2026-02-27 14:32:24 +02:00
parent 7585e43b52
commit 810e81b323
9 changed files with 930 additions and 612 deletions

View File

@@ -1,12 +1,15 @@
import logging
import random
import string
from datetime import datetime, timezone
logger = logging.getLogger(__name__)
from shared.firebase import get_db
from shared.exceptions import NotFoundError
from utils.serial_number import generate_serial
from utils.nvs_generator import generate as generate_nvs_binary
from manufacturing.models import BatchCreate, BatchResponse, DeviceInventoryItem, DeviceStatusUpdate, DeviceAssign, ManufacturingStats, RecentActivityItem
from manufacturing.models import BatchCreate, BatchResponse, DeviceInventoryItem, DeviceStatusUpdate, DeviceAssign, ManufacturingStats, RecentActivityItem, BOARD_TYPE_LABELS
COLLECTION = "devices"
_BATCH_ID_CHARS = string.ascii_uppercase + string.digits
@@ -162,6 +165,7 @@ def assign_device(sn: str, data: DeviceAssign) -> DeviceInventoryItem:
if not docs:
raise NotFoundError("Device")
doc_data = docs[0].to_dict() or {}
doc_ref = docs[0].reference
doc_ref.update({
"owner": data.customer_email,
@@ -169,11 +173,18 @@ def assign_device(sn: str, data: DeviceAssign) -> DeviceInventoryItem:
"mfg_status": "sold",
})
hw_type = doc_data.get("hw_type", "")
device_name = BOARD_TYPE_LABELS.get(hw_type, hw_type or "Device")
try:
send_device_assignment_invite(
customer_email=data.customer_email,
serial_number=sn,
device_name=device_name,
customer_name=data.customer_name,
)
except Exception as exc:
logger.error("Assignment succeeded but email failed for %s%s: %s", sn, data.customer_email, exc)
return _doc_to_inventory_item(doc_ref.get())

View File

@@ -5,15 +5,11 @@ from config import settings
logger = logging.getLogger(__name__)
def _get_client() -> resend.Resend:
return resend.Resend(api_key=settings.resend_api_key)
def send_email(to: str, subject: str, html: str) -> None:
"""Send a transactional email via Resend. Logs errors but does not raise."""
try:
client = _get_client()
client.emails.send({
resend.api_key = settings.resend_api_key
resend.Emails.send({
"from": settings.email_from,
"to": to,
"subject": subject,
@@ -28,29 +24,99 @@ def send_email(to: str, subject: str, html: str) -> None:
def send_device_assignment_invite(
customer_email: str,
serial_number: str,
device_name: str,
customer_name: str | None = None,
) -> None:
"""Notify a customer that a Vesper device has been assigned to them."""
greeting = f"Hi {customer_name}," if customer_name else "Hello,"
"""Notify a customer that a Bell Systems device has been assigned and shipped to them."""
greeting = f"Dear {customer_name}," if customer_name else "Dear Customer,"
html = f"""
<div style="font-family: sans-serif; max-width: 600px; margin: 0 auto;">
<h2 style="color: #111827;">Your Vesper device is ready</h2>
<p>{greeting}</p>
<p>A Vesper bell automation device has been registered and assigned to you.</p>
<p>
<strong>Serial Number:</strong>
<code style="background: #f3f4f6; padding: 2px 6px; border-radius: 4px; font-size: 14px;">{serial_number}</code>
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"></head>
<body style="margin:0; padding:0; background-color:#f4f4f7; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;">
<table width="100%" cellpadding="0" cellspacing="0" style="background-color:#f4f4f7; padding: 40px 0;">
<tr>
<td align="center">
<table width="600" cellpadding="0" cellspacing="0" style="background-color:#ffffff; border-radius:8px; overflow:hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); max-width:600px; width:100%;">
<!-- Header -->
<tr>
<td style="background-color:#0f172a; padding: 32px 40px; text-align:center;">
<h1 style="color:#ffffff; margin:0; font-size:22px; font-weight:700; letter-spacing:1px;">BELLSYSTEMS</h1>
<p style="color:#94a3b8; margin:6px 0 0; font-size:13px; letter-spacing:2px; text-transform:uppercase;">Device Shipment Confirmation</p>
</td>
</tr>
<!-- Body -->
<tr>
<td style="padding: 40px 40px 32px;">
<p style="margin:0 0 20px; font-size:16px; color:#1e293b;">{greeting}</p>
<p style="margin:0 0 16px; font-size:15px; color:#334155; line-height:1.7;">
Your <strong>Bell Systems {device_name}</strong> device has been successfully manufactured and shipped.
We are delighted to have it on its way to you!
</p>
<p>Open the Vesper app and enter this serial number to get started.</p>
<hr style="border: none; border-top: 1px solid #e5e7eb; margin: 24px 0;" />
<p style="color: #6b7280; font-size: 12px;">
If you did not expect this email, please contact your system administrator.
<p style="margin:0 0 24px; font-size:15px; color:#334155; line-height:1.7;">
To get started, download our controller application from the Google Play Store and follow the in-app setup instructions.
</p>
</div>
<!-- CTA Button -->
<table cellpadding="0" cellspacing="0" width="100%" style="margin: 28px 0;">
<tr>
<td align="center">
<a href="https://play.google.com/store/apps/details?id=com.bellsystems.vesper"
style="display:inline-block; background-color:#0f172a; color:#ffffff; text-decoration:none;
padding:14px 32px; border-radius:6px; font-size:15px; font-weight:600; letter-spacing:0.5px;">
Download on Google Play
</a>
</td>
</tr>
</table>
<!-- Device info card -->
<table width="100%" cellpadding="0" cellspacing="0" style="background:#f8fafc; border:1px solid #e2e8f0; border-radius:6px; margin-bottom:28px;">
<tr>
<td style="padding:16px 20px; border-bottom:1px solid #e2e8f0;">
<span style="font-size:12px; color:#64748b; text-transform:uppercase; letter-spacing:1px; font-weight:600;">Device</span><br>
<span style="font-size:15px; color:#0f172a; font-weight:600;">Bell Systems {device_name}</span>
</td>
</tr>
<tr>
<td style="padding:16px 20px;">
<span style="font-size:12px; color:#64748b; text-transform:uppercase; letter-spacing:1px; font-weight:600;">Serial Number</span><br>
<code style="font-size:14px; color:#0f172a; background:#e2e8f0; padding:3px 8px; border-radius:4px; font-family:monospace;">{serial_number}</code>
</td>
</tr>
</table>
<p style="margin:0; font-size:15px; color:#334155; line-height:1.7;">
Thank you very much. We greatly appreciate your choice in our products.
</p>
</td>
</tr>
<!-- Footer -->
<tr>
<td style="background-color:#f8fafc; border-top:1px solid #e2e8f0; padding:24px 40px; text-align:center;">
<p style="margin:0 0 4px; font-size:14px; color:#0f172a; font-weight:700;">BellSystems.gr</p>
<p style="margin:0; font-size:12px; color:#94a3b8;">
If you did not expect this email, please contact us at
<a href="mailto:support@bellsystems.gr" style="color:#64748b;">support@bellsystems.gr</a>
</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
"""
send_email(
to=customer_email,
subject=f"Your Vesper device is ready — {serial_number}",
subject=f"Your Bell Systems {device_name} is on its way! 🎉",
html=html,
)

View File

@@ -16,4 +16,5 @@ def generate_serial(board_type: str, board_version: str) -> str:
month = MONTH_CODES[now.month - 1]
day = now.strftime("%d")
suffix = "".join(random.choices(SAFE_CHARS, k=5))
return f"PV-{year}{month}{day}-{board_type.upper()}{board_version}R-{suffix}"
version_clean = board_version.replace(".", "")
return f"PV-{year}{month}{day}-{board_type.upper()}{version_clean}R-{suffix}"

View File

@@ -3,15 +3,51 @@ import { useNavigate } from "react-router-dom";
import api from "../api/client";
const BOARD_TYPES = [
{ value: "vs", name: "VESPER", codename: "vesper-basic" },
{ value: "vp", name: "VESPER PLUS", codename: "vesper-plus" },
{ value: "vx", name: "VESPER PRO", codename: "vesper-pro" },
{ value: "cb", name: "CHRONOS", codename: "chronos-basic" },
{ value: "cp", name: "CHRONOS PRO", codename: "chronos-pro" },
{ value: "am", name: "AGNUS MINI", codename: "agnus-mini" },
{ value: "ab", name: "AGNUS", codename: "agnus-basic" },
{ value: "vx", name: "VESPER PRO", codename: "vesper-pro", desc: "Full-featured pro controller", family: "vesper" },
{ value: "vp", name: "VESPER PLUS", codename: "vesper-plus", desc: "Extended output controller", family: "vesper" },
{ value: "vs", name: "VESPER", codename: "vesper-basic", desc: "Standard bell controller", family: "vesper" },
{ value: "ab", name: "AGNUS", codename: "agnus-basic", desc: "Standard carillon module", family: "agnus" },
{ value: "am", name: "AGNUS MINI", codename: "agnus-mini", desc: "Compact carillon module", family: "agnus" },
{ value: "cp", name: "CHRONOS PRO", codename: "chronos-pro", desc: "Pro clock controller", family: "chronos" },
{ value: "cb", name: "CHRONOS", codename: "chronos-basic", desc: "Basic clock controller", family: "chronos" },
];
const BOARD_FAMILY_COLORS = {
vesper: { selectedBg: "#0a1929", selectedBorder: "#3b82f6", selectedText: "#60a5fa", hoverBorder: "#3b82f6", glowColor: "rgba(59,130,246,0.35)", idleBorder: "#1d3a5c", idleText: "#7ca8d4" },
agnus: { selectedBg: "#1a1400", selectedBorder: "#f59e0b", selectedText: "#fbbf24", hoverBorder: "#f59e0b", glowColor: "rgba(245,158,11,0.35)", idleBorder: "#4a3800", idleText: "#c79d3a" },
chronos: { selectedBg: "#1a0808", selectedBorder: "#ef4444", selectedText: "#f87171", hoverBorder: "#ef4444", glowColor: "rgba(239,68,68,0.35)", idleBorder: "#5c1a1a", idleText: "#d47a7a" },
};
function BoardTile({ bt, isSelected, onClick }) {
const [hovered, setHovered] = useState(false);
const pal = BOARD_FAMILY_COLORS[bt.family];
const borderColor = isSelected ? pal.selectedBorder : hovered ? pal.hoverBorder : pal.idleBorder;
const boxShadow = isSelected
? `0 0 0 1px ${pal.selectedBorder}, 0 0 14px 4px ${pal.glowColor}`
: hovered ? `0 0 12px 3px ${pal.glowColor}` : "none";
return (
<button
type="button"
onClick={onClick}
onMouseEnter={() => setHovered(true)}
onMouseLeave={() => setHovered(false)}
className="rounded-lg border p-3 text-left cursor-pointer"
style={{
backgroundColor: isSelected ? pal.selectedBg : "var(--bg-card)",
borderColor, boxShadow,
transition: "border-color 0.15s, box-shadow 0.15s, background-color 0.15s",
}}
>
<p className="font-bold text-xs tracking-wide"
style={{ color: isSelected ? pal.selectedText : hovered ? pal.idleText : "var(--text-heading)" }}>
{bt.name}
</p>
<p className="text-xs mt-0.5 font-mono opacity-60" style={{ color: "var(--text-muted)" }}>{bt.codename}</p>
<p className="text-xs mt-1 leading-snug" style={{ color: "var(--text-muted)", opacity: 0.75 }}>{bt.desc}</p>
</button>
);
}
export default function BatchCreator() {
const navigate = useNavigate();
const [boardType, setBoardType] = useState(null);
@@ -57,7 +93,7 @@ export default function BatchCreator() {
return (
<div style={{ maxWidth: 640 }}>
<h1 className="text-xl font-bold mb-6" style={{ color: "var(--text-heading)" }}>
<h1 className="text-2xl font-bold mb-6" style={{ color: "var(--text-heading)" }}>
New Batch
</h1>
@@ -78,36 +114,34 @@ export default function BatchCreator() {
)}
<form onSubmit={handleSubmit} className="space-y-5">
{/* Board Type tiles */}
{/* Board Type tiles — Vesper: 3 col, Agnus: 2 col, Chronos: 2 col */}
<div>
<label className="block text-sm font-medium mb-2" style={{ color: "var(--text-secondary)" }}>
Board Type
</label>
<div className="grid grid-cols-2 gap-2">
{BOARD_TYPES.map((bt) => {
const isSel = boardType === bt.value;
return (
<button
key={bt.value}
type="button"
onClick={() => setBoardType(bt.value)}
className="rounded-lg border p-3 text-left cursor-pointer transition-all"
style={{
backgroundColor: isSel ? "#0a1f0a" : "var(--bg-card-hover)",
borderColor: isSel ? "#22c55e" : "var(--border-primary)",
boxShadow: isSel ? "0 0 0 1px #22c55e" : "none",
}}
>
<p className="text-xs font-bold tracking-wide"
style={{ color: isSel ? "#22c55e" : "var(--text-heading)" }}>
{bt.name}
</p>
<p className="text-xs font-mono mt-0.5" style={{ color: "var(--text-muted)" }}>
{bt.codename}
</p>
</button>
);
})}
<div className="space-y-2">
{/* Row 1: Vesper family */}
<div style={{ display: "grid", gridTemplateColumns: "repeat(3, 1fr)", gap: 8 }}>
{BOARD_TYPES.filter((b) => b.family === "vesper").map((bt) => (
<BoardTile key={bt.value} bt={bt} isSelected={boardType === bt.value} onClick={() => setBoardType(bt.value)} />
))}
</div>
{/* Row 2: Agnus family — 2 cols left-aligned */}
<div style={{ display: "grid", gridTemplateColumns: "repeat(3, 1fr)", gap: 8 }}>
<div style={{ gridColumn: "1 / 3", display: "grid", gridTemplateColumns: "1fr 1fr", gap: 8 }}>
{BOARD_TYPES.filter((b) => b.family === "agnus").map((bt) => (
<BoardTile key={bt.value} bt={bt} isSelected={boardType === bt.value} onClick={() => setBoardType(bt.value)} />
))}
</div>
</div>
{/* Row 3: Chronos family — 2 cols left-aligned */}
<div style={{ display: "grid", gridTemplateColumns: "repeat(3, 1fr)", gap: 8 }}>
<div style={{ gridColumn: "1 / 3", display: "grid", gridTemplateColumns: "1fr 1fr", gap: 8 }}>
{BOARD_TYPES.filter((b) => b.family === "chronos").map((bt) => (
<BoardTile key={bt.value} bt={bt} isSelected={boardType === bt.value} onClick={() => setBoardType(bt.value)} />
))}
</div>
</div>
</div>
</div>

View File

@@ -5,16 +5,23 @@ import api from "../api/client";
// ─── constants ────────────────────────────────────────────────────────────────
// Row layout: Vesper Pro / Vesper Plus / Vesper | Agnus / Agnus Mini | Chronos Pro / Chronos
const BOARD_TYPES = [
{ value: "vs", name: "VESPER", codename: "vesper-basic" },
{ value: "vp", name: "VESPER PLUS", codename: "vesper-plus" },
{ value: "vx", name: "VESPER PRO", codename: "vesper-pro" },
{ value: "cb", name: "CHRONOS", codename: "chronos-basic" },
{ value: "cp", name: "CHRONOS PRO", codename: "chronos-pro" },
{ value: "am", name: "AGNUS MINI", codename: "agnus-mini" },
{ value: "ab", name: "AGNUS", codename: "agnus-basic" },
{ value: "vx", name: "VESPER PRO", codename: "vesper-pro", family: "vesper" },
{ value: "vp", name: "VESPER PLUS", codename: "vesper-plus", family: "vesper" },
{ value: "vs", name: "VESPER", codename: "vesper-basic", family: "vesper" },
{ value: "ab", name: "AGNUS", codename: "agnus-basic", family: "agnus" },
{ value: "am", name: "AGNUS MINI", codename: "agnus-mini", family: "agnus" },
{ value: "cp", name: "CHRONOS PRO", codename: "chronos-pro", family: "chronos" },
{ value: "cb", name: "CHRONOS", codename: "chronos-basic", family: "chronos" },
];
const BOARD_FAMILY_COLORS = {
vesper: { selectedBg: "#0a1929", selectedBorder: "#3b82f6", selectedText: "#60a5fa", hoverBorder: "#3b82f6", glowColor: "rgba(59,130,246,0.35)", idleBorder: "#1d3a5c", idleText: "#7ca8d4" },
agnus: { selectedBg: "#1a1400", selectedBorder: "#f59e0b", selectedText: "#fbbf24", hoverBorder: "#f59e0b", glowColor: "rgba(245,158,11,0.35)", idleBorder: "#4a3800", idleText: "#c79d3a" },
chronos: { selectedBg: "#1a0808", selectedBorder: "#ef4444", selectedText: "#f87171", hoverBorder: "#ef4444", glowColor: "rgba(239,68,68,0.35)", idleBorder: "#5c1a1a", idleText: "#d47a7a" },
};
const BOARD_TYPE_LABELS = Object.fromEntries(BOARD_TYPES.map((b) => [b.value, b.name]));
const STATUS_STYLES = {
@@ -188,6 +195,35 @@ function ColumnToggle({ visible, orderedIds, onChange, onReorder }) {
);
}
// ─── Board Type Tile ──────────────────────────────────────────────────────────
function BoardTypeTile({ bt, isSelected, pal, onClick }) {
const [hovered, setHovered] = useState(false);
const borderColor = isSelected ? pal.selectedBorder : hovered ? pal.hoverBorder : pal.idleBorder;
const boxShadow = isSelected
? `0 0 0 1px ${pal.selectedBorder}, 0 0 14px 4px ${pal.glowColor}`
: hovered ? `0 0 12px 3px ${pal.glowColor}` : "none";
return (
<button
onClick={onClick}
onMouseEnter={() => setHovered(true)}
onMouseLeave={() => setHovered(false)}
className="rounded-lg border p-3 text-left cursor-pointer"
style={{
backgroundColor: isSelected ? pal.selectedBg : "var(--bg-card-hover)",
borderColor, boxShadow,
transition: "border-color 0.15s, box-shadow 0.15s, background-color 0.15s",
}}
>
<p className="text-xs font-bold tracking-wide"
style={{ color: isSelected ? pal.selectedText : hovered ? pal.idleText : "var(--text-heading)" }}>
{bt.name}
</p>
<p className="text-xs font-mono mt-0.5 opacity-60" style={{ color: "var(--text-muted)" }}>{bt.codename}</p>
</button>
);
}
// ─── Add Device Modal ─────────────────────────────────────────────────────────
function AddDeviceModal({ onClose, onCreated }) {
@@ -222,26 +258,29 @@ function AddDeviceModal({ onClose, onCreated }) {
<h2 className="text-base font-bold mb-4" style={{ color: "var(--text-heading)" }}>Add Single Device</h2>
<p className="text-sm mb-3" style={{ color: "var(--text-secondary)" }}>Board Type</p>
<div className="grid grid-cols-2 gap-2 mb-4">
{BOARD_TYPES.map((bt) => {
const isSel = boardType === bt.value;
return (
<button
key={bt.value}
onClick={() => setBoardType(bt.value)}
className="rounded-lg border p-3 text-left cursor-pointer transition-all"
style={{
backgroundColor: isSel ? "#0a1f0a" : "var(--bg-card-hover)",
borderColor: isSel ? "#22c55e" : "var(--border-primary)",
}}
>
<p className="text-xs font-bold tracking-wide" style={{ color: isSel ? "#22c55e" : "var(--text-heading)" }}>
{bt.name}
</p>
<p className="text-xs font-mono mt-0.5" style={{ color: "var(--text-muted)" }}>{bt.codename}</p>
</button>
);
})}
<div className="space-y-2" style={{ marginBottom: 16 }}>
{/* Row 1: Vesper family — 3 columns */}
<div style={{ display: "grid", gridTemplateColumns: "repeat(3, 1fr)", gap: 8 }}>
{BOARD_TYPES.filter((b) => b.family === "vesper").map((bt) => (
<BoardTypeTile key={bt.value} bt={bt} isSelected={boardType === bt.value} pal={BOARD_FAMILY_COLORS[bt.family]} onClick={() => setBoardType(bt.value)} />
))}
</div>
{/* Row 2: Agnus family — 2 columns (left-aligned in 3-col grid) */}
<div style={{ display: "grid", gridTemplateColumns: "repeat(3, 1fr)", gap: 8 }}>
<div style={{ gridColumn: "1 / 3", display: "grid", gridTemplateColumns: "1fr 1fr", gap: 8 }}>
{BOARD_TYPES.filter((b) => b.family === "agnus").map((bt) => (
<BoardTypeTile key={bt.value} bt={bt} isSelected={boardType === bt.value} pal={BOARD_FAMILY_COLORS[bt.family]} onClick={() => setBoardType(bt.value)} />
))}
</div>
</div>
{/* Row 3: Chronos family — 2 columns (left-aligned in 3-col grid) */}
<div style={{ display: "grid", gridTemplateColumns: "repeat(3, 1fr)", gap: 8 }}>
<div style={{ gridColumn: "1 / 3", display: "grid", gridTemplateColumns: "1fr 1fr", gap: 8 }}>
{BOARD_TYPES.filter((b) => b.family === "chronos").map((bt) => (
<BoardTypeTile key={bt.value} bt={bt} isSelected={boardType === bt.value} pal={BOARD_FAMILY_COLORS[bt.family]} onClick={() => setBoardType(bt.value)} />
))}
</div>
</div>
</div>
<label className="block text-sm font-medium mb-1" style={{ color: "var(--text-secondary)" }}>

View File

@@ -291,7 +291,7 @@ export default function DeviceInventoryDetail() {
{/* Title row */}
<div className="flex items-start justify-between mb-6">
<div>
<h1 className="text-xl font-bold font-mono" style={{ color: "var(--text-heading)" }}>
<h1 className="text-2xl font-bold font-mono" style={{ color: "var(--text-heading)" }}>
{device?.serial_number}
</h1>
{device?.device_name && (

View File

@@ -5,16 +5,48 @@ import api from "../api/client";
// ─── constants ───────────────────────────────────────────────────────────────
// Row layout: Vesper Pro / Vesper Plus / Vesper | Agnus / Agnus Mini | Chronos Pro / Chronos
const BOARD_TYPES = [
{ value: "vs", name: "VESPER", codename: "vesper-basic", desc: "Standard bell controller" },
{ value: "vp", name: "VESPER PLUS", codename: "vesper-plus", desc: "Extended output controller" },
{ value: "vx", name: "VESPER PRO", codename: "vesper-pro", desc: "Full-featured pro controller" },
{ value: "cb", name: "CHRONOS", codename: "chronos-basic", desc: "Basic clock controller" },
{ value: "cp", name: "CHRONOS PRO", codename: "chronos-pro", desc: "Pro clock controller" },
{ value: "am", name: "AGNUS MINI", codename: "agnus-mini", desc: "Compact carillon module" },
{ value: "ab", name: "AGNUS", codename: "agnus-basic", desc: "Standard carillon module" },
{ value: "vx", name: "VESPER PRO", codename: "vesper-pro", desc: "Full-featured pro controller", family: "vesper" },
{ value: "vp", name: "VESPER PLUS", codename: "vesper-plus", desc: "Extended output controller", family: "vesper" },
{ value: "vs", name: "VESPER", codename: "vesper-basic", desc: "Standard bell controller", family: "vesper" },
{ value: "ab", name: "AGNUS", codename: "agnus-basic", desc: "Standard carillon module", family: "agnus" },
{ value: "am", name: "AGNUS MINI", codename: "agnus-mini", desc: "Compact carillon module", family: "agnus" },
{ value: "cp", name: "CHRONOS PRO", codename: "chronos-pro", desc: "Pro clock controller", family: "chronos"},
{ value: "cb", name: "CHRONOS", codename: "chronos-basic", desc: "Basic clock controller", family: "chronos"},
];
// Color palette per board family (idle → selected → hover glow)
const BOARD_FAMILY_COLORS = {
vesper: {
selectedBg: "#0a1929",
selectedBorder:"#3b82f6",
selectedText: "#60a5fa",
hoverBorder: "#3b82f6",
glowColor: "rgba(59,130,246,0.35)",
idleBorder: "#1d3a5c",
idleText: "#7ca8d4",
},
agnus: {
selectedBg: "#1a1400",
selectedBorder:"#f59e0b",
selectedText: "#fbbf24",
hoverBorder: "#f59e0b",
glowColor: "rgba(245,158,11,0.35)",
idleBorder: "#4a3800",
idleText: "#c79d3a",
},
chronos: {
selectedBg: "#1a0808",
selectedBorder:"#ef4444",
selectedText: "#f87171",
hoverBorder: "#ef4444",
glowColor: "rgba(239,68,68,0.35)",
idleBorder: "#5c1a1a",
idleText: "#d47a7a",
},
};
const BOARD_TYPE_LABELS = Object.fromEntries(BOARD_TYPES.map((b) => [b.value, b.name]));
// Display board version stored as semver string ("1.0", "2.1") as "Rev 1.0"
@@ -97,11 +129,11 @@ function inputStyle() {
// Steps: 0=Mode, 1=Select, 2=Flash, 3=Verify, 4=Done
// current is 1-based to match step state (step 0 = mode picker, shown differently)
const STEP_LABELS = ["Select Device", "Flash", "Verify", "Done"];
const STEP_LABELS = ["Begin", "Device", "Flash", "Verify", "Done"];
function CheckeredFlagIcon() {
return (
<svg className="w-4 h-4" viewBox="0 0 24 24" fill="currentColor">
<svg className="w-3 h-3" viewBox="0 0 24 24" fill="currentColor">
<path d="M4 2v20h2V13h14V3H4zm2 2h3v3H6V4zm0 5h3v3H6V9zm5-5h3v3h-3V4zm0 5h3v3h-3V9zm5-5h3v3h-3V4zm0 5h3v3h-3V9z" />
</svg>
);
@@ -119,15 +151,18 @@ function StepIndicator({ current }) {
const isLast = i === STEP_LABELS.length - 1;
// Color tokens
const dotBg = done ? "#1a5c4a"
const dotBg = done ? "#53b15786"
: active ? "#22c55e"
: "#2a2a2a";
const dotColor = done ? "#4dd6c8"
: active ? "#fff"
: "#251a1a";
const dotColor = done ? "#cbedb9"
: active ? "#ffffff"
: "#555";
const labelColor = active ? "#22c55e" : done ? "#4dd6c8" : "#555";
const labelColor = active ? "#22c55e" : done ? "#53b15786" : "#555";
const labelGlow = active ? "0 0 8px rgba(34,197,94,0.45)" : "none";
const lineColor = done ? "#4dd6c8" : "var(--border-primary)";
const lineColor = done ? "#22c55e" : "var(--border-primary)";
// Active dot is 38px, others are 30px
const dotSize = active ? 38 : 30;
return (
<div key={label} className="flex items-center" style={{ minWidth: 0 }}>
@@ -135,20 +170,20 @@ function StepIndicator({ current }) {
<div className="flex flex-col items-center" style={{ flexShrink: 0 }}>
<div
style={{
width: 32, height: 32,
borderRadius: "50%",
width: dotSize, height: dotSize,
borderRadius: "60%",
display: "flex", alignItems: "center", justifyContent: "center",
backgroundColor: dotBg,
color: dotColor,
fontSize: "0.8rem",
fontWeight: 700,
border: active ? "2px solid #22c55e" : done ? "2px solid #4dd6c8" : "2px solid #333",
boxShadow: active ? "0 0 10px rgba(34,197,94,0.4)" : "none",
fontSize: active ? "1.0rem" : "0.85rem",
fontWeight: 500,
border: active ? "2px solid #22c55e" : done ? "2px solid #6d9b78c0" : "2px solid #333",
boxShadow: active ? "0 0 18px 8px rgba(34,197,94,0.4)" : "none",
transition: "all 0.2s",
}}
>
{done ? (
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<svg className="w-3 h-3" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2.5} d="M5 13l4 4L19 7" />
</svg>
) : isLast ? (
@@ -175,11 +210,11 @@ function StepIndicator({ current }) {
<div
style={{
height: 2,
flex: "1 1 24px",
minWidth: 16,
maxWidth: 48,
flex: "1 1 16px",
minWidth: 28,
maxWidth: 40,
backgroundColor: lineColor,
marginBottom: 20,
marginBottom: 18,
marginLeft: 4,
marginRight: 4,
transition: "background-color 0.2s",
@@ -194,47 +229,6 @@ function StepIndicator({ current }) {
);
}
// ─── Wizard top bar (title + indicator + Back/Abort) ─────────────────────────
function WizardTopBar({ step, onBack, onAbort, showBack, showAbort }) {
return (
<div className="mb-8">
<div className="flex items-center justify-between gap-4 mb-6">
{/* Left: Back button (or spacer) */}
<div style={{ minWidth: 90 }}>
{showBack && (
<button
onClick={onBack}
className="flex items-center gap-1.5 px-3 py-1.5 text-sm rounded-md transition-opacity hover:opacity-80 cursor-pointer"
style={{ backgroundColor: "var(--bg-card-hover)", color: "var(--text-secondary)" }}
>
Back
</button>
)}
</div>
{/* Center: Step indicator */}
<div style={{ flex: 1, display: "flex", justifyContent: "center" }}>
{step >= 1 && <StepIndicator current={step} />}
</div>
{/* Right: Abort button (or spacer) */}
<div style={{ minWidth: 90, display: "flex", justifyContent: "flex-end" }}>
{showAbort && (
<button
onClick={onAbort}
className="flex items-center gap-1.5 px-3 py-1.5 text-sm rounded-md transition-opacity hover:opacity-80 cursor-pointer"
style={{ backgroundColor: "var(--danger-bg)", color: "var(--danger-text)", border: "1px solid var(--danger)" }}
>
Abort
</button>
)}
</div>
</div>
</div>
);
}
// ─── Step 0 — Mode picker ─────────────────────────────────────────────────────
function StepModePicker({ onPick }) {
@@ -250,13 +244,20 @@ function StepModePicker({ onPick }) {
{/* Flash Existing */}
<button
onClick={() => onPick("existing")}
className="rounded-xl border p-6 text-left transition-all hover:opacity-90 cursor-pointer"
className="rounded-xl border p-6 text-left cursor-pointer"
style={{
backgroundColor: "var(--bg-card)",
borderColor: "var(--border-primary)",
transition: "border-color 0.15s, box-shadow 0.15s",
}}
onMouseEnter={(e) => {
e.currentTarget.style.borderColor = "var(--accent)";
e.currentTarget.style.boxShadow = "0 0 14px 4px rgba(34,197,94,0.25)";
}}
onMouseLeave={(e) => {
e.currentTarget.style.borderColor = "var(--border-primary)";
e.currentTarget.style.boxShadow = "none";
}}
onMouseEnter={(e) => (e.currentTarget.style.borderColor = "var(--accent)")}
onMouseLeave={(e) => (e.currentTarget.style.borderColor = "var(--border-primary)")}
>
<div
className="w-10 h-10 rounded-lg flex items-center justify-center mb-4"
@@ -272,22 +273,29 @@ function StepModePicker({ onPick }) {
</p>
</button>
{/* Deploy New */}
{/* Deploy New — same style as Flash Existing */}
<button
onClick={() => onPick("new")}
className="rounded-xl border p-6 text-left transition-all hover:opacity-90 cursor-pointer"
className="rounded-xl border p-6 text-left cursor-pointer"
style={{
backgroundColor: "var(--bg-card)",
borderColor: "var(--border-primary)",
transition: "border-color 0.15s, box-shadow 0.15s",
}}
onMouseEnter={(e) => {
e.currentTarget.style.borderColor = "var(--accent)";
e.currentTarget.style.boxShadow = "0 0 14px 4px rgba(34,197,94,0.25)";
}}
onMouseLeave={(e) => {
e.currentTarget.style.borderColor = "var(--border-primary)";
e.currentTarget.style.boxShadow = "none";
}}
onMouseEnter={(e) => (e.currentTarget.style.borderColor = "#22c55e")}
onMouseLeave={(e) => (e.currentTarget.style.borderColor = "var(--border-primary)")}
>
<div
className="w-10 h-10 rounded-lg flex items-center justify-center mb-4"
style={{ backgroundColor: "#0a2e0a" }}
style={{ backgroundColor: "var(--bg-card-hover)" }}
>
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" style={{ color: "#22c55e" }}>
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" style={{ color: "var(--accent)" }}>
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M12 4v16m8-8H4" />
</svg>
</div>
@@ -454,6 +462,52 @@ function StepSelectExisting({ onSelected }) {
);
}
// ─── Board Type Tile (shared between StepDeployNew and AddDeviceModal) ────────
function BoardTypeTile({ bt, isSelected, pal, onClick }) {
const [hovered, setHovered] = useState(false);
const borderColor = isSelected
? pal.selectedBorder
: hovered
? pal.hoverBorder
: pal.idleBorder;
const boxShadow = isSelected
? `0 0 0 1px ${pal.selectedBorder}, 0 0 14px 4px ${pal.glowColor}`
: hovered
? `0 0 12px 3px ${pal.glowColor}`
: "none";
return (
<button
onClick={onClick}
onMouseEnter={() => setHovered(true)}
onMouseLeave={() => setHovered(false)}
className="rounded-lg border p-3 text-left transition-all cursor-pointer"
style={{
backgroundColor: isSelected ? pal.selectedBg : "var(--bg-card)",
borderColor,
boxShadow,
transition: "border-color 0.15s, box-shadow 0.15s, background-color 0.15s",
}}
>
<p
className="font-bold text-xs tracking-wide"
style={{ color: isSelected ? pal.selectedText : hovered ? pal.idleText : "var(--text-heading)" }}
>
{bt.name}
</p>
<p className="text-xs mt-0.5 font-mono opacity-60" style={{ color: "var(--text-muted)" }}>
{bt.codename}
</p>
<p className="text-xs mt-1 leading-snug" style={{ color: "var(--text-muted)", opacity: 0.75 }}>
{bt.desc}
</p>
</button>
);
}
// ─── Step 1b — Deploy New: pick board type + revision ─────────────────────────
function StepDeployNew({ onSelected, onCreatedSn }) {
@@ -483,44 +537,63 @@ function StepDeployNew({ onSelected, onCreatedSn }) {
}
};
// Group boards by family for row layout
const vesperBoards = BOARD_TYPES.filter((b) => b.family === "vesper");
const agnusBoards = BOARD_TYPES.filter((b) => b.family === "agnus");
const chronosBoards = BOARD_TYPES.filter((b) => b.family === "chronos");
const renderTileRow = (boards, cols) => (
<div style={{ display: "grid", gridTemplateColumns: `repeat(${cols}, 1fr)`, gap: 10, justifyItems: "stretch" }}>
{boards.map((bt) => (
<BoardTypeTile
key={bt.value}
bt={bt}
isSelected={boardType === bt.value}
pal={BOARD_FAMILY_COLORS[bt.family]}
onClick={() => setBoardType(bt.value)}
/>
))}
</div>
);
return (
<div className="space-y-5">
{/* Board type tiles */}
{/* Board type tiles — Vesper: 3 col, Agnus: 2 col centered, Chronos: 2 col centered */}
<div>
<p className="text-sm font-medium mb-3" style={{ color: "var(--text-secondary)" }}>Board Type</p>
<div className="grid grid-cols-2 gap-3">
{BOARD_TYPES.map((bt) => {
const isSelected = boardType === bt.value;
return (
<button
<div className="space-y-2">
{renderTileRow(vesperBoards, 3)}
<div style={{ display: "grid", gridTemplateColumns: "repeat(3, 1fr)", gap: 10 }}>
<div style={{ gridColumn: "1 / 3", display: "grid", gridTemplateColumns: "1fr 1fr", gap: 10 }}>
{agnusBoards.map((bt) => (
<BoardTypeTile
key={bt.value}
bt={bt}
isSelected={boardType === bt.value}
pal={BOARD_FAMILY_COLORS[bt.family]}
onClick={() => setBoardType(bt.value)}
className="rounded-lg border p-4 text-left transition-all cursor-pointer"
style={{
backgroundColor: isSelected ? "#0a1f0a" : "var(--bg-card)",
borderColor: isSelected ? "#22c55e" : "var(--border-primary)",
boxShadow: isSelected ? "0 0 0 1px #22c55e" : "none",
}}
>
<p
className="font-bold text-sm tracking-wide"
style={{ color: isSelected ? "#22c55e" : "var(--text-heading)" }}
>
{bt.name}
</p>
<p className="text-xs mt-0.5 font-mono" style={{ color: "var(--text-muted)" }}>
{bt.codename}
</p>
<p className="text-xs mt-1.5" style={{ color: "var(--text-muted)", opacity: 0.8 }}>
{bt.desc}
</p>
</button>
);
})}
/>
))}
</div>
</div>
<div style={{ display: "grid", gridTemplateColumns: "repeat(3, 1fr)", gap: 10 }}>
<div style={{ gridColumn: "1 / 3", display: "grid", gridTemplateColumns: "1fr 1fr", gap: 10 }}>
{chronosBoards.map((bt) => (
<BoardTypeTile
key={bt.value}
bt={bt}
isSelected={boardType === bt.value}
pal={BOARD_FAMILY_COLORS[bt.family]}
onClick={() => setBoardType(bt.value)}
/>
))}
</div>
</div>
</div>
</div>
{/* Board revision */}
{/* Board revision (left) + Generate button (right) */}
<div className="flex items-end justify-between gap-4">
<div>
<label className="block text-sm font-medium mb-1.5" style={{ color: "var(--text-secondary)" }}>
Board Revision
@@ -537,12 +610,12 @@ function StepDeployNew({ onSelected, onCreatedSn }) {
/>
</div>
<p className="text-xs mt-1" style={{ color: "var(--text-muted)" }}>
Use semantic versioning: 1.0, 1.1, 2.0, etc.
Semantic versioning: 1.0, 1.1, 2.0
</p>
</div>
<div className="flex flex-col items-end gap-2">
<ErrorBox msg={error} />
<button
onClick={handleCreate}
disabled={!boardType || creating}
@@ -552,6 +625,8 @@ function StepDeployNew({ onSelected, onCreatedSn }) {
{creating ? "Creating…" : "Generate Serial & Continue →"}
</button>
</div>
</div>
</div>
);
}
@@ -585,14 +660,21 @@ function StepFlash({ device, onFlashed }) {
const portRef = useRef(null);
const serialReaderRef = useRef(null);
const serialActiveRef = useRef(false);
const serialAutoScrollRef = useRef(true); // mirrors state — readable inside async loops
const logEndRef = useRef(null);
const serialEndRef = useRef(null);
// Keep the ref in sync with state so async loops always see the current value
const handleSetSerialAutoScroll = (val) => {
serialAutoScrollRef.current = val;
setSerialAutoScroll(val);
};
const appendLog = (msg) => setLog((prev) => [...prev, String(msg)]);
const appendSerial = (msg) => setSerial((prev) => [...prev, String(msg)]);
const scrollLog = () => logEndRef.current?.scrollIntoView({ behavior: "smooth" });
const scrollSerial = () => { if (serialAutoScroll) serialEndRef.current?.scrollIntoView({ behavior: "smooth" }); };
const scrollSerial = () => { if (serialAutoScrollRef.current) serialEndRef.current?.scrollIntoView({ behavior: "smooth" }); };
// When auto-scroll is re-enabled, jump to bottom immediately
useEffect(() => {
@@ -789,19 +871,17 @@ function StepFlash({ device, onFlashed }) {
const webSerialAvailable = "serial" in navigator;
const busy = connecting || flashing;
return (
<div className="space-y-4">
{/* Main card */}
// ── Row 1: Info+buttons (left) | Flash Output (right) ──────────────────────
const InfoPanel = (
<div
className="rounded-lg border p-5"
className="rounded-lg border p-5 flex flex-col"
style={{ backgroundColor: "var(--bg-card)", borderColor: "var(--border-primary)" }}
>
{/* Header row: title + COM status icon */}
{/* Header: title + COM status */}
<div className="flex items-center justify-between mb-4">
<h3 className="text-sm font-semibold uppercase tracking-wide" style={{ color: "var(--text-muted)" }}>
Device to Flash
</h3>
{/* COM port status icon — click to disconnect */}
<button
onClick={portConnected ? disconnectPort : undefined}
title={portConnected ? `${portName} — Click to disconnect` : "No port connected"}
@@ -812,46 +892,66 @@ function StepFlash({ device, onFlashed }) {
border: `1px solid ${portConnected ? "#4dd6c8" : "var(--border-primary)"}`,
}}
>
<span
className="inline-block w-2 h-2 rounded-full"
style={{ backgroundColor: portConnected ? "#22c55e" : "#444" }}
/>
<span className="inline-block w-2 h-2 rounded-full" style={{ backgroundColor: portConnected ? "#22c55e" : "#444" }} />
{portConnected ? portName || "Connected" : "No Port"}
{portConnected && <span className="ml-1 opacity-60"></span>}
</button>
</div>
<div className="grid grid-cols-2 gap-3 mb-5">
<div className="grid grid-cols-2 gap-3 mb-4">
<InfoCell label="Serial Number" value={device.serial_number} mono />
<InfoCell label="Board" value={`${BOARD_TYPE_LABELS[device.hw_type] || device.hw_type} ${formatHwVersion(device.hw_version)}`} />
</div>
{!webSerialAvailable && (
<div className="text-sm rounded-md p-3 mb-4 border"
<div className="text-sm rounded-md p-3 mb-3 border"
style={{ backgroundColor: "#2e1a00", borderColor: "#fb923c", color: "#fb923c" }}>
Web Serial API not available. Use Chrome or Edge on a desktop system.
</div>
)}
<ErrorBox msg={error} />
{error && <div className="h-3" />}
{error && <div className="h-2" />}
{(flashing || nvsProgress > 0) && (
<div className="space-y-3 mb-5">
<div className="space-y-3 mb-4">
<ProgressBar label="NVS Partition (0x9000)" percent={nvsProgress} />
<ProgressBar label="Firmware (0x10000)" percent={fwProgress} />
</div>
)}
{/* Action buttons */}
{/* Spacer — pushes bottom bar to the actual bottom of the card */}
<div style={{ flex: 1 }} />
{/* Bottom bar: info (left) | buttons (right) */}
<div
className="flex items-end justify-between gap-3 pt-3 mt-2"
style={{ borderTop: "1px solid var(--border-secondary)" }}
>
{/* Left: status hint + tech info */}
<div>
{portConnected && !flashing && !done && log.length === 0 && (
<div className="flex items-center gap-2 text-sm mb-1.5" style={{ color: "#4dd6c8" }}>
<span className="inline-block w-2 h-2 rounded-full" style={{ backgroundColor: "#22c55e" }} />
Ready to flash.
</div>
)}
{flashing && (
<p className="text-sm mb-1.5" style={{ color: "var(--text-muted)" }}>Flashing do not disconnect</p>
)}
<p className="text-xs" style={{ color: "var(--text-muted)", opacity: 0.6 }}>
NVS 0x9000 · FW 0x10000 · {FLASH_BAUD} baud
</p>
</div>
{/* Right: action buttons */}
{!busy && (
<div className="flex items-center flex-wrap gap-3">
{/* Connect port button — only if not yet connected */}
<div className="flex items-center gap-2 flex-wrap">
{!portConnected && (
<button
onClick={handleConnectPort}
disabled={!webSerialAvailable}
className="flex items-center gap-2 px-5 py-2 text-sm rounded-md font-medium hover:opacity-90 transition-opacity cursor-pointer disabled:opacity-50"
className="flex items-center gap-2 px-4 py-2 text-sm rounded-md font-medium hover:opacity-90 transition-opacity cursor-pointer disabled:opacity-50"
style={{ backgroundColor: "var(--bg-card-hover)", color: "var(--text-secondary)", border: "1px solid var(--border-primary)" }}
>
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
@@ -860,8 +960,24 @@ function StepFlash({ device, onFlashed }) {
Select COM Port
</button>
)}
{/* Start Flashing button — only after port connected */}
{portConnected && done && (
<button
onClick={handleStartFlash}
className="flex items-center gap-2 px-4 py-2 text-sm rounded-md hover:opacity-80 transition-opacity cursor-pointer"
style={{ backgroundColor: "var(--bg-card-hover)", color: "var(--text-secondary)" }}
>
Flash Again
</button>
)}
{done && (
<button
onClick={onFlashed}
className="flex items-center gap-2 px-4 py-2 text-sm rounded-md font-medium hover:opacity-90 transition-opacity cursor-pointer"
style={{ backgroundColor: "var(--accent)", color: "var(--bg-primary)" }}
>
Proceed to Verify
</button>
)}
{portConnected && !done && (
<button
onClick={handleStartFlash}
@@ -874,54 +990,14 @@ function StepFlash({ device, onFlashed }) {
Start Flashing
</button>
)}
{/* Re-flash button after done */}
{portConnected && done && (
<button
onClick={handleStartFlash}
className="flex items-center gap-2 px-4 py-2 text-sm rounded-md hover:opacity-80 transition-opacity cursor-pointer"
style={{ backgroundColor: "var(--bg-card-hover)", color: "var(--text-secondary)" }}
>
Flash Again
</button>
)}
{/* Proceed to Verify — available after flash completes */}
{done && (
<button
onClick={onFlashed}
className="flex items-center gap-2 px-5 py-2 text-sm rounded-md font-medium hover:opacity-90 transition-opacity cursor-pointer"
style={{ backgroundColor: "var(--accent)", color: "var(--bg-primary)" }}
>
Proceed to Verify
</button>
)}
</div>
)}
{/* Port connected confirmation (before flashing starts) */}
{portConnected && !flashing && !done && log.length === 0 && (
<div className="mt-3 flex items-center gap-2 text-sm" style={{ color: "#4dd6c8" }}>
<span className="inline-block w-2 h-2 rounded-full" style={{ backgroundColor: "#22c55e" }} />
COM port connected ready to flash.
</div>
)}
{flashing && (
<p className="text-sm mt-3" style={{ color: "var(--text-muted)" }}>
Flashing in progress do not disconnect
</p>
)}
</div>
);
{/* Output panels — always shown once there's any content */}
{(log.length > 0 || serial.length > 0 || portConnected) && (
<div>
{/* Top row: Flash Output + main section (side by side) */}
{log.length > 0 && (
<div className="grid grid-cols-2 gap-3 mb-3">
{/* Flash Output */}
<div className="rounded-lg border overflow-hidden" style={{ borderColor: "var(--border-primary)" }}>
const FlashOutputPanel = (
<div className="rounded-lg border overflow-hidden flex flex-col" style={{ borderColor: "var(--border-primary)", height: 320 }}>
<div
className="px-3 py-2 text-xs font-semibold uppercase tracking-wide border-b"
style={{ backgroundColor: "var(--bg-card)", borderColor: "var(--border-primary)", color: "var(--text-muted)" }}
@@ -930,38 +1006,45 @@ function StepFlash({ device, onFlashed }) {
</div>
<div
className="p-3 font-mono text-xs overflow-y-auto space-y-0.5"
style={{ backgroundColor: "var(--bg-primary)", color: "var(--text-secondary)", height: "220px" }}
style={{ backgroundColor: "var(--bg-primary)", color: "var(--text-secondary)", flex: 1, minHeight: 0 }}
>
{log.map((line, i) => <div key={i}>{line}</div>)}
{log.length === 0 ? (
<span style={{ color: "var(--text-muted)", opacity: 0.5 }}>
{flashing ? "Connecting…" : "Output will appear here once flashing starts."}
</span>
) : (
log.map((line, i) => <div key={i}>{line}</div>)
)}
<div ref={logEndRef} />
</div>
</div>
);
{/* Placeholder / status on the right during flash */}
<div className="rounded-lg border p-4 flex items-center justify-center"
style={{ borderColor: "var(--border-primary)", backgroundColor: "var(--bg-card)", height: 264 }}>
{flashing ? (
<div className="text-center">
<svg className="w-8 h-8 animate-spin mx-auto mb-2" style={{ color: "var(--accent)" }} fill="none" viewBox="0 0 24 24">
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4" />
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z" />
</svg>
<p className="text-xs" style={{ color: "var(--text-muted)" }}>Flashing</p>
return (
<div style={{ display: "flex", flexDirection: "column", gap: 12 }}>
{/* Row 1: Info | Flash Output */}
<div style={{ display: "grid", gridTemplateColumns: "1fr 1fr", gap: 12, alignItems: "stretch" }}>
{InfoPanel}
{FlashOutputPanel}
</div>
) : (
<p className="text-xs text-center" style={{ color: "var(--text-muted)" }}>
{done ? "Flash complete." : "Waiting to start."}
</p>
)}
</div>
</div>
)}
{/* Serial Output — full width below */}
<div className="rounded-lg border overflow-hidden" style={{ borderColor: "var(--border-primary)" }}>
{/* Row 2: Serial Output — full width, resizable by drag.
↓ EDIT THIS VALUE to adjust the serial monitor height ↓ */}
<div
className="rounded-lg border"
style={{
borderColor: "var(--border-primary)",
display: "flex",
flexDirection: "column",
minHeight: 180,
height: 320, /* ← change this number to adjust height */
resize: "vertical",
overflow: "auto",
}}
>
<div
className="px-3 py-2 text-xs font-semibold uppercase tracking-wide border-b flex items-center justify-between"
style={{ backgroundColor: "var(--bg-card)", borderColor: "var(--border-primary)", color: "var(--text-muted)" }}
style={{ backgroundColor: "var(--bg-card)", borderColor: "var(--border-primary)", color: "var(--text-muted)", flexShrink: 0 }}
>
<div className="flex items-center gap-2">
<span>Serial Output</span>
@@ -972,11 +1055,10 @@ function StepFlash({ device, onFlashed }) {
</span>
)}
</div>
{/* Auto-scroll toggle */}
<label className="flex items-center gap-1.5 cursor-pointer select-none">
<span className="text-xs" style={{ color: "var(--text-muted)" }}>Auto-scroll</span>
<span
onClick={() => setSerialAutoScroll((v) => !v)}
onClick={() => handleSetSerialAutoScroll(!serialAutoScrollRef.current)}
className="relative inline-flex items-center"
style={{
width: 32, height: 18,
@@ -1002,8 +1084,8 @@ function StepFlash({ device, onFlashed }) {
</label>
</div>
<div
className="p-3 font-mono text-xs overflow-y-auto space-y-0.5"
style={{ backgroundColor: "var(--bg-primary)", color: "#a3e635", height: "200px" }}
className="p-3 font-mono text-xs space-y-0.5"
style={{ backgroundColor: "var(--bg-primary)", color: "#a3e635", flex: 1, overflowY: "auto", minHeight: 0 }}
>
{serial.length === 0 ? (
<span style={{ color: "var(--text-muted)" }}>
@@ -1016,12 +1098,6 @@ function StepFlash({ device, onFlashed }) {
</div>
</div>
</div>
)}
<p className="text-xs" style={{ color: "var(--text-muted)" }}>
Flash addresses: NVS at 0x9000 · Firmware at 0x10000 · Baud: {FLASH_BAUD}
</p>
</div>
);
}
@@ -1196,14 +1272,8 @@ function StepVerify({ device, onVerified }) {
// ─── Step 4 — Done ────────────────────────────────────────────────────────────
function StepDone({ device, startedAt, onProvisionNext }) {
function StepDone({ device, onProvisionNext }) {
const navigate = useNavigate();
const elapsed = startedAt ? Math.round((Date.now() - startedAt) / 1000) : null;
const formatElapsed = (sec) => {
if (sec < 60) return `${sec}s`;
return `${Math.floor(sec / 60)}m ${sec % 60}s`;
};
return (
<div className="space-y-4">
@@ -1225,17 +1295,29 @@ function StepDone({ device, startedAt, onProvisionNext }) {
</div>
</div>
<div className="grid grid-cols-2 gap-4 rounded-md p-4 mb-5" style={{ backgroundColor: "var(--bg-primary)" }}>
<InfoCell label="Serial Number" value={device.serial_number} mono />
<InfoCell label="Board Type" value={BOARD_TYPE_LABELS[device.hw_type] || device.hw_type} />
<InfoCell label="HW Version" value={formatHwVersion(device.hw_version)} />
<div>
<p className="text-xs uppercase tracking-wide mb-0.5" style={{ color: "var(--text-muted)" }}>Status</p>
<div className="rounded-md mb-5" style={{ backgroundColor: "var(--bg-primary)" }}>
{/* Row 1: Serial Number (left) | Status (right) */}
<div className="grid grid-cols-2" style={{ borderBottom: "1px solid var(--border-secondary)" }}>
<div className="p-4" style={{ borderRight: "1px solid var(--border-secondary)" }}>
<p className="text-xs uppercase tracking-wide mb-1" style={{ color: "var(--text-muted)" }}>Serial Number</p>
<p className="text-sm font-mono" style={{ color: "var(--text-primary)" }}>{device.serial_number}</p>
</div>
<div className="p-4 flex flex-col items-end">
<p className="text-xs uppercase tracking-wide mb-1" style={{ color: "var(--text-muted)" }}>Status</p>
<StatusBadge status={device.mfg_status} />
</div>
{elapsed !== null && (
<InfoCell label="Time Taken" value={formatElapsed(elapsed)} />
)}
</div>
{/* Row 2: Board Type (left) | HW Version (right) */}
<div className="grid grid-cols-2">
<div className="p-4" style={{ borderRight: "1px solid var(--border-secondary)" }}>
<p className="text-xs uppercase tracking-wide mb-1" style={{ color: "var(--text-muted)" }}>Board Type</p>
<p className="text-sm" style={{ color: "var(--text-primary)" }}>{BOARD_TYPE_LABELS[device.hw_type] || device.hw_type}</p>
</div>
<div className="p-4 flex flex-col items-end">
<p className="text-xs uppercase tracking-wide mb-1" style={{ color: "var(--text-muted)" }}>HW Version</p>
<p className="text-sm" style={{ color: "var(--text-primary)" }}>{formatHwVersion(device.hw_version)}</p>
</div>
</div>
</div>
<div className="flex flex-wrap gap-3">
@@ -1271,7 +1353,6 @@ export default function ProvisioningWizard() {
const [step, setStep] = useState(0);
const [mode, setMode] = useState(null); // "existing" | "new"
const [device, setDevice] = useState(null);
const [startedAt, setStartedAt] = useState(null);
const [createdSn, setCreatedSn] = useState(null); // SN created in Deploy New, for abort cleanup
const handleModePicked = (m) => {
@@ -1281,7 +1362,6 @@ export default function ProvisioningWizard() {
const handleDeviceSelected = (dev) => {
setDevice(dev);
setStartedAt(Date.now());
setStep(2);
};
@@ -1318,12 +1398,10 @@ export default function ProvisioningWizard() {
setStep(0);
setMode(null);
setDevice(null);
setStartedAt(null);
};
const handleProvisionNext = () => {
setDevice(null);
setStartedAt(null);
setCreatedSn(null);
setStep(0);
setMode(null);
@@ -1333,20 +1411,69 @@ export default function ProvisioningWizard() {
const showBack = step >= 1 && step <= 3;
const showAbort = step >= 1 && step <= 3;
// Flash step takes full available width; all others are centered at 720px
const isFlashStep = step === 2;
return (
<div style={{ maxWidth: 720 }}>
<h1 className="text-xl font-bold mb-2" style={{ color: "var(--text-heading)" }}>
<div style={{ display: "flex", flexDirection: "column", minHeight: "100%" }}>
{/* ── Sticky top bar ── */}
<div
style={{
position: "sticky",
top: 0,
zIndex: 50,
backgroundColor: "var(--bg-primary)",
borderBottom: "1px solid var(--border-primary)",
padding: "12px 24px",
}}
>
{/* Title + controls row */}
<div className="flex items-center justify-between gap-4">
{/* Left: Title */}
<h1 className="text-2xl font-bold" style={{ color: "var(--text-heading)", minWidth: 0, flexShrink: 0 }}>
Provisioning Wizard
</h1>
<WizardTopBar
step={step}
onBack={handleBack}
onAbort={handleAbort}
showBack={showBack}
showAbort={showAbort}
/>
{/* Center: StepIndicator — always visible, current=step+1 to account for Begin as step 1 */}
<div style={{ flex: 1, display: "flex", justifyContent: "center", paddingBottom: 8 }}>
<StepIndicator current={step + 1} />
</div>
{/* Right: Back + Abort grouped together */}
<div className="flex items-center gap-2" style={{ flexShrink: 0 }}>
{showBack && (
<button
onClick={handleBack}
className="flex items-center gap-1.5 px-3 py-1.5 text-sm rounded-md transition-opacity hover:opacity-80 cursor-pointer"
style={{ backgroundColor: "var(--bg-card-hover)", color: "var(--text-secondary)" }}
>
Back
</button>
)}
{showAbort && (
<button
onClick={handleAbort}
className="flex items-center gap-1.5 px-3 py-1.5 text-sm rounded-md transition-opacity hover:opacity-80 cursor-pointer"
style={{ backgroundColor: "var(--danger-bg)", color: "var(--danger-text)", border: "1px solid var(--danger)" }}
>
Abort
</button>
)}
</div>
</div>
</div>
{/* ── Step content ── */}
<div
style={{
flex: 1,
padding: isFlashStep ? "24px" : "32px 24px",
...(isFlashStep
? {}
: { display: "flex", justifyContent: "center" }),
}}
>
<div style={isFlashStep ? {} : { width: "100%", maxWidth: 720 }}>
{step === 0 && <StepModePicker onPick={handleModePicked} />}
{step === 1 && mode === "existing" && (
@@ -1366,9 +1493,11 @@ export default function ProvisioningWizard() {
<StepVerify device={device} onVerified={handleVerified} />
)}
{step === 4 && device && (
<StepDone device={device} startedAt={startedAt} onProvisionNext={handleProvisionNext} />
<StepDone device={device} onProvisionNext={handleProvisionNext} />
)}
</div>
</div>
</div>
);
}

View File

@@ -51,16 +51,128 @@ const ALL_COLUMNS = [
{ key: "pid", label: "PID", defaultOn: false },
];
function getDefaultVisibleColumns() {
const saved = localStorage.getItem("melodyListColumns");
if (saved) {
const MEL_COL_VIS_KEY = "melodyListColumns";
const MEL_COL_ORDER_KEY = "melodyListColumnsOrder";
function loadColumnPrefs() {
try {
return JSON.parse(saved);
const vis = JSON.parse(localStorage.getItem(MEL_COL_VIS_KEY) || "null");
const order = JSON.parse(localStorage.getItem(MEL_COL_ORDER_KEY) || "null");
const visible = vis
? Object.fromEntries(ALL_COLUMNS.map((c) => [c.key, vis.includes ? vis.includes(c.key) : Boolean(vis[c.key])]))
: Object.fromEntries(ALL_COLUMNS.map((c) => [c.key, c.defaultOn]));
const orderedIds = order || ALL_COLUMNS.map((c) => c.key);
// always-on columns
for (const c of ALL_COLUMNS) {
if (c.alwaysOn) visible[c.key] = true;
if (!orderedIds.includes(c.key)) orderedIds.push(c.key);
}
return { visible, orderedIds };
} catch {
// ignore
return {
visible: Object.fromEntries(ALL_COLUMNS.map((c) => [c.key, c.defaultOn])),
orderedIds: ALL_COLUMNS.map((c) => c.key),
};
}
}
return ALL_COLUMNS.filter((c) => c.defaultOn).map((c) => c.key);
function saveColumnPrefs(visible, orderedIds) {
localStorage.setItem(MEL_COL_VIS_KEY, JSON.stringify(visible));
localStorage.setItem(MEL_COL_ORDER_KEY, JSON.stringify(orderedIds));
}
// ─── Melody Column Toggle (drag-and-drop) ─────────────────────────────────────
function MelodyColumnToggle({ visible, orderedIds, onChange, onReorder }) {
const [open, setOpen] = useState(false);
const [dragging, setDragging] = useState(null);
const ref = useRef(null);
useEffect(() => {
const handler = (e) => { if (ref.current && !ref.current.contains(e.target)) setOpen(false); };
document.addEventListener("mousedown", handler);
return () => document.removeEventListener("mousedown", handler);
}, []);
const handleDragStart = (id) => setDragging(id);
const handleDragOver = (e, id) => {
e.preventDefault();
if (dragging && dragging !== id) {
const next = [...orderedIds];
const from = next.indexOf(dragging);
const to = next.indexOf(id);
next.splice(from, 1);
next.splice(to, 0, dragging);
onReorder(next);
}
};
const handleDragEnd = () => setDragging(null);
const visibleCount = Object.values(visible).filter(Boolean).length;
return (
<div className="relative" ref={ref}>
<button
type="button"
onClick={() => setOpen((v) => !v)}
className="flex items-center gap-1.5 px-3 py-2 text-sm rounded-md transition-colors cursor-pointer border"
style={{ borderColor: "var(--border-primary)", color: "var(--text-secondary)" }}
>
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 17V7m0 10a2 2 0 01-2 2H5a2 2 0 01-2-2V7a2 2 0 012-2h2a2 2 0 012 2m0 10a2 2 0 002 2h2a2 2 0 002-2M9 7a2 2 0 012-2h2a2 2 0 012 2m0 10V7m0 10a2 2 0 002 2h2a2 2 0 002-2V7a2 2 0 00-2-2h-2a2 2 0 00-2 2" />
</svg>
Columns ({visibleCount})
</button>
{open && (
<div
className="absolute right-0 top-full mt-1 z-[9999] rounded-lg border shadow-lg p-2 overflow-y-auto"
style={{ backgroundColor: "var(--bg-card)", borderColor: "var(--border-primary)", width: 220, maxHeight: 420 }}
>
<p className="text-xs font-medium px-2 py-1 mb-1" style={{ color: "var(--text-muted)" }}>
Drag to reorder
</p>
{orderedIds.map((key) => {
const col = ALL_COLUMNS.find((c) => c.key === key);
if (!col) return null;
return (
<div
key={key}
draggable={!col.alwaysOn}
onDragStart={() => !col.alwaysOn && handleDragStart(key)}
onDragOver={(e) => handleDragOver(e, key)}
onDragEnd={handleDragEnd}
className="flex items-center gap-2 px-2 py-1.5 rounded select-none"
style={{
cursor: col.alwaysOn ? "default" : "grab",
backgroundColor: dragging === key ? "var(--bg-card-hover)" : "transparent",
opacity: dragging === key ? 0.5 : 1,
}}
>
<span style={{ color: "var(--text-muted)", fontSize: 10, opacity: col.alwaysOn ? 0.3 : 1 }}></span>
<label className="flex items-center gap-2 cursor-pointer flex-1">
<input
type="checkbox"
checked={!!visible[key]}
disabled={col.alwaysOn}
onChange={(e) => onChange(key, e.target.checked)}
className="cursor-pointer"
onClick={(e) => e.stopPropagation()}
/>
<span
className="text-sm"
style={{ color: col.alwaysOn ? "var(--text-muted)" : "var(--text-secondary)" }}
>
{col.label}
</span>
</label>
</div>
);
})}
</div>
)}
</div>
);
}
function speedBarColor(speedPercent) {
@@ -258,15 +370,35 @@ export default function MelodyList() {
const [deleteTarget, setDeleteTarget] = useState(null);
const [unpublishTarget, setUnpublishTarget] = useState(null);
const [actionLoading, setActionLoading] = useState(null);
const [visibleColumns, setVisibleColumns] = useState(getDefaultVisibleColumns);
const [showColumnPicker, setShowColumnPicker] = useState(false);
const [colPrefs, setColPrefs] = useState(loadColumnPrefs);
const [showCreatorPicker, setShowCreatorPicker] = useState(false);
const [showOfflineModal, setShowOfflineModal] = useState(false);
const [builtInSavingId, setBuiltInSavingId] = useState(null);
const [viewRow, setViewRow] = useState(null);
const [builtMap, setBuiltMap] = useState({});
const columnPickerRef = useRef(null);
const creatorPickerRef = useRef(null);
// Derived helpers from colPrefs
const visibleColumns = colPrefs.orderedIds.filter((k) => colPrefs.visible[k]);
const isVisible = (key) => Boolean(colPrefs.visible[key]);
const handleColVisChange = (key, checked) => {
const col = ALL_COLUMNS.find((c) => c.key === key);
if (col?.alwaysOn) return;
setColPrefs((prev) => {
const next = { ...prev, visible: { ...prev.visible, [key]: checked } };
saveColumnPrefs(next.visible, next.orderedIds);
return next;
});
};
const handleColReorder = (orderedIds) => {
setColPrefs((prev) => {
const next = { ...prev, orderedIds };
saveColumnPrefs(next.visible, next.orderedIds);
return next;
});
};
const navigate = useNavigate();
const { hasPermission } = useAuth();
const canEdit = hasPermission("melodies", "edit");
@@ -278,35 +410,18 @@ export default function MelodyList() {
});
}, []);
useEffect(() => {
setVisibleColumns((prev) => {
const known = new Set(ALL_COLUMNS.map((c) => c.key));
let next = prev.filter((k) => known.has(k));
for (const col of ALL_COLUMNS) {
if (col.alwaysOn && !next.includes(col.key)) next.push(col.key);
}
if (JSON.stringify(next) !== JSON.stringify(prev)) {
localStorage.setItem("melodyListColumns", JSON.stringify(next));
}
return next;
});
}, []);
// Close dropdowns on outside click
// Close creator picker on outside click
useEffect(() => {
const handleClick = (e) => {
if (columnPickerRef.current && !columnPickerRef.current.contains(e.target)) {
setShowColumnPicker(false);
}
if (creatorPickerRef.current && !creatorPickerRef.current.contains(e.target)) {
setShowCreatorPicker(false);
}
};
if (showColumnPicker || showCreatorPicker) {
if (showCreatorPicker) {
document.addEventListener("mousedown", handleClick);
return () => document.removeEventListener("mousedown", handleClick);
}
}, [showColumnPicker, showCreatorPicker]);
}, [showCreatorPicker]);
const fetchMelodies = async () => {
setLoading(true);
@@ -519,45 +634,12 @@ export default function MelodyList() {
}
};
const toggleColumn = (key) => {
const col = ALL_COLUMNS.find((c) => c.key === key);
if (col?.alwaysOn) return;
setVisibleColumns((prev) => {
const next = prev.includes(key)
? prev.filter((k) => k !== key)
: [...prev, key];
localStorage.setItem("melodyListColumns", JSON.stringify(next));
return next;
});
};
const moveColumn = (key, direction) => {
setVisibleColumns((prev) => {
const idx = prev.indexOf(key);
if (idx < 0) return prev;
const swapIdx = direction === "up" ? idx - 1 : idx + 1;
if (swapIdx < 0 || swapIdx >= prev.length) return prev;
const next = [...prev];
[next[idx], next[swapIdx]] = [next[swapIdx], next[idx]];
localStorage.setItem("melodyListColumns", JSON.stringify(next));
return next;
});
};
const toggleCreator = (creator) => {
setCreatedByFilter((prev) =>
prev.includes(creator) ? prev.filter((c) => c !== creator) : [...prev, creator]
);
};
const isVisible = (key) => visibleColumns.includes(key);
const orderedColumnPickerColumns = useMemo(() => {
const byKey = new Map(ALL_COLUMNS.map((c) => [c.key, c]));
const visibleOrdered = visibleColumns.map((k) => byKey.get(k)).filter(Boolean);
const hidden = ALL_COLUMNS.filter((c) => !visibleColumns.includes(c.key));
return [...visibleOrdered, ...hidden];
}, [visibleColumns]);
const getDisplayName = (nameVal) => getLocalizedValue(nameVal, displayLang, "Untitled");
const allCreators = useMemo(() => {
@@ -1091,74 +1173,13 @@ export default function MelodyList() {
</select>
)}
<div className="relative" ref={columnPickerRef} style={{ zIndex: 60 }}>
<button
type="button"
onClick={() => setShowColumnPicker((prev) => !prev)}
className="px-3 py-2 rounded-md text-sm transition-colors cursor-pointer flex items-center gap-1.5 border"
style={{
borderColor: "var(--border-primary)",
color: "var(--text-secondary)",
}}
>
<svg className="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 17V7m0 10a2 2 0 01-2 2H5a2 2 0 01-2-2V7a2 2 0 012-2h2a2 2 0 012 2m0 10a2 2 0 002 2h2a2 2 0 002-2M9 7a2 2 0 012-2h2a2 2 0 012 2m0 10V7m0 10a2 2 0 002 2h2a2 2 0 002-2V7a2 2 0 00-2-2h-2a2 2 0 00-2 2" />
</svg>
Columns
</button>
{showColumnPicker && (
<div
className="absolute right-0 top-full mt-1 rounded-lg shadow-lg py-2 w-56 border"
style={{
backgroundColor: "var(--bg-card)",
borderColor: "var(--border-primary)",
zIndex: 9999,
}}
>
{orderedColumnPickerColumns.map((col) => {
const orderIdx = visibleColumns.indexOf(col.key);
const canMove = orderIdx >= 0;
return (
<label
key={col.key}
className="flex items-center gap-2 px-3 py-1.5 text-sm cursor-pointer"
style={{ color: col.alwaysOn ? "var(--text-muted)" : "var(--text-primary)" }}
>
<input
type="checkbox"
checked={isVisible(col.key)}
onChange={() => toggleColumn(col.key)}
disabled={col.alwaysOn}
className="h-3.5 w-3.5 rounded cursor-pointer"
<div style={{ zIndex: 60, position: "relative" }}>
<MelodyColumnToggle
visible={colPrefs.visible}
orderedIds={colPrefs.orderedIds}
onChange={handleColVisChange}
onReorder={handleColReorder}
/>
<span className="flex-1">{col.label}</span>
{canMove && (
<span className="inline-flex gap-1" onClick={(e) => e.stopPropagation()}>
<button
type="button"
onClick={() => moveColumn(col.key, "up")}
className="text-[10px] px-1 rounded border"
style={{ borderColor: "var(--border-primary)", color: "var(--text-muted)", background: "transparent" }}
title="Move up"
>
</button>
<button
type="button"
onClick={() => moveColumn(col.key, "down")}
className="text-[10px] px-1 rounded border"
style={{ borderColor: "var(--border-primary)", color: "var(--text-muted)", background: "transparent" }}
title="Move down"
>
</button>
</span>
)}
</label>
);
})}
</div>
)}
</div>
</div>

View File

@@ -0,0 +1,17 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
host: 'localhost',
port: 5173,
proxy: {
'/api': {
target: 'http://localhost:8000',
changeOrigin: true,
},
},
},
})