velxio/frontend/src/App.css

426 lines
8.3 KiB
CSS
Raw Normal View History

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family:
-apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial,
sans-serif;
background-color: #000;
color: #f5f5f7;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* ── App shell ──────────────────────────────────── */
.app {
height: 100vh;
display: flex;
flex-direction: column;
overflow: hidden;
overscroll-behavior: none;
}
/* ── Header ─────────────────────────────────────── */
.app-header {
background-color: rgba(0, 0, 0, 0.88);
backdrop-filter: blur(20px) saturate(180%);
-webkit-backdrop-filter: blur(20px) saturate(180%);
border-bottom: 1px solid rgba(255, 255, 255, 0.09);
padding: 0 16px;
height: 44px;
flex-shrink: 0;
display: flex;
align-items: center;
position: relative;
z-index: 100;
}
.header-content {
display: flex;
align-items: center;
width: 100%;
}
.header-left {
display: flex;
align-items: center;
gap: 16px;
}
.header-brand {
display: flex;
align-items: center;
gap: 10px;
}
.header-title {
font-size: 15px;
font-weight: 600;
color: #f5f5f7;
letter-spacing: -0.2px;
}
/* Kept for backward compatibility */
.examples-link {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 12px;
background: transparent;
color: #9d9d9d;
text-decoration: none;
border-radius: 5px;
font-size: 13px;
font-weight: 500;
border: 1px solid #3a3a3a;
transition: all 0.15s;
}
.examples-link:hover {
background: #2a2d2e;
color: #fff;
border-color: #555;
}
/* ── Unified nav links ──────────────────────────── */
.header-nav-links {
display: flex;
align-items: center;
gap: 2px;
}
.header-nav-link {
display: flex;
align-items: center;
gap: 5px;
padding: 5px 12px;
color: #86868b;
text-decoration: none;
border-radius: 100px;
font-size: 13px;
font-weight: 400;
transition:
color 0.2s,
background 0.2s;
white-space: nowrap;
}
.header-nav-link:hover {
color: #f5f5f7;
background: rgba(255, 255, 255, 0.08);
}
.header-nav-link-active {
color: #f5f5f7;
background: rgba(255, 255, 255, 0.1);
}
.header-nav-discord {
color: #7289da;
}
.header-nav-discord:hover {
color: #8fa8f5;
background: rgba(114, 137, 218, 0.1);
}
.header-right {
display: flex;
align-items: center;
gap: 8px;
margin-left: auto;
}
/* Mobile hamburger */
.header-hamburger {
display: none;
flex-direction: column;
justify-content: center;
gap: 4px;
width: 30px;
height: 30px;
background: transparent;
border: none;
cursor: pointer;
padding: 4px;
}
.header-hamburger span {
display: block;
height: 2px;
background: #9d9d9d;
border-radius: 2px;
transition: background 0.15s;
}
.header-hamburger:hover span {
background: #e0e0e0;
}
/* Unified top toolbar (desktop)
Editor controls + canvas controls share a single full-width row that does
NOT reflow when the editor/canvas splitter below is dragged. The canvas
side renders into the empty `.unified-toolbar-canvas` slot via a React
portal from inside SimulatorCanvas. */
.unified-toolbar {
display: flex;
align-items: stretch;
flex-shrink: 0;
background: #252526;
border-bottom: 1px solid #333;
min-height: 38px;
}
.unified-toolbar-explorer-toggle {
border-bottom: none;
}
.unified-toolbar-editor {
flex: 1 1 auto;
min-width: 0;
display: flex;
}
.unified-toolbar-editor .editor-toolbar-wrapper,
.unified-toolbar-editor .editor-toolbar {
flex: 1;
min-width: 0;
}
.unified-toolbar-editor .editor-toolbar {
border-bottom: none;
}
.unified-toolbar-canvas {
flex-shrink: 0;
display: flex;
align-items: stretch;
border-left: 1px solid #333;
}
/* ── Main panels container ──────────────────────── */
.app-container {
flex: 1;
display: flex;
overflow: hidden;
position: relative;
}
.editor-panel {
display: flex;
flex-direction: row;
flex-shrink: 0;
overflow: hidden;
min-width: 20%;
max-width: 80%;
}
/* Toggle button for the file explorer sidebar */
.explorer-toggle-btn {
width: 36px;
flex-shrink: 0;
background: #252526;
border: none;
border-right: 1px solid #333;
border-bottom: 1px solid #333;
color: #7a7a7a;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition:
background 0.1s,
color 0.1s;
}
.explorer-toggle-btn:hover {
background: #2a2d2e;
color: #ccc;
}
/* Resize handle for the file explorer sidebar */
.explorer-resize-handle {
width: 4px;
flex-shrink: 0;
cursor: col-resize;
background: #2a2a2a;
transition: background 0.15s;
position: relative;
z-index: 5;
}
.explorer-resize-handle:hover,
.explorer-resize-handle:active {
background: #007acc;
}
.editor-wrapper {
flex: 1;
overflow: hidden;
}
.simulator-panel {
flex: 1;
display: flex;
flex-direction: column;
overflow: hidden;
min-width: 20%;
}
/* ── Resize handle ──────────────────────────────── */
.resize-handle {
width: 5px;
flex-shrink: 0;
background: #2a2a2a;
cursor: col-resize;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.15s;
position: relative;
z-index: 10;
}
.resize-handle:hover,
.resize-handle:active {
background: #007acc;
}
.resize-handle-grip {
width: 2px;
height: 32px;
background: #444;
border-radius: 2px;
transition: background 0.15s;
}
.resize-handle:hover .resize-handle-grip,
.resize-handle:active .resize-handle-grip {
background: rgba(255, 255, 255, 0.5);
}
/* ── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
.app-container {
flex-direction: column;
}
.editor-panel,
.simulator-panel {
width: 100% !important;
min-width: unset;
max-width: unset;
flex: 1;
}
.resize-handle {
display: none;
}
}
/* ── Mobile tab bar ──────────────────────────────── */
.mobile-tab-bar {
display: none;
}
@media (max-width: 768px) {
.mobile-tab-bar {
display: flex;
flex-shrink: 0;
height: 44px;
background: #1e1e1e;
border-bottom: 2px solid #007acc;
z-index: 50;
/* Sits between header and panels */
}
.mobile-tab-btn {
flex: 1;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap: 6px;
background: transparent;
border: none;
border-bottom: 2px solid transparent;
color: #7a7a7a;
font-size: 13px;
font-weight: 600;
cursor: pointer;
transition:
color 0.15s,
background 0.15s,
border-color 0.15s;
padding: 8px 0;
margin-bottom: -2px;
}
.mobile-tab-btn--active {
color: #007acc;
border-bottom-color: #007acc;
background: rgba(0, 122, 204, 0.1);
}
.mobile-tab-btn:active {
background: rgba(255, 255, 255, 0.06);
}
}
/* ── Header responsive ───────────────────────────── */
@media (max-width: 768px) {
.app-header {
padding: 0 10px;
height: 44px;
}
.examples-link span,
.header-github-text,
.header-username-text {
display: none;
}
.examples-link {
padding: 6px 8px;
}
/* Mobile nav: hide links, show hamburger, dropdown on open */
.header-nav-links {
display: none;
position: absolute;
top: 44px;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.96);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255, 255, 255, 0.09);
flex-direction: column;
align-items: stretch;
gap: 0;
padding: 6px 0;
z-index: 200;
}
.header-nav-links.header-nav-open {
display: flex;
}
.header-nav-link {
padding: 10px 16px;
border-radius: 0;
font-size: 14px;
}
.header-hamburger {
display: flex;
}
}
feat: persist multi-board projects + add auto-save The project save/load pipeline only persisted a single `board_type`, so multi-board workspaces silently lost every board except the active one on save, and wires referencing the dropped boards' IDs orphaned to the canvas corner on reload. An audit of the production backup found 74/306 projects (24%) with at least one orphaned wire and 174/301 non-trivial projects whose code was still the default Blink template — strong signal that users save once and never re-save. Backend - Add `boards_json` column on `projects` with idempotent ALTER TABLE in the lifespan migration list. - New `FileGroup` schema + `file_groups` array on ProjectCreate/Update/Response. Legacy `files`/`code` kept for back-compat. - `project_files.py` now uses `{pid}/{groupId}/{filename}` subdirs via `read_groups`/`write_groups`. Legacy flat layouts are auto-promoted on read; legacy single-list `files` only updates the active group, leaving other boards' files intact. - `_persist_files_from_body` honors file_groups → files → code priority. Frontend - `useSimulatorStore.addBoard` accepts an optional `explicitId` so saved board IDs can be restored verbatim (wires reference IDs literally). - New `loadProjectState({boards, fileGroups, components, wires, activeBoardId})` action: tears down current boards, recreates from the payload, restores file groups atomically, recalculates wire positions on the next frame, and refreshes the Interconnect. - `useEditorStore.replaceFileGroups` for atomic multi-group restore. - `SaveProjectModal` and `ProjectByIdPage`/`ProjectPage` now go through `buildSavePayload` / `buildLoadPayload` (handles pre-backfill projects by synthesising a default board from `board_type`). Auto-save (#useAutoSaveProject hook) - 2.5s debounced silent PUT triggered ONLY when an authenticated user has a `currentProject` with a UUID. State hash detects real changes vs. UI-only churn; baseline is reset on project load so the just-loaded state isn't immediately re-saved. - `beforeunload` flush via `fetch keepalive: true` (supports PUT + credentials, survives unload). - Compact status indicator in `AppHeader` (idle/dirty/saving/saved/error). Backfill script (one-off, idempotent) - `backend/scripts/backfill_boards_2026_05.py` populates `boards_json` for legacy projects. Heuristic per project, based on which board IDs the wires reference: Case A — wires only ref 'arduino-uno' but board_type ≠ uno: rename id→board_type and rewrite wire endpoints. Case B — single-board normal: keep verbatim. Case C — multi-board: recreate one board per distinct ref, infer kind by stripping trailing -N suffix. Also moves any flat files into the active board's group subdir. Stdlib-only, runs from host or `docker exec`. Docker - `Dockerfile.standalone` now copies `backend/scripts/` into the image so the backfill is callable via `docker exec velxio-app python /app/scripts/backfill_boards_2026_05.py --apply`. Verified locally on the restored production backup (363 projects): 33 Case A, 316 Case B, 14 Case C, 135 wire endpoints renamed, 0 orphans. Re-running the script after apply skips all 363 (idempotent). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-01 23:43:33 +07:00
@keyframes velxio-pulse {
0%, 100% { opacity: 0.4; transform: scale(0.85); }
50% { opacity: 1.0; transform: scale(1.0); }
}