From cf397b268e97a1a343674027d782d3331ca2cc43 Mon Sep 17 00:00:00 2001 From: Momentry Studio Date: Sat, 25 Jul 2026 15:53:17 +0800 Subject: [PATCH] refactor: QC - use FS instead of Trace MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Display format: FS#123 instead of Trace #123 - Update labels: 'Traces' → 'FS' - Update messages: 'clusters' → 'groups' --- src/views/PeopleView.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/PeopleView.vue b/src/views/PeopleView.vue index 68ed31f..0b586f0 100644 --- a/src/views/PeopleView.vue +++ b/src/views/PeopleView.vue @@ -394,7 +394,7 @@
{{ qcProgress.total }} - Traces + FS
{{ qcProgress.current }} @@ -443,7 +443,7 @@

⚠️ Profile Issues ({{ qcProfileIssues.length }})

- Trace #{{ p.traceId }} + FS#{{ p.traceId }} {{ p.groupName }} {{ p.canRead ? '✓ R' : '✗ R' }} {{ p.canWrite ? '✓ W' : '✗ W' }} @@ -2029,7 +2029,7 @@ async function runDataQC() { qcReport.value.push({ check: 'Traces from Clusters', status: totalTraces > 0 ? 'PASS' : 'WARN', - details: `${totalTraces} traces in ${faceGroups.value.length} clusters` + details: `${totalTraces} FS in ${faceGroups.value.length} groups` }) // ===== 3. TEST TRACE PROFILES ===== @@ -2046,7 +2046,7 @@ async function runDataQC() { const trace = clusterTracesMap.value[String(traceId)] const groupName = traceGroupMap.value[String(traceId)] || 'Unknown' - qcProgress.value.status = `Testing #${traceId} (${groupName})` + qcProgress.value.status = `Testing FS#${traceId} (${groupName})` const result: { traceId: number; fileUuid: string; groupName: string; canRead: boolean; canWrite: boolean; hasKeyFrame: boolean; hasKeyFace: boolean; error?: string } = { traceId, @@ -2104,7 +2104,7 @@ async function runDataQC() { missingBoth: tested - withKeyFrame - withKeyFace + profileIssues.filter(p => p.hasKeyFrame && p.hasKeyFace).length } - // Trace profile summary + // FS profile summary const readFailures = profileIssues.filter(r => !r.canRead).length const writeFailures = profileIssues.filter(r => !r.canWrite).length const validTraceCount = tested