Frontend / UX / a11y - Sidebar collapse/expand toggle with localStorage persistence (#142) - Settings sections wrap inputs in <form> with Enter-to-submit + native validation; password autocomplete=new-password (#141, #138) - Asset thumbnails get descriptive alt text (#140) - Production deploy now precompiles JSX via esbuild and loads the production React UMD instead of dev builds + in-browser Babel (#139, #122) - Search wrapper gets role=search; global search input gets aria-label, role=combobox, aria-controls/aria-expanded/aria-activedescendant wiring (#137, #135) - Dashboard and Library no longer share the same nav icon (#136) - Sidebar collapses off-canvas with a topbar menu button below 768 px; mobile default is collapsed (#134) - --text-3 bumped to #8B92A0 for WCAG AA contrast on --bg-0 (#133) - Schedule and Library routes were rendering empty inside the .main flex container — switched to flex:1 + min-height:0 (#131, #132, editor + asset detail get the same fix) - Jobs nav badge now polls /jobs?status=active every 10 s and reflects the live count (#130, #113) - aria-label sweep on every icon-only button (#126) - Premiere panel release list moved to window.PREMIERE_RELEASES in data.jsx; Editor + Settings read from the same source (#125) - Typo setPgMclips → setPgmClips (#124) - Stray console.error / console.warn calls gated behind window.DF_LOG.{warn,error} (#123) - Hardcoded /api/v1 paths route through window.ZAMPP_API_PREFIX (#115) - Schedule rows no longer crash on null recorder_id (#117) - EditorKeyboard guards against document.activeElement === null (#116) - Unmount-safe timers for PasswordResetModal, Containers, Editor (#111) - Player seek clamps below totalMs, server-side range clamping + uncached 416 on EOF, client-side EOF-stall watchdog (#143) - Duration badge overlap fix on narrow asset cards (#52) Backend / security / reliability - GET /recorders fixed N+1: single LATERAL JOIN for live_asset_id; Docker inspects bounded to actually-recording rows (#121) - Upload disk-storage (multer.diskStorage) streams parts to S3 instead of buffering 500 MB in RAM (#120) - /assets list clamps limit to MAX_LIMIT=500 to prevent OOM (#119) - SDK upload archive listing + post-extract sanitize block zip-slip / tar-slip and symlink escapes (#118) - Migrations track applied state in schema_migrations, run in a transaction, and exit non-zero on failure (#107) - node-agent BMD_COUNT override uses BMD_DEVICE_PREFIX; filesystem detection wins (#109, #127) - GPU_COUNT override now merges with nvidia-smi enrichment (#108) - /cluster/heartbeat requires a node-bound token or admin user; tokens carry bound_hostname (#106) - /recorders/:id/start error responses no longer echo the Docker create payload — env vars stay out of client responses (#105) - /recorders/probe restricts schemes (srt/rtmp/rtsp/udp/rtp), blocks private + loopback hosts for non-admins, denies common service ports (#104) - Scheduler tick guarded by a Postgres advisory lock; pending/running rows claimed via UPDATE...RETURNING + FOR UPDATE SKIP LOCKED to survive multi-node deploys (#103) - UUID validateUuid('id') param middleware on every /:id route (#102) - Error handler scrubs Postgres error messages and 5xx detail (#101) - Graceful SIGTERM/SIGINT shutdown — stops scheduler, drains the HTTP server, ends the pool, 25 s force-exit watchdog (#100) - AMPP sync moved from fire-and-forget to a persisted retry queue (ampp_sync_status / attempts / next_attempt_at + scheduler retry loop with exponential backoff) (#77) Migrations - 019: api_tokens.bound_hostname (#106) - 020: assets.ampp_sync_status + retry bookkeeping (#77) Other - Defer #92 Growing-files per-upload toggle, #80 Audio tab, #57 Dashboard redesign, #56 Editor SPA polish phase 3, #114 S3 migration tool to v1.3
286 lines
13 KiB
JavaScript
286 lines
13 KiB
JavaScript
// screens-projects.jsx
|
|
|
|
function NewProjectModal({ onClose, onCreated }) {
|
|
const [name, setName] = React.useState('');
|
|
const [saving, setSaving] = React.useState(false);
|
|
const [err, setErr] = React.useState(null);
|
|
|
|
const create = () => {
|
|
if (!name.trim()) { setErr('Name is required'); return; }
|
|
setSaving(true); setErr(null);
|
|
window.ZAMPP_API.fetch('/projects', { method: 'POST', body: JSON.stringify({ name: name.trim() }) })
|
|
.then(p => { onCreated(p); onClose(); })
|
|
.catch(e => { setSaving(false); setErr(e.message || 'Failed to create project'); });
|
|
};
|
|
|
|
return (
|
|
<div className="modal-backdrop" onClick={onClose}>
|
|
<div className="modal" style={{ width: 420 }} onClick={e => e.stopPropagation()}>
|
|
<div className="modal-head">
|
|
<div style={{ fontSize: 15, fontWeight: 600 }}>New project</div>
|
|
<button className="icon-btn" aria-label="Close" onClick={onClose}><Icon name="x" /></button>
|
|
</div>
|
|
<div className="modal-body">
|
|
<div className="field">
|
|
<label className="field-label">Project name</label>
|
|
<input className="field-input" value={name} onChange={e => setName(e.target.value)}
|
|
placeholder="e.g. Sunday Night Game" autoFocus
|
|
onKeyDown={e => e.key === 'Enter' && !saving && create()} />
|
|
</div>
|
|
{err && <div style={{ fontSize: 12, color: 'var(--danger)', marginTop: 4 }}>{err}</div>}
|
|
</div>
|
|
<div className="modal-foot">
|
|
<button className="btn ghost" onClick={onClose}>Cancel</button>
|
|
<span style={{ flex: 1 }} />
|
|
<button className="btn primary" onClick={create} disabled={saving}>
|
|
{saving ? 'Creating…' : 'Create project'}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function Projects({ onOpenProject, navigate }) {
|
|
const [projects, setProjects] = React.useState(window.ZAMPP_DATA?.PROJECTS || []);
|
|
const ASSETS = window.ZAMPP_DATA?.ASSETS || [];
|
|
const [search, setSearch] = React.useState('');
|
|
const [view, setView] = React.useState('grid');
|
|
const [showNew, setShowNew] = React.useState(false);
|
|
const [menuFor, setMenuFor] = React.useState(null);
|
|
const [renamingProject, setRenamingProject] = React.useState(null);
|
|
|
|
const refresh = React.useCallback(() => {
|
|
window.ZAMPP_API.fetch('/projects')
|
|
.then(list => {
|
|
const updated = (list || []).map((p, i) => ({
|
|
...p,
|
|
color: (window.ZAMPP_DATA.PROJECTS.find(x => x.id === p.id) || {}).color
|
|
|| (window.PROJECT_COLORS ? window.PROJECT_COLORS[p.id.charCodeAt(p.id.length - 1) % window.PROJECT_COLORS.length] : null)
|
|
|| 'var(--accent)',
|
|
assets: (ASSETS || []).filter(a => a.project_id === p.id).length,
|
|
updated: window.ZAMPP_API.fmtRelative(p.updated_at),
|
|
}));
|
|
window.ZAMPP_DATA.PROJECTS = updated;
|
|
setProjects(updated);
|
|
})
|
|
.catch(() => {});
|
|
}, [ASSETS]);
|
|
|
|
const onCreated = (p) => { refresh(); };
|
|
|
|
const renameProject = (p) => { setMenuFor(null); setRenamingProject(p); };
|
|
|
|
const deleteProject = (p) => {
|
|
setMenuFor(null);
|
|
if (!confirm('Delete project "' + p.name + '"?\nThis fails if there are still assets attached.')) return;
|
|
window.ZAMPP_API.fetch('/projects/' + p.id, { method: 'DELETE' })
|
|
.then(refresh)
|
|
.catch(e => alert('Delete failed: ' + e.message));
|
|
};
|
|
|
|
React.useEffect(() => {
|
|
if (!menuFor) return;
|
|
const close = () => setMenuFor(null);
|
|
window.addEventListener('click', close);
|
|
return () => window.removeEventListener('click', close);
|
|
}, [menuFor]);
|
|
|
|
let filtered = projects;
|
|
if (search) filtered = filtered.filter(p => p.name.toLowerCase().includes(search.toLowerCase()));
|
|
|
|
return (
|
|
<div className="page">
|
|
<div className="page-header">
|
|
<h1>Projects</h1>
|
|
<span className="subtitle">{filtered.length} projects</span>
|
|
<div className="spacer" />
|
|
<div className="search" style={{ width: 240 }}>
|
|
<Icon name="search" className="search-icon" />
|
|
<input value={search} onChange={e => setSearch(e.target.value)} placeholder="Search projects…" />
|
|
</div>
|
|
<div className="tab-group">
|
|
<button className={view === 'grid' ? 'active' : ''} onClick={() => setView('grid')}><Icon name="grid" size={12} /></button>
|
|
<button className={view === 'list' ? 'active' : ''} onClick={() => setView('list')}><Icon name="list" size={12} /></button>
|
|
</div>
|
|
<button className="btn primary" onClick={() => setShowNew(true)}><Icon name="plus" />New project</button>
|
|
</div>
|
|
<div className="page-body">
|
|
{filtered.length === 0 ? (
|
|
<div style={{ padding: 40, textAlign: 'center', color: 'var(--text-3)' }}>
|
|
{search ? 'No matching projects.' : 'No projects yet.'}
|
|
{!search && (
|
|
<div style={{ marginTop: 12 }}>
|
|
<button className="btn primary" onClick={() => setShowNew(true)}><Icon name="plus" />New project</button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
) : view === 'grid' ? (
|
|
<div className="projects-grid">
|
|
{filtered.map(p => (
|
|
<ProjectCard
|
|
key={p.id}
|
|
project={p}
|
|
assets={ASSETS}
|
|
onOpen={() => onOpenProject(p)}
|
|
onRename={() => renameProject(p)}
|
|
onDelete={() => deleteProject(p)}
|
|
/>
|
|
))}
|
|
</div>
|
|
) : (
|
|
<div className="panel">
|
|
<div className="list-row head" style={{ padding: '12px 16px', gridTemplateColumns: '1fr 100px 120px 120px 80px' }}>
|
|
<div>Project</div><div>Assets</div><div>Storage</div><div>Updated</div><div></div>
|
|
</div>
|
|
{filtered.map(p => (
|
|
<div key={p.id} className="list-row" style={{ padding: '12px 16px', gridTemplateColumns: '1fr 100px 120px 120px 80px', borderBottom: '1px solid var(--border)', cursor: 'pointer' }} onClick={() => onOpenProject(p)}>
|
|
<div style={{ display: 'flex', alignItems: 'center', gap: 10 }}>
|
|
<div style={{ width: 8, height: 32, borderRadius: 2, background: p.color || 'var(--accent)' }} />
|
|
<div>{p.name}</div>
|
|
</div>
|
|
<div className="col-sub">{p.assets || 0}</div>
|
|
<div className="col-sub">—</div>
|
|
<div className="col-sub">{p.updated || '—'}</div>
|
|
<div style={{ position: 'relative' }} onClick={e => e.stopPropagation()}>
|
|
<button className="icon-btn" aria-label="Project actions" onClick={e => { e.stopPropagation(); setMenuFor(menuFor === p.id ? null : p.id); }}><Icon name="more" /></button>
|
|
{menuFor === p.id && (
|
|
<div className="row-menu" onClick={e => e.stopPropagation()}>
|
|
<button onClick={() => { setMenuFor(null); onOpenProject(p); }}><Icon name="library" size={11} />Open</button>
|
|
<button onClick={() => renameProject(p)}><Icon name="edit" size={11} />Rename…</button>
|
|
<button className="danger" onClick={() => deleteProject(p)}><Icon name="trash" size={11} />Delete</button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
{showNew && <NewProjectModal onClose={() => setShowNew(false)} onCreated={onCreated} />}
|
|
{renamingProject && (
|
|
<RenameProjectModal
|
|
project={renamingProject}
|
|
onClose={() => setRenamingProject(null)}
|
|
onSaved={() => { setRenamingProject(null); refresh(); }}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function RenameProjectModal({ project, onClose, onSaved }) {
|
|
const [name, setName] = React.useState(project.name || '');
|
|
const [saving, setSaving] = React.useState(false);
|
|
const [err, setErr] = React.useState(null);
|
|
const submit = () => {
|
|
const trimmed = name.trim();
|
|
if (!trimmed || trimmed === project.name) { onClose(); return; }
|
|
setSaving(true); setErr(null);
|
|
window.ZAMPP_API.fetch('/projects/' + project.id, { method: 'PATCH', body: JSON.stringify({ name: trimmed }) })
|
|
.then(onSaved)
|
|
.catch(e => { setSaving(false); setErr(e.message); });
|
|
};
|
|
return (
|
|
<div className="modal-backdrop" onClick={onClose}>
|
|
<div className="modal" style={{ width: 420 }} onClick={e => e.stopPropagation()}>
|
|
<div className="modal-head">
|
|
<div style={{ fontSize: 15, fontWeight: 600 }}>Rename project</div>
|
|
<button className="icon-btn" aria-label="Close" onClick={onClose}><Icon name="x" /></button>
|
|
</div>
|
|
<div className="modal-body">
|
|
<div className="field">
|
|
<label className="field-label">Project name</label>
|
|
<input className="field-input" autoFocus value={name}
|
|
onChange={e => setName(e.target.value)}
|
|
onKeyDown={e => { if (e.key === 'Enter') submit(); if (e.key === 'Escape') onClose(); }} />
|
|
</div>
|
|
{err && <div style={{ fontSize: 12, color: 'var(--danger)', marginTop: 4 }}>{err}</div>}
|
|
</div>
|
|
<div className="modal-foot">
|
|
<button className="btn ghost sm" onClick={onClose}>Cancel</button>
|
|
<button className="btn primary sm" onClick={submit} disabled={saving || !name.trim()}>{saving ? 'Saving…' : 'Rename'}</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function ProjectCard({ project, assets, onOpen, onRename, onDelete }) {
|
|
const ofProject = assets.filter(a => a.project_id === project.id);
|
|
const thumbAssets = ofProject.slice(0, 4);
|
|
|
|
// Real status distribution — ready vs processing/live vs error.
|
|
const total = ofProject.length || 1;
|
|
const ready = ofProject.filter(a => a.status === 'ready').length;
|
|
const inFlight = ofProject.filter(a => a.status === 'processing' || a.status === 'live').length;
|
|
const errored = ofProject.filter(a => a.status === 'error').length;
|
|
const readyPct = (ready / total) * 100;
|
|
const inFlightPct = (inFlight / total) * 100;
|
|
const errPct = (errored / total) * 100;
|
|
|
|
// #50: context menu state for grid card
|
|
const [ctx, setCtx] = React.useState(null);
|
|
React.useEffect(() => {
|
|
if (!ctx) return;
|
|
const close = () => setCtx(null);
|
|
window.addEventListener('click', close);
|
|
window.addEventListener('contextmenu', close);
|
|
window.addEventListener('scroll', close, true);
|
|
return () => {
|
|
window.removeEventListener('click', close);
|
|
window.removeEventListener('contextmenu', close);
|
|
window.removeEventListener('scroll', close, true);
|
|
};
|
|
}, [ctx]);
|
|
|
|
const handleContextMenu = (e) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
setCtx({ x: e.clientX, y: e.clientY });
|
|
};
|
|
|
|
return (
|
|
<div className="project-card" onClick={onOpen} onContextMenu={handleContextMenu}>
|
|
<div className="project-thumb-grid">
|
|
{Array.from({ length: 4 }).map((_, i) => (
|
|
<div key={i} className="project-thumb-cell">
|
|
{thumbAssets[i]
|
|
? <AssetThumb asset={thumbAssets[i]} />
|
|
: <FauxFrame />}
|
|
</div>
|
|
))}
|
|
</div>
|
|
<div className="project-card-body">
|
|
<div style={{ display: 'flex', alignItems: 'center', gap: 8 }}>
|
|
<span style={{ width: 10, height: 10, borderRadius: 2, background: project.color || 'var(--accent)' }} />
|
|
<span style={{ fontWeight: 600, fontSize: 14 }}>{project.name}</span>
|
|
</div>
|
|
<div className="project-meta">
|
|
<span>{ofProject.length} asset{ofProject.length === 1 ? '' : 's'}</span>
|
|
<span>·</span>
|
|
<span>updated {project.updated || '—'}</span>
|
|
</div>
|
|
{ofProject.length > 0 ? (
|
|
<div className="project-bar" title={`ready ${ready} · in-flight ${inFlight} · errored ${errored}`}>
|
|
{ready > 0 && <div className="project-segment" style={{ width: readyPct + '%', background: 'var(--success)' }} />}
|
|
{inFlight > 0 && <div className="project-segment" style={{ width: inFlightPct + '%', background: 'var(--accent)' }} />}
|
|
{errored > 0 && <div className="project-segment" style={{ width: errPct + '%', background: 'var(--danger)' }} />}
|
|
</div>
|
|
) : (
|
|
<div className="project-bar"><div className="project-segment" style={{ width: '100%', background: 'var(--bg-3)' }} /></div>
|
|
)}
|
|
</div>
|
|
{ctx && (
|
|
<div className="row-menu" style={{ position: 'fixed', top: ctx.y, left: ctx.x, zIndex: 9999 }} onClick={e => e.stopPropagation()}>
|
|
<button onClick={() => { setCtx(null); onOpen(); }}><Icon name="library" size={11} />Open</button>
|
|
<button onClick={() => { setCtx(null); onRename && onRename(); }}><Icon name="edit" size={11} />Rename…</button>
|
|
<button className="danger" onClick={() => { setCtx(null); onDelete && onDelete(); }}><Icon name="trash" size={11} />Delete</button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
window.Projects = Projects;
|
|
window.RenameProjectModal = RenameProjectModal;
|