Closes 4 dashboard hardening findings and 5 of the Lows from the audit. Dashboard hardening: - Subtabs no longer re-fetch the app via api.apps.get on every page load. users/files/dead-letters drop the fetch outright (the variable was set but never read); queues + queues/[name] now consume the layout's AppContext via getContext for the page title. The layout's reloadApp() owns the historical-slug redirect — subtab-local redirect blocks are removed so there's no race. - The global :global(details > summary::before) chevron is now scoped to details.chevron. The script editor's "Advanced sandbox" details and the inbound-email-shape help-text both opt in; the script exec-list logs no longer inherit a spurious chevron. - deriveTab now matches the path segment by anchored ===, so a future /apps/<slug>/queues-archived route wouldn't activate the queues tab. Lows cherry-pick: - ExecError gains Serialize/Deserialize derives + a snake_case tag so RemoteExecutorClient (cluster mode v1.3+) can round-trip the variant. - triggers_api rejects queue triggers whose visibility_timeout_secs is below the dispatcher's per-message executor budget; with no minimum the reclaim task races the handler and the queue silently double-delivers. Existing test using 5s updated to 30s. - New migration 0040: execution_logs.script_id cascade switched from ON DELETE CASCADE to ON DELETE SET NULL so deleting a script no longer wipes the forensic history that motivated the delete. - New migration 0041: dead_letters composite index on (app_id, created_at DESC) so the "list all" dashboard view stops falling back to seqscan + sort when unresolved=false. - Schema snapshot re-blessed. Deferred to v1.2: the ExecRequest principal serde(skip) marker (documented in-place; the cluster-mode PR will introduce the wire-safe snapshot at that point) and the `pic --help` mention of `picloud admin reset-password` (one-line follow-up). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
188 lines
4.4 KiB
Svelte
188 lines
4.4 KiB
Svelte
<script lang="ts">
|
|
import { base } from '$app/paths';
|
|
import { page } from '$app/state';
|
|
import { getContext, onDestroy } from 'svelte';
|
|
import { api, ApiError, type QueueSummary } from '$lib/api';
|
|
import { APP_CTX_KEY, type AppContext } from '../+layout.svelte';
|
|
|
|
let slug = $derived(page.params.slug ?? '');
|
|
// Read the layout's app store instead of re-fetching. The layout
|
|
// already drives the historical-slug redirect, so we don't repeat
|
|
// that here either.
|
|
const ctx = getContext<AppContext>(APP_CTX_KEY);
|
|
const appStore = ctx?.app;
|
|
let appName = $derived($appStore?.name ?? slug);
|
|
let queues = $state<QueueSummary[]>([]);
|
|
let loading = $state(false);
|
|
let error = $state<string | null>(null);
|
|
/// F-U-013: queue depths change continuously. The page used to be a
|
|
/// page-load snapshot with no way to update without a hard refresh.
|
|
let autoRefresh = $state(false);
|
|
let autoRefreshHandle: ReturnType<typeof setInterval> | null = null;
|
|
|
|
async function loadQueues() {
|
|
loading = true;
|
|
error = null;
|
|
try {
|
|
queues = await api.queues.list(slug);
|
|
} catch (e) {
|
|
error = e instanceof ApiError ? e.message : String(e);
|
|
} finally {
|
|
loading = false;
|
|
}
|
|
}
|
|
|
|
function setAutoRefresh(on: boolean) {
|
|
autoRefresh = on;
|
|
if (autoRefreshHandle) {
|
|
clearInterval(autoRefreshHandle);
|
|
autoRefreshHandle = null;
|
|
}
|
|
if (on) {
|
|
autoRefreshHandle = setInterval(() => {
|
|
void loadQueues();
|
|
}, 5000);
|
|
}
|
|
}
|
|
|
|
onDestroy(() => {
|
|
if (autoRefreshHandle) clearInterval(autoRefreshHandle);
|
|
});
|
|
|
|
$effect(() => {
|
|
void slug;
|
|
void loadQueues();
|
|
});
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>Queues — {appName} — PiCloud</title>
|
|
</svelte:head>
|
|
|
|
<header class="panel-head">
|
|
<h2>Queues</h2>
|
|
<p class="subtle">
|
|
Per-app durable queues. Producers call <code>queue::enqueue(name, msg)</code>;
|
|
consumers register a <code>queue:receive</code> trigger. v1.1.9.
|
|
</p>
|
|
<!-- F-U-013: refresh + auto-refresh toggle. -->
|
|
<div class="toolbar">
|
|
<button type="button" class="secondary" onclick={() => loadQueues()} disabled={loading}>
|
|
{loading ? 'Refreshing…' : 'Refresh'}
|
|
</button>
|
|
<label class="auto-refresh">
|
|
<input
|
|
type="checkbox"
|
|
checked={autoRefresh}
|
|
onchange={(e) => setAutoRefresh((e.currentTarget as HTMLInputElement).checked)}
|
|
/>
|
|
Auto-refresh every 5s
|
|
</label>
|
|
</div>
|
|
</header>
|
|
|
|
{#if error}
|
|
<p class="error">{error}</p>
|
|
{/if}
|
|
|
|
{#if loading && queues.length === 0}
|
|
<p class="muted">Loading…</p>
|
|
{:else if queues.length === 0}
|
|
<p class="muted" data-testid="queues-empty-state">
|
|
No queues in this app yet. A queue is created implicitly the first time a
|
|
message is enqueued. Register a <code>queue:receive</code> trigger from the
|
|
Triggers tab to consume messages.
|
|
</p>
|
|
{:else}
|
|
<table class="queues">
|
|
<thead>
|
|
<tr>
|
|
<th>Queue</th>
|
|
<th class="num">Total</th>
|
|
<th class="num">Pending</th>
|
|
<th class="num">Claimed</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{#each queues as q (q.queue_name)}
|
|
<tr>
|
|
<td><code>{q.queue_name}</code></td>
|
|
<td class="num">{q.total}</td>
|
|
<td class="num">{q.pending}</td>
|
|
<td class="num">{q.claimed}</td>
|
|
<td>
|
|
<a href="{base}/apps/{slug}/queues/{encodeURIComponent(q.queue_name)}">
|
|
drilldown →
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{/each}
|
|
</tbody>
|
|
</table>
|
|
{/if}
|
|
|
|
<style>
|
|
.panel-head {
|
|
margin-bottom: 1rem;
|
|
}
|
|
h2 {
|
|
margin: 0.25rem 0;
|
|
font-size: 1.125rem;
|
|
}
|
|
.subtle {
|
|
color: var(--text-muted);
|
|
font-size: 0.875rem;
|
|
}
|
|
.toolbar {
|
|
display: flex;
|
|
gap: 0.75rem;
|
|
align-items: center;
|
|
margin-top: 0.75rem;
|
|
}
|
|
.auto-refresh {
|
|
display: inline-flex;
|
|
gap: 0.4rem;
|
|
align-items: center;
|
|
font-size: 0.875rem;
|
|
color: var(--text-muted);
|
|
}
|
|
button.secondary {
|
|
background: transparent;
|
|
color: var(--text-muted);
|
|
border: 1px solid var(--border);
|
|
padding: 0.4rem 0.85rem;
|
|
border-radius: var(--radius-md);
|
|
cursor: pointer;
|
|
font-size: 0.85rem;
|
|
}
|
|
button.secondary:hover:not(:disabled) {
|
|
background: var(--bg-elevated);
|
|
color: var(--text-primary);
|
|
}
|
|
button.secondary:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
.error {
|
|
color: var(--color-danger);
|
|
}
|
|
.muted {
|
|
color: var(--text-muted);
|
|
}
|
|
table.queues {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
table.queues th,
|
|
table.queues td {
|
|
text-align: left;
|
|
padding: 0.5rem;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.num {
|
|
text-align: right;
|
|
font-variant-numeric: tabular-nums;
|
|
}
|
|
</style>
|