Files
Lumotia/src/lib/components/StatusPill.svelte
Jake 3770815fbf
Some checks failed
check / cargo check (macos-latest) (push) Has been cancelled
check / cargo check (ubuntu-22.04) (push) Has been cancelled
check / cargo check (windows-latest) (push) Has been cancelled
check / svelte build + lint (push) Has been cancelled
agent: lumotia — v0.1 release-completion run
Closes the code-side v0.1 ship gate. All quality gates green:
cargo fmt/clippy/test (~327 tests), npm check (0/0), vitest 13/13,
scripts/dogfood-rebrand-drill.sh 8/8.

Phase F — first-run onboarding promoted to v0.1
- FirstRunPage with skip-to-main + failure recovery + event recording
- Six onboarding commands (record/list/has-completed + lumotia_events)
- Storage migration v17 (onboarding_events + lumotia_events tables)

UI hardening (in-scope items from v0.1-ui-hardening.md)
- StatusPill + PostCaptureCard components, 21st preview entry
- Sidebar recording-as-sacred-state (opacity + aria-disabled, reduced-motion)
- Settings 6-section regroup + Help section + Activation log + Privacy toggle
- Error-state copy sweep (DictationPage + SettingsPage, plain-language)
- Global :focus-visible rule, textarea outlines restored
- Ctrl+K / Ctrl+, / Escape bindings in +layout

LLM resilience
- rule_based_extract_tasks (regex-free imperative-verb extractor) +
  extract_tasks_with_fallback wrapper — task extraction never returns zero
- tokio::time::timeout(120s) wraps cleanup/tags/tasks commands

Release artefacts
- LICENSE (canonical AGPL-3.0), CHANGELOG (Keep-a-Changelog format)
- v0.1-release-notes, privacy-and-ai-use, install-warnings,
  tester-onboarding-kit, tester-acceptance-runbook, code-signing-setup,
  apple-silicon-rb08-runbook, virtual-audio-setup, v0.1-contrast-audit
- Workspace versioning + AGPL spdx; npm exact-pin (10 ranges removed)
- AppImage SHA-256 sidecar in build.yml
- README v0.1 section + Reporting-issues; canonical repo slug

Closure pass — items moved from human-required to code-complete
- KI-02 Linux idle inhibit: zbus 5 → org.freedesktop.login1.Manager.Inhibit
- KI-03 Windows sleep prevention: SetThreadExecutionState(ES_CONTINUOUS|...)
- acquire/release_idle_inhibit Tauri commands, wired in DictationPage
- Diagnostic-bundle frontend wire-up (Settings → Help button)
- WCAG-AA contrast fix via .btn-filled-text utility (no token changes)
- 8 destructive-action sites wrapped in plain-language confirm() guards
- KNOWN-ISSUES.md + v0.1-known-limitations.md updated (KI-02/03 fixed)

Scripts
- pre-tag-verify.sh, tag-day.sh, smoke-linux + driver
- parse-diagnostic-bundle.sh, parse-activation-log.py

Per-item audit trail: docs/release/v0.1-completion-status.md
Remaining: W-01…W-08 (signing certs, hardware probes, smoke matrix,
tester recruitment) — see docs/release/v0.1-known-limitations.md.
2026-05-15 06:59:08 +01:00

124 lines
4.0 KiB
Svelte

<script lang="ts">
// StatusPill — v0.1 UI-hardening deliverable (section 10: "Status labels everywhere").
//
// Renders a small rounded-full pill with a leading dot + visible text label for
// every async / transcription state in Lumotia. Colour is SUPPLEMENTARY — the
// text label is always visible (WCAG perceivable).
//
// Animation (pulse on recording) honours prefers-reduced-motion via both the
// global html.reduce-motion class (set by preferences.svelte.js) and a plain
// @media query so it works even before that class is applied.
type Status =
| 'ready'
| 'recording'
| 'paused'
| 'transcribing'
| 'cleaning'
| 'extracting-tasks'
| 'saved'
| 'exported'
| 'needs-review'
| 'failed-safely';
let { status, label = undefined }: { status: Status; label?: string } = $props();
const DEFAULT_LABELS: Record<Status, string> = {
'ready': 'Ready',
'recording': 'Recording',
'paused': 'Paused',
'transcribing': 'Transcribing',
'cleaning': 'Cleaning',
'extracting-tasks':'Extracting tasks',
'saved': 'Saved',
'exported': 'Exported',
'needs-review': 'Needs review',
'failed-safely': 'Failed safely',
};
// Tailwind bg classes for the leading dot.
// Colour rationale (from semantic palette + existing DictationPage usage):
// ready → neutral (text-tertiary, no semantic colour — idle state)
// recording → danger (#e87171 — matches page.statusColor="#e87171" in DictationPage)
// paused → warning (#e8c86e — honey)
// transcribing → accent (progress / in-flight, uses brand warm accent)
// cleaning → accent (LLM in flight — same bucket as transcribing)
// extracting-tasks → accent (LLM in flight)
// saved → success (#7ec89a — moss green)
// exported → success
// needs-review → warning (#e8c86e — soft signal, data still editable)
// failed-safely → danger (#e87171 — failure, but labelled "safely" in copy)
const DOT_CLASS: Record<Status, string> = {
'ready': 'bg-text-tertiary',
'recording': 'bg-danger dot-pulse',
'paused': 'bg-warning',
'transcribing': 'bg-accent dot-pulse',
'cleaning': 'bg-accent dot-pulse',
'extracting-tasks':'bg-accent dot-pulse',
'saved': 'bg-success',
'exported': 'bg-success',
'needs-review': 'bg-warning',
'failed-safely': 'bg-danger',
};
let displayLabel = $derived(label ?? DEFAULT_LABELS[status]);
let dotClass = $derived(DOT_CLASS[status]);
</script>
<!-- aria-live="polite": screen readers announce state changes without interrupting -->
<span
class="pill"
aria-live="polite"
role="status"
>
<span class="dot {dotClass}"></span>
<span class="pill-label">{displayLabel}</span>
</span>
<style>
.pill {
display: inline-flex;
align-items: center;
gap: 0.375rem; /* 6px */
padding: 2px 8px 2px 6px;
border-radius: 9999px;
background: var(--bg-elevated, rgba(255,255,255,0.06));
border: 1px solid var(--border-subtle);
font: 500 11px/1 var(--font-body);
color: var(--text-secondary);
white-space: nowrap;
user-select: none;
}
.dot {
display: inline-block;
width: 6px;
height: 6px;
border-radius: 9999px;
flex-shrink: 0;
}
/* Pulse animation for active-process states (recording, transcribing, cleaning, extracting) */
@keyframes dot-pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.35; }
}
.dot-pulse {
animation: dot-pulse 1.4s ease-in-out infinite;
}
/* Honour prefers-reduced-motion via @media (covers cold load before
preferences.svelte.js sets html.reduce-motion) */
@media (prefers-reduced-motion: reduce) {
.dot-pulse {
animation: none;
}
}
/* Also honour the class-based gate set by preferences.svelte.js */
:global(html.reduce-motion) .dot-pulse {
animation: none;
}
</style>