add web UI: search, download queue with progress, cancel
- ui/index.html, ui/styles.css, ui/scripts.js — minimal two-tab UI - Search tab: big search bar, results with size/votes, add-to-queue button - Queue tab: progress bar, speed, downloaded/total, status badges, cancel - Switches to queue tab on load if downloads are active - Backend: GET /api/search, POST /api/queue/add, GET /api/queue, POST /api/queue/cancel - Speed tracking in streamToFile, abort tracking for immediate cancel - No rounded corners, dark theme
This commit is contained in:
30
ui/index.html
Normal file
30
ui/index.html
Normal file
@@ -0,0 +1,30 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Webshare Queue</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="tabs">
|
||||
<button class="tab active" data-tab="search">Search</button>
|
||||
<button class="tab" data-tab="queue">Queue</button>
|
||||
</div>
|
||||
|
||||
<div class="tab-content active" id="tab-search">
|
||||
<div class="search-bar">
|
||||
<input type="text" id="searchInput" placeholder="Search files on Webshare..." autofocus>
|
||||
<button id="searchBtn">Search</button>
|
||||
</div>
|
||||
<div id="searchResults" class="results"></div>
|
||||
</div>
|
||||
|
||||
<div class="tab-content" id="tab-queue">
|
||||
<div id="queueList" class="results"></div>
|
||||
</div>
|
||||
|
||||
<script src="scripts.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
201
ui/scripts.js
Normal file
201
ui/scripts.js
Normal file
@@ -0,0 +1,201 @@
|
||||
const API_BASE = window.location.origin;
|
||||
let queuePoll = null;
|
||||
|
||||
// ── Tabs ────────────────────────────────────────────────────────────────────
|
||||
|
||||
function startQueuePoll() {
|
||||
stopQueuePoll();
|
||||
queuePoll = setInterval(renderQueue, 2000);
|
||||
}
|
||||
|
||||
function stopQueuePoll() {
|
||||
if (queuePoll) { clearInterval(queuePoll); queuePoll = null; }
|
||||
}
|
||||
|
||||
function switchTab(name) {
|
||||
document.querySelectorAll('.tab').forEach(t => t.classList.remove('active'));
|
||||
document.querySelectorAll('.tab-content').forEach(c => c.classList.remove('active'));
|
||||
document.querySelector(`.tab[data-tab="${name}"]`).classList.add('active');
|
||||
document.getElementById('tab-' + name).classList.add('active');
|
||||
if (name === 'queue') { renderQueue(); startQueuePoll(); }
|
||||
else stopQueuePoll();
|
||||
}
|
||||
|
||||
document.querySelectorAll('.tab').forEach(tab => {
|
||||
tab.addEventListener('click', () => switchTab(tab.dataset.tab));
|
||||
});
|
||||
|
||||
// ── Search ──────────────────────────────────────────────────────────────────
|
||||
|
||||
const searchInput = document.getElementById('searchInput');
|
||||
const searchBtn = document.getElementById('searchBtn');
|
||||
const searchResults = document.getElementById('searchResults');
|
||||
|
||||
async function doSearch() {
|
||||
const q = searchInput.value.trim();
|
||||
if (!q) return;
|
||||
searchResults.innerHTML = '<div class="spinner">Searching...</div>';
|
||||
try {
|
||||
const res = await fetch(`${API_BASE}/api/search?q=${encodeURIComponent(q)}&limit=30`);
|
||||
if (!res.ok) throw new Error(await res.text());
|
||||
const data = await res.json();
|
||||
renderSearchResults(data);
|
||||
} catch (err) {
|
||||
searchResults.innerHTML = `<div class="empty">Search failed: ${err.message}</div>`;
|
||||
}
|
||||
}
|
||||
|
||||
searchBtn.addEventListener('click', doSearch);
|
||||
searchInput.addEventListener('keydown', e => { if (e.key === 'Enter') doSearch(); });
|
||||
|
||||
function formatSize(bytes) {
|
||||
if (!bytes) return '0 B';
|
||||
const units = ['B', 'KB', 'MB', 'GB', 'TB'];
|
||||
let i = 0;
|
||||
let size = bytes;
|
||||
while (size >= 1024 && i < units.length - 1) { size /= 1024; i++; }
|
||||
return size.toFixed(i > 0 ? 1 : 0) + ' ' + units[i];
|
||||
}
|
||||
|
||||
function renderSearchResults(files) {
|
||||
if (!files || files.length === 0) {
|
||||
searchResults.innerHTML = '<div class="empty">No results found.</div>';
|
||||
return;
|
||||
}
|
||||
searchResults.innerHTML = files.map(f => {
|
||||
const added = Boolean(addedIdents[f.ident]);
|
||||
return `
|
||||
<div class="result-item">
|
||||
<div class="result-info">
|
||||
<div class="result-name">${escapeHtml(f.name)}</div>
|
||||
<div class="result-meta">${formatSize(f.size)} · votes: ${f.votes}</div>
|
||||
</div>
|
||||
<button class="${added ? 'added' : ''}" data-ident="${f.ident}" data-name="${escapeAttr(f.name)}" data-size="${f.size}">
|
||||
${added ? 'Added' : 'Add to Queue'}
|
||||
</button>
|
||||
</div>
|
||||
`;
|
||||
}).join('');
|
||||
|
||||
searchResults.querySelectorAll('button:not(.added)').forEach(btn => {
|
||||
btn.addEventListener('click', async () => {
|
||||
const ident = btn.dataset.ident;
|
||||
const name = btn.dataset.name;
|
||||
const size = parseInt(btn.dataset.size);
|
||||
btn.disabled = true;
|
||||
btn.textContent = 'Adding...';
|
||||
try {
|
||||
await addDownload(ident, name, size);
|
||||
btn.classList.add('added');
|
||||
btn.textContent = 'Added';
|
||||
} catch (err) {
|
||||
btn.textContent = 'Failed';
|
||||
setTimeout(() => { btn.disabled = false; btn.textContent = 'Add to Queue'; }, 2000);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// ── Add download via new API route ──────────────────────────────────────────
|
||||
|
||||
const addedIdents = {};
|
||||
|
||||
async function addDownload(ident, name, size) {
|
||||
const res = await fetch(`${API_BASE}/api/queue/add`, {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ ident, name, size }),
|
||||
});
|
||||
if (!res.ok) throw new Error(await res.text());
|
||||
addedIdents[ident] = true;
|
||||
}
|
||||
|
||||
// ── Queue ───────────────────────────────────────────────────────────────────
|
||||
|
||||
const queueList = document.getElementById('queueList');
|
||||
|
||||
async function fetchQueue() {
|
||||
const res = await fetch(`${API_BASE}/api/queue`);
|
||||
if (!res.ok) throw new Error(await res.text());
|
||||
return res.json();
|
||||
}
|
||||
|
||||
function renderQueue() {
|
||||
fetchQueue().then(entries => {
|
||||
if (!entries || entries.length === 0) {
|
||||
queueList.innerHTML = '<div class="empty">Queue is empty.</div>';
|
||||
return;
|
||||
}
|
||||
queueList.innerHTML = entries.map(e => {
|
||||
const pct = Math.round((e.progress || 0) * 100);
|
||||
const downloaded = formatSize(e.progress * e.size);
|
||||
const total = formatSize(e.size);
|
||||
let fillClass = '';
|
||||
if (e.state === 'uploading') fillClass = 'done';
|
||||
else if (e.state === 'error') fillClass = 'error';
|
||||
else if (e.state === 'queuedDL') fillClass = 'queued';
|
||||
return `
|
||||
<div class="queue-item">
|
||||
<div class="queue-name">
|
||||
<span class="badge ${e.state}">${e.state}</span>
|
||||
<span>${escapeHtml(e.name)}</span>
|
||||
<button class="cancel-btn" data-hash="${e.hash}">Cancel</button>
|
||||
</div>
|
||||
<div class="queue-stats">
|
||||
<span>${downloaded} / ${total}</span>
|
||||
<span>${pct}%</span>
|
||||
</div>
|
||||
<div class="queue-speed">${e.speed || ''}</div>
|
||||
<div class="progress-bar">
|
||||
<div class="progress-fill ${fillClass}" style="width:${pct}%"></div>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
}).join('');
|
||||
|
||||
// Attach cancel handlers
|
||||
queueList.querySelectorAll('.cancel-btn').forEach(btn => {
|
||||
btn.addEventListener('click', async () => {
|
||||
const hash = btn.dataset.hash;
|
||||
btn.disabled = true;
|
||||
btn.textContent = '...';
|
||||
try {
|
||||
await fetch(`${API_BASE}/api/queue/cancel`, {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body: JSON.stringify({ hash }),
|
||||
});
|
||||
} catch {}
|
||||
renderQueue();
|
||||
});
|
||||
});
|
||||
}).catch(err => {
|
||||
queueList.innerHTML = `<div class="empty">Failed to load queue: ${err.message}</div>`;
|
||||
});
|
||||
}
|
||||
|
||||
// On load, switch to queue tab if there are active downloads
|
||||
fetchQueue().then(entries => {
|
||||
if (entries && entries.length > 0) switchTab('queue');
|
||||
});
|
||||
|
||||
// Stop polling when tab hidden
|
||||
document.addEventListener('visibilitychange', () => {
|
||||
if (document.hidden) stopQueuePoll();
|
||||
else {
|
||||
const active = document.querySelector('.tab.active');
|
||||
if (active && active.dataset.tab === 'queue') startQueuePoll();
|
||||
}
|
||||
});
|
||||
|
||||
// ── Helpers ─────────────────────────────────────────────────────────────────
|
||||
|
||||
function escapeHtml(str) {
|
||||
const d = document.createElement('div');
|
||||
d.textContent = str;
|
||||
return d.innerHTML;
|
||||
}
|
||||
|
||||
function escapeAttr(str) {
|
||||
return str.replace(/"/g, '"').replace(/'/g, ''');
|
||||
}
|
||||
262
ui/styles.css
Normal file
262
ui/styles.css
Normal file
@@ -0,0 +1,262 @@
|
||||
*, *::before, *::after {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
:root {
|
||||
--bg: #0d1117;
|
||||
--surface: #161b22;
|
||||
--surface-hover: #1c2333;
|
||||
--border: #30363d;
|
||||
--text: #e6edf3;
|
||||
--text-dim: #8b949e;
|
||||
--accent: #58a6ff;
|
||||
--accent-hover: #79b8ff;
|
||||
--green: #3fb950;
|
||||
--orange: #d29922;
|
||||
--red: #f85149;
|
||||
--radius: 0px;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
max-width: 860px;
|
||||
margin: 0 auto;
|
||||
padding: 24px 16px 80px;
|
||||
}
|
||||
|
||||
/* ── Tabs ─────────────────────────────────────────────── */
|
||||
|
||||
.tabs {
|
||||
display: flex;
|
||||
gap: 0;
|
||||
border-bottom: 1px solid var(--border);
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.tab {
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--text-dim);
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
padding: 10px 20px;
|
||||
cursor: pointer;
|
||||
border-bottom: 2px solid transparent;
|
||||
margin-bottom: -1px;
|
||||
transition: color 0.15s, border-color 0.15s;
|
||||
}
|
||||
|
||||
.tab:hover { color: var(--text); }
|
||||
|
||||
.tab.active {
|
||||
color: var(--accent);
|
||||
border-bottom-color: var(--accent);
|
||||
}
|
||||
|
||||
.tab-content { display: none; }
|
||||
.tab-content.active { display: block; }
|
||||
|
||||
/* ── Search bar ───────────────────────────────────────── */
|
||||
|
||||
.search-bar {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.search-bar input {
|
||||
flex: 1;
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: var(--radius);
|
||||
color: var(--text);
|
||||
font-size: 16px;
|
||||
padding: 12px 16px;
|
||||
outline: none;
|
||||
transition: border-color 0.15s;
|
||||
}
|
||||
|
||||
.search-bar input:focus { border-color: var(--accent); }
|
||||
.search-bar input::placeholder { color: var(--text-dim); }
|
||||
|
||||
.search-bar button {
|
||||
background: var(--accent);
|
||||
color: #fff;
|
||||
border: none;
|
||||
border-radius: var(--radius);
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
padding: 0 20px;
|
||||
cursor: pointer;
|
||||
transition: background 0.15s;
|
||||
}
|
||||
|
||||
.search-bar button:hover { background: var(--accent-hover); }
|
||||
|
||||
/* ── Result items ─────────────────────────────────────── */
|
||||
|
||||
.results { display: flex; flex-direction: column; gap: 8px; }
|
||||
|
||||
.result-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: var(--radius);
|
||||
padding: 12px 16px;
|
||||
transition: border-color 0.15s;
|
||||
}
|
||||
|
||||
.result-item:hover { border-color: var(--text-dim); }
|
||||
|
||||
.result-info {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.result-name {
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.result-meta {
|
||||
font-size: 12px;
|
||||
color: var(--text-dim);
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.result-item button {
|
||||
background: var(--green);
|
||||
color: #fff;
|
||||
border: none;
|
||||
border-radius: var(--radius);
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
padding: 6px 14px;
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
transition: background 0.15s;
|
||||
}
|
||||
|
||||
.result-item button:hover { filter: brightness(1.15); }
|
||||
|
||||
.result-item button.added {
|
||||
background: var(--text-dim);
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* ── Queue items ──────────────────────────────────────── */
|
||||
|
||||
.queue-item {
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: var(--radius);
|
||||
padding: 14px 16px;
|
||||
}
|
||||
|
||||
.queue-name {
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
margin-bottom: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.queue-name .badge { flex-shrink: 0; }
|
||||
|
||||
.queue-name > span:last-child {
|
||||
flex: 1;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.cancel-btn {
|
||||
flex-shrink: 0;
|
||||
margin-left: auto;
|
||||
background: var(--red);
|
||||
color: #fff;
|
||||
border: none;
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
padding: 4px 10px;
|
||||
cursor: pointer;
|
||||
transition: filter 0.15s;
|
||||
}
|
||||
|
||||
.cancel-btn:hover { filter: brightness(1.2); }
|
||||
.cancel-btn:disabled { opacity: 0.5; cursor: default; }
|
||||
|
||||
.queue-stats {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
font-size: 12px;
|
||||
color: var(--text-dim);
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.queue-speed {
|
||||
font-size: 12px;
|
||||
color: var(--text-dim);
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
/* ── Progress bar ─────────────────────────────────────── */
|
||||
|
||||
.progress-bar {
|
||||
height: 6px;
|
||||
background: var(--border);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.progress-fill {
|
||||
height: 100%;
|
||||
background: var(--accent);
|
||||
transition: width 0.5s ease;
|
||||
}
|
||||
|
||||
.progress-fill.done { background: var(--green); }
|
||||
.progress-fill.error { background: var(--red); }
|
||||
.progress-fill.queued { background: var(--orange); }
|
||||
|
||||
/* ── Status badges ────────────────────────────────────── */
|
||||
|
||||
.badge {
|
||||
display: inline-block;
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
padding: 2px 8px;
|
||||
border-radius: 0;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.3px;
|
||||
}
|
||||
|
||||
.badge.downloading { background: #1f3a5f; color: var(--accent); }
|
||||
.badge.uploading { background: #1a3a1a; color: var(--green); }
|
||||
.badge.queuedDL { background: #3a2e1a; color: var(--orange); }
|
||||
.badge.error { background: #3a1a1a; color: var(--red); }
|
||||
|
||||
/* ── Empty state ──────────────────────────────────────── */
|
||||
|
||||
.empty {
|
||||
text-align: center;
|
||||
color: var(--text-dim);
|
||||
padding: 40px 0;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.spinner {
|
||||
text-align: center;
|
||||
color: var(--text-dim);
|
||||
padding: 20px 0;
|
||||
font-size: 13px;
|
||||
}
|
||||
Reference in New Issue
Block a user