refactor(dry-F2): centralize shared UI primitives (relative-time, toast, download-status)

- utils/date.js: add formatRelative(iso, {future,nullText}); migrate 6 sites
  (SourceRow, SubscriptionsTab, SourceHealthDot, SchedulerStatusBar +
  thin adapters in BackupRunsTable/SystemActivityTab for their '—' null text).
  PostCard (30d->absolute) and CredentialCard (mo/y buckets) intentionally
  keep bespoke formatters.
- utils/toast.js: toast(opts) wraps the globalThis.window?.__fcToast?.(...)
  incantation; migrate 63 call sites across 24 files.
- utils/downloadStatus.js: single source for the download-event status enum
  -> label/color/icon; collapse the 3 duplicate maps (DownloadStatChips,
  DownloadsFilterPopover, DownloadEventRow).

Net -33 lines. Platform metadata was already centralized in platformColor.js.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-28 11:20:07 -04:00
parent 2358cedf3e
commit eebc8e2413
34 changed files with 166 additions and 170 deletions
+3 -2
View File
@@ -1,4 +1,5 @@
import { defineStore } from 'pinia'
import { toast } from '../utils/toast.js'
import { ref } from 'vue'
import { useApi } from '../composables/useApi.js'
@@ -54,7 +55,7 @@ export const useSuggestionsStore = defineStore('suggestions', () => {
body: { tag_id: tagId }
})
_drop(suggestion.category, s => s === suggestion)
window.__fcToast?.({
toast({
text: `Tagged: ${suggestion.display_name}`,
type: 'success'
})
@@ -69,7 +70,7 @@ export const useSuggestionsStore = defineStore('suggestions', () => {
}
})
_drop(suggestion.category, s => s === suggestion)
window.__fcToast?.({
toast({
text: `Aliased & tagged: ${suggestion.display_name}`,
type: 'success'
})