2026-04-07 21:58:22 -04:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
|
<head>
|
2026-05-21 23:15:18 -04:00
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
|
|
|
|
<title>Player — Dragonflight</title>
|
|
|
|
|
|
<link rel="stylesheet" href="/dist/app.css">
|
|
|
|
|
|
<style>
|
|
|
|
|
|
.player-container {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: 1fr 300px;
|
|
|
|
|
|
gap: 16px;
|
|
|
|
|
|
height: calc(100vh - 110px);
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.player-main {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.video-container {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
background-color: var(--bg-surface);
|
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.video-player {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
background-color: var(--bg-base);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metadata-panel {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 12px;
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metadata-section {
|
|
|
|
|
|
padding: 12px;
|
|
|
|
|
|
background-color: var(--bg-surface);
|
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metadata-section-title {
|
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
color: var(--text-secondary);
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
|
letter-spacing: 0.3px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metadata-row {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 4px;
|
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
padding-bottom: 8px;
|
|
|
|
|
|
border-bottom: 1px solid var(--border);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metadata-row:last-child {
|
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metadata-label {
|
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
|
color: var(--text-tertiary);
|
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
letter-spacing: 0.2px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metadata-value {
|
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
|
color: var(--text-primary);
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metadata-editable {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metadata-textarea {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
padding: 8px;
|
|
|
|
|
|
background-color: var(--bg-base);
|
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
color: var(--text-primary);
|
|
|
|
|
|
font-family: 'Courier New', monospace;
|
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
|
resize: vertical;
|
|
|
|
|
|
min-height: 80px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metadata-textarea:focus {
|
|
|
|
|
|
outline: none;
|
|
|
|
|
|
border-color: var(--accent);
|
|
|
|
|
|
box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tags-list {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tag-badge {
|
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 4px;
|
|
|
|
|
|
padding: 4px 10px;
|
|
|
|
|
|
background-color: var(--bg-base);
|
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
|
color: var(--text-secondary);
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: all 120ms ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tag-badge:hover {
|
|
|
|
|
|
border-color: var(--accent);
|
|
|
|
|
|
color: var(--accent);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.tag-remove {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.edit-controls {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
margin-top: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
|
.player-container {
|
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
|
height: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.metadata-panel {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.video-container {
|
|
|
|
|
|
height: 400px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|
2026-04-07 21:58:22 -04:00
|
|
|
|
</head>
|
|
|
|
|
|
<body>
|
2026-05-21 23:15:18 -04:00
|
|
|
|
|
|
|
|
|
|
<div class="wd-shell" style="display:flex;min-height:100vh;">
|
|
|
|
|
|
<nav class="wd-sidebar" aria-label="Main navigation">
|
|
|
|
|
|
<div class="wd-sidebar-header">
|
|
|
|
|
|
<img src="img/dragon-logo.png?v=1" alt="Dragonflight" style="width:18px;height:18px;">
|
|
|
|
|
|
<span class="wd-sidebar-brand">Dragonflight</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="wd-sidebar-nav">
|
|
|
|
|
|
<a href="home.html" class="wd-nav-item">
|
|
|
|
|
|
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M2 7l6-5 6 5v7a1 1 0 0 1-1 1h-3v-5H6v5H3a1 1 0 0 1-1-1z"/></svg>
|
|
|
|
|
|
Home
|
|
|
|
|
|
</a>
|
|
|
|
|
|
<a href="index.html" class="wd-nav-item">
|
|
|
|
|
|
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5"><rect x="1" y="1" width="6" height="6" rx="1"/><rect x="9" y="1" width="6" height="6" rx="1"/><rect x="1" y="9" width="6" height="6" rx="1"/><rect x="9" y="9" width="6" height="6" rx="1"/></svg>
|
|
|
|
|
|
Library
|
|
|
|
|
|
</a>
|
|
|
|
|
|
<a href="projects.html" class="wd-nav-item">
|
|
|
|
|
|
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M1 4a1 1 0 0 1 1-1h4l2 2h5a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1z"/></svg>
|
|
|
|
|
|
Projects
|
|
|
|
|
|
</a>
|
|
|
|
|
|
<a href="upload.html" class="wd-nav-item">
|
|
|
|
|
|
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M8 11V3M5 6l3-3 3 3"/><path d="M2 13h12"/></svg>
|
|
|
|
|
|
Ingest
|
|
|
|
|
|
</a>
|
|
|
|
|
|
<a href="recorders.html" class="wd-nav-item">
|
|
|
|
|
|
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5"><rect x="1" y="4" width="10" height="8" rx="1"/><path d="M11 7l4-2v6l-4-2"/></svg>
|
|
|
|
|
|
Recorders
|
|
|
|
|
|
</a>
|
|
|
|
|
|
<a href="capture.html" class="wd-nav-item">
|
|
|
|
|
|
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5"><circle cx="8" cy="8" r="3"/><circle cx="8" cy="8" r="6.5"/></svg>
|
|
|
|
|
|
Capture
|
|
|
|
|
|
</a>
|
|
|
|
|
|
<a href="jobs.html" class="wd-nav-item">
|
|
|
|
|
|
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M2 4h12M2 8h8M2 12h5"/></svg>
|
|
|
|
|
|
Jobs
|
|
|
|
|
|
</a>
|
|
|
|
|
|
<a href="edit.html" class="wd-nav-item">
|
|
|
|
|
|
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5"><path d="M2 13l1.5-3.5L11 2l3 3-7.5 7.5L3 14zM10 3l3 3"/></svg>
|
|
|
|
|
|
Editor
|
|
|
|
|
|
</a>
|
|
|
|
|
|
<div class="wd-sidebar-section">Admin</div>
|
|
|
|
|
|
<a href="users.html" class="wd-nav-item">
|
|
|
|
|
|
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5"><circle cx="6" cy="5" r="2.5"/><path d="M1 13c0-2.8 2.2-5 5-5s5 2.2 5 5"/><circle cx="12" cy="5" r="2"/><path d="M15 12c0-1.9-1.3-3.5-3-4"/></svg>
|
|
|
|
|
|
Users
|
|
|
|
|
|
</a>
|
|
|
|
|
|
<a href="tokens.html" class="wd-nav-item">
|
|
|
|
|
|
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5"><circle cx="6" cy="10" r="3.5"/><path d="M8.7 7.3L13 3M11.5 3.5l1.5 1.5M13.5 2.5l1 1"/></svg>
|
|
|
|
|
|
Tokens
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="wd-sidebar-footer">
|
|
|
|
|
|
<div class="wd-sidebar-user">
|
|
|
|
|
|
<div class="wd-sidebar-user-avatar" id="userAvatar">?</div>
|
|
|
|
|
|
<div class="wd-sidebar-user-info">
|
|
|
|
|
|
<div class="wd-sidebar-user-name" id="userName">—</div>
|
|
|
|
|
|
<div class="wd-sidebar-user-role" id="userRole"></div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<button class="wd-btn wd-btn--ghost wd-btn--sm wd-btn--icon wd-sidebar-user-logout" id="logoutBtn" title="Sign out">
|
|
|
|
|
|
<svg viewBox="0 0 16 16" fill="none" stroke="currentColor" stroke-width="1.5" width="14" height="14"><path d="M10 8H3M6 5l-3 3 3 3"/><path d="M7 3h5a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H7"/></svg>
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
|
|
<div style="flex:1;display:flex;flex-direction:column;">
|
|
|
|
|
|
<header class="wd-topbar">
|
|
|
|
|
|
<div class="wd-topbar-left">
|
|
|
|
|
|
<span class="page-title">Player</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="wd-topbar-right">
|
|
|
|
|
|
<button class="wd-btn wd-btn--ghost wd-btn--sm" onclick="goBack()">← Back to Library</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
|
|
<div style="flex:1;overflow:auto;padding:16px;">
|
|
|
|
|
|
<div class="player-container">
|
|
|
|
|
|
<!-- Main Player -->
|
|
|
|
|
|
<div class="player-main">
|
|
|
|
|
|
<div class="video-container">
|
|
|
|
|
|
<video class="video-player" id="videoPlayer" controls></video>
|
|
|
|
|
|
</div>
|
2026-04-07 21:58:22 -04:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-05-21 23:15:18 -04:00
|
|
|
|
<!-- Sidebar -->
|
|
|
|
|
|
<div class="metadata-panel">
|
|
|
|
|
|
<!-- File Info -->
|
|
|
|
|
|
<div class="metadata-section">
|
|
|
|
|
|
<div class="metadata-section-title">File Information</div>
|
|
|
|
|
|
<div class="metadata-row">
|
|
|
|
|
|
<div class="metadata-label">Filename</div>
|
|
|
|
|
|
<div class="metadata-value" id="metaFilename">—</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="metadata-row">
|
|
|
|
|
|
<div class="metadata-label">Format</div>
|
|
|
|
|
|
<div class="metadata-value" id="metaFormat">—</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="metadata-row">
|
|
|
|
|
|
<div class="metadata-label">Codec</div>
|
|
|
|
|
|
<div class="metadata-value" id="metaCodec">—</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="metadata-row">
|
|
|
|
|
|
<div class="metadata-label">Resolution</div>
|
|
|
|
|
|
<div class="metadata-value" id="metaResolution">—</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="metadata-row">
|
|
|
|
|
|
<div class="metadata-label">Framerate</div>
|
|
|
|
|
|
<div class="metadata-value" id="metaFps">—</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="metadata-row">
|
|
|
|
|
|
<div class="metadata-label">Duration</div>
|
|
|
|
|
|
<div class="metadata-value" id="metaDuration">—</div>
|
2026-04-07 21:58:22 -04:00
|
|
|
|
</div>
|
2026-05-21 23:15:18 -04:00
|
|
|
|
<div class="metadata-row">
|
|
|
|
|
|
<div class="metadata-label">File Size</div>
|
|
|
|
|
|
<div class="metadata-value" id="metaFileSize">—</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="metadata-row">
|
|
|
|
|
|
<div class="metadata-label">Status</div>
|
|
|
|
|
|
<div class="metadata-value" id="metaStatus">—</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="metadata-row">
|
|
|
|
|
|
<div class="metadata-label">Captured</div>
|
|
|
|
|
|
<div class="metadata-value" id="metaCreated">—</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Tags -->
|
|
|
|
|
|
<div class="metadata-section">
|
|
|
|
|
|
<div class="metadata-section-title">Tags</div>
|
|
|
|
|
|
<div class="tags-list" id="tagsList"></div>
|
|
|
|
|
|
<input
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
id="newTagInput"
|
|
|
|
|
|
class="form-input"
|
|
|
|
|
|
placeholder="Add tag..."
|
|
|
|
|
|
style="font-size: 0.85rem;"
|
|
|
|
|
|
>
|
|
|
|
|
|
<button class="wd-btn wd-btn--secondary wd-btn--sm" style="width: 100%; margin-top: 8px;" onclick="addTag()">Add Tag</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Notes -->
|
|
|
|
|
|
<div class="metadata-section">
|
|
|
|
|
|
<div class="metadata-section-title">Notes</div>
|
|
|
|
|
|
<textarea id="notesInput" class="metadata-textarea" placeholder="Add notes about this asset..."></textarea>
|
|
|
|
|
|
<div class="edit-controls">
|
|
|
|
|
|
<button class="wd-btn wd-btn--primary wd-btn--sm" style="flex: 1;" onclick="saveMetadata()">Save</button>
|
|
|
|
|
|
<button class="wd-btn wd-btn--secondary wd-btn--sm" style="flex: 1;" onclick="resetMetadata()">Reset</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-04-07 21:58:22 -04:00
|
|
|
|
</div>
|
2026-05-21 23:15:18 -04:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-04-07 21:58:22 -04:00
|
|
|
|
|
2026-05-21 23:15:18 -04:00
|
|
|
|
<script src="/js/api.js?v=6"></script>
|
feat(design): broadcast ops console redesign sweep
Confirmed shape brief: ops-console direction, balanced density, blue committed accent, readability emphasized.
Design system: surface scale to 5 steps tinted toward hue 266; text contrast lifted (secondary 62->72%, tertiary 44->52, added text-disabled); borders gained faint variant; status tokens renamed semantically (signal-good/warn/bad/idle); typography upgraded (Inter 400/500/600, JetBrains Mono for numerics, new 2xl/3xl/tc scale steps).
New components: tc-display timecode classes with blue glow; tally-word with good/warn/bad/rec variants; signal-strip flutter bar with modifiers; chip dense monospaced pill; manifest table styles.
Topbar status strip: new js/topbar-strip.js auto-injects a 28px strip on every page with wall clock, page name, live API latency, and system-pulse dot.
Per-page: recorders gain live signal-strip above fps line; capture timecode bumped 38->64px with blue glow; ingest drop zone slimmed 200->88px side-by-side layout so manifest gets the real estate.
2026-05-17 19:04:38 -04:00
|
|
|
|
<script src="/js/topbar-strip.js?v=1"></script>
|
2026-05-21 23:15:18 -04:00
|
|
|
|
<script src="js/auth-guard.js"></script>
|
|
|
|
|
|
<script>
|
|
|
|
|
|
// ============================================================
|
|
|
|
|
|
// STATE MANAGEMENT
|
|
|
|
|
|
// ============================================================
|
|
|
|
|
|
|
|
|
|
|
|
let playerState = {
|
|
|
|
|
|
assetId: null,
|
|
|
|
|
|
asset: null,
|
|
|
|
|
|
tags: [],
|
|
|
|
|
|
notes: '',
|
|
|
|
|
|
originalTags: [],
|
|
|
|
|
|
originalNotes: '',
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// ============================================================
|
|
|
|
|
|
// HELPERS
|
|
|
|
|
|
// ============================================================
|
|
|
|
|
|
|
|
|
|
|
|
function formatDuration(seconds) {
|
|
|
|
|
|
if (!seconds) return '—';
|
|
|
|
|
|
const h = Math.floor(seconds / 3600);
|
|
|
|
|
|
const m = Math.floor((seconds % 3600) / 60);
|
|
|
|
|
|
const s = Math.floor(seconds % 60);
|
|
|
|
|
|
if (h > 0) return `${h}:${String(m).padStart(2,'0')}:${String(s).padStart(2,'0')}`;
|
|
|
|
|
|
return `${m}:${String(s).padStart(2,'0')}`;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function formatFileSize(bytes) {
|
|
|
|
|
|
if (!bytes) return '—';
|
|
|
|
|
|
const units = ['B','KB','MB','GB','TB'];
|
|
|
|
|
|
let i = 0;
|
|
|
|
|
|
let val = bytes;
|
|
|
|
|
|
while (val >= 1024 && i < units.length - 1) { val /= 1024; i++; }
|
|
|
|
|
|
return `${val.toFixed(1)} ${units[i]}`;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function getStatusBadgeClass(status) {
|
|
|
|
|
|
switch (status) {
|
|
|
|
|
|
case 'recording': return 'wd-badge wd-badge--bad';
|
|
|
|
|
|
case 'ready': return 'wd-badge wd-badge--good';
|
|
|
|
|
|
case 'processing':return 'wd-badge wd-badge--warn';
|
|
|
|
|
|
case 'error': return 'wd-badge wd-badge--bad';
|
|
|
|
|
|
default: return 'wd-badge';
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function getStatusLabel(status) {
|
|
|
|
|
|
switch (status) {
|
|
|
|
|
|
case 'recording': return 'Recording';
|
|
|
|
|
|
case 'ready': return 'Ready';
|
|
|
|
|
|
case 'processing': return 'Processing';
|
|
|
|
|
|
case 'error': return 'Error';
|
|
|
|
|
|
default: return status || '—';
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ============================================================
|
|
|
|
|
|
// INITIALIZATION
|
|
|
|
|
|
// ============================================================
|
|
|
|
|
|
|
|
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
|
|
|
|
setupEventListeners();
|
|
|
|
|
|
const params = new URLSearchParams(window.location.search);
|
|
|
|
|
|
playerState.assetId = params.get('id');
|
|
|
|
|
|
|
|
|
|
|
|
if (playerState.assetId) {
|
|
|
|
|
|
loadAsset();
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
function setupEventListeners() {
|
|
|
|
|
|
document.getElementById('newTagInput').addEventListener('keypress', (e) => {
|
|
|
|
|
|
if (e.key === 'Enter') {
|
|
|
|
|
|
addTag();
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async function loadAsset() {
|
|
|
|
|
|
try {
|
|
|
|
|
|
const result = await getAsset(playerState.assetId);
|
|
|
|
|
|
|
|
|
|
|
|
if (result.success) {
|
|
|
|
|
|
playerState.asset = result.data;
|
|
|
|
|
|
playerState.tags = result.data.tags || [];
|
|
|
|
|
|
playerState.notes = result.data.notes || '';
|
|
|
|
|
|
playerState.originalTags = [...playerState.tags];
|
|
|
|
|
|
playerState.originalNotes = playerState.notes;
|
|
|
|
|
|
|
|
|
|
|
|
renderAsset();
|
|
|
|
|
|
|
|
|
|
|
|
// Load video stream
|
|
|
|
|
|
const streamResult = await getAssetStreamUrl(playerState.assetId);
|
|
|
|
|
|
if (streamResult.success) {
|
|
|
|
|
|
document.getElementById('videoPlayer').src = streamResult.data.url;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('Error loading asset:', error);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ============================================================
|
|
|
|
|
|
// RENDERING
|
|
|
|
|
|
// ============================================================
|
|
|
|
|
|
|
|
|
|
|
|
function renderAsset() {
|
|
|
|
|
|
const asset = playerState.asset;
|
|
|
|
|
|
|
|
|
|
|
|
document.getElementById('metaFilename').textContent = asset.filename;
|
|
|
|
|
|
document.getElementById('metaFormat').textContent = asset.format || '—';
|
|
|
|
|
|
document.getElementById('metaCodec').textContent = asset.codec || '—';
|
|
|
|
|
|
document.getElementById('metaResolution').textContent = asset.resolution || '—';
|
|
|
|
|
|
document.getElementById('metaFps').textContent = asset.fps ? `${asset.fps} fps` : '—';
|
|
|
|
|
|
document.getElementById('metaDuration').textContent = formatDuration(asset.duration);
|
|
|
|
|
|
document.getElementById('metaFileSize').textContent = formatFileSize(asset.file_size || 0);
|
|
|
|
|
|
document.getElementById('metaStatus').innerHTML =
|
|
|
|
|
|
`<span class="${getStatusBadgeClass(asset.status)}">${getStatusLabel(asset.status)}</span>`;
|
|
|
|
|
|
document.getElementById('metaCreated').textContent = new Date(asset.created_at).toLocaleDateString();
|
|
|
|
|
|
|
|
|
|
|
|
renderTags();
|
|
|
|
|
|
document.getElementById('notesInput').value = playerState.notes;
|
|
|
|
|
|
|
|
|
|
|
|
document.title = `${asset.filename} — Dragonflight Player`;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function renderTags() {
|
|
|
|
|
|
const container = document.getElementById('tagsList');
|
|
|
|
|
|
container.innerHTML = '';
|
|
|
|
|
|
|
|
|
|
|
|
playerState.tags.forEach((tag, index) => {
|
|
|
|
|
|
const badge = document.createElement('div');
|
|
|
|
|
|
badge.className = 'tag-badge';
|
|
|
|
|
|
|
|
|
|
|
|
const tagSpan = document.createElement('span');
|
|
|
|
|
|
tagSpan.textContent = tag;
|
|
|
|
|
|
|
|
|
|
|
|
const removeSpan = document.createElement('span');
|
|
|
|
|
|
removeSpan.className = 'tag-remove';
|
|
|
|
|
|
removeSpan.textContent = '×';
|
|
|
|
|
|
removeSpan.onclick = () => removeTag(index);
|
|
|
|
|
|
|
|
|
|
|
|
badge.appendChild(tagSpan);
|
|
|
|
|
|
badge.appendChild(removeSpan);
|
|
|
|
|
|
container.appendChild(badge);
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ============================================================
|
|
|
|
|
|
// METADATA EDITING
|
|
|
|
|
|
// ============================================================
|
|
|
|
|
|
|
|
|
|
|
|
function addTag() {
|
|
|
|
|
|
const input = document.getElementById('newTagInput');
|
|
|
|
|
|
const tag = input.value.trim().toLowerCase();
|
|
|
|
|
|
|
|
|
|
|
|
if (tag && !playerState.tags.includes(tag)) {
|
|
|
|
|
|
playerState.tags.push(tag);
|
|
|
|
|
|
renderTags();
|
|
|
|
|
|
input.value = '';
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function removeTag(index) {
|
|
|
|
|
|
playerState.tags.splice(index, 1);
|
|
|
|
|
|
renderTags();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async function saveMetadata() {
|
|
|
|
|
|
if (!playerState.assetId) return;
|
|
|
|
|
|
|
|
|
|
|
|
playerState.notes = document.getElementById('notesInput').value;
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
const result = await updateAsset(playerState.assetId, {
|
|
|
|
|
|
tags: playerState.tags,
|
|
|
|
|
|
notes: playerState.notes,
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
if (result.success) {
|
|
|
|
|
|
playerState.originalTags = [...playerState.tags];
|
|
|
|
|
|
playerState.originalNotes = playerState.notes;
|
|
|
|
|
|
}
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
console.error('Error saving metadata:', error);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function resetMetadata() {
|
|
|
|
|
|
playerState.tags = [...playerState.originalTags];
|
|
|
|
|
|
playerState.notes = playerState.originalNotes;
|
|
|
|
|
|
renderTags();
|
|
|
|
|
|
document.getElementById('notesInput').value = playerState.notes;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ============================================================
|
|
|
|
|
|
// NAVIGATION
|
|
|
|
|
|
// ============================================================
|
|
|
|
|
|
|
|
|
|
|
|
function navigateTo(page) {
|
|
|
|
|
|
if (page === 'assets') {
|
|
|
|
|
|
window.location.href = '/index.html';
|
|
|
|
|
|
} else if (page === 'capture') {
|
|
|
|
|
|
window.location.href = '/capture.html';
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function goBack() {
|
|
|
|
|
|
window.location.href = '/index.html';
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
2026-04-07 21:58:22 -04:00
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|