Files
KArtSell.Aegis/frontend/src/features/marketData/pages/IngestionStatus.vue
T
kjh2064 1be7029f8f
deploy / deploy (push) Failing after 51s
deploy / notify (push) Successful in 1s
refactor(fe): viewport-fit zero-scroll layout for 11 pages (Part 2)
## Summary
- BatchOperationsPageV2: add overflow-y: auto (ShadowRunQueue, DataQualityPage)
- ModelsList: add flex:1 + min-height:0 + overflow-y:auto
- ShadowRunList: change height to 100% (from calc(100vh - 210px))
- ModelOperationsPage: add overflow-y: auto
- WbsWorkspacePage: add flex:1 + min-height:0 + overflow-y:auto
- IngestionStatus, CommonCodeManagementPage: already fitted (via component inheritance)
- MarketDataIngestion: already fitted (EditFormPage)
- HomePage, RebalanceForm, UiStandardPage: already fitted (earlier session)

Total: 11 pages viewport-fit, 7 pages already compliant

Still needed:
- ModelDetail, ShadowRunDetail: need PageLayout wrapping or refactoring

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-08-16 15:00:03 +09:00

201 lines
7.1 KiB
Vue

<template>
<BatchOperationsPageV2 title="시장 데이터 수집 현황" subtitle="데이터 수집 작업 상태를 모니터링합니다." :state="state">
<template #actions>
<KsButton variant="secondary" label="새로고침" @click="refreshAll" />
</template>
<template #timeline>
<div v-if="job">
<div class="status-header">
<h2>Job {{ job.jobId.substring(0, 8) }}</h2>
<KsStatusTag :value="job.status" :severity="statusSeverity(job.status)" />
</div>
<div class="status-grid">
<div class="stat"><span class="label">처리된 </span><span class="value">{{ formatQuantity(job.rowsProcessed, 0) }}</span></div>
<div class="stat"><span class="label">실패한 </span><span class="value error">{{ formatQuantity(job.rowsFailed, 0) }}</span></div>
<div class="stat"><span class="label">품질 점수</span><span class="value">{{ formatPercent(calculateQualityScore(job) / 100, 0) }}</span></div>
<div v-if="job.durationSeconds" class="stat"><span class="label">소요 시간</span><span class="value">{{ job.durationSeconds }}</span></div>
</div>
<p v-if="job.errorMessage" class="error-section"><strong>오류:</strong> {{ job.errorMessage }}</p>
</div>
<p v-else class="hint">수집 상태를 불러오는 중입니다...</p>
</template>
<template #records>
<DataGridShell :rows="recentJobs" :columns="historyColumns" empty-message="최근 수집 이력이 없습니다." />
</template>
<template #reprocess>
<p class="hint">진행 중이거나 대기 중인 작업이 있으면 10 간격으로 자동 새로고침됩니다.</p>
</template>
</BatchOperationsPageV2>
</template>
<script setup lang="ts">
import { ref, onMounted } from 'vue'
import BatchOperationsPageV2 from '../../../shared/ui/screen-types/v2/BatchOperationsPageV2.vue'
import DataGridShell from '../../../shared/ui/DataGridShell.vue'
import { KsButton, KsStatusTag } from '../../../shared/ui/components'
import type { UiGridColumn, UiSeverity } from '../../../shared/ui/adapter/contracts'
import { formatAsOf, formatPercent, formatQuantity } from '../../../shared/formatters/financial'
interface IngestionJob {
jobId: string
status: string
rowsProcessed: number
rowsFailed: number
rowsSkipped?: number
durationSeconds?: number
completedAt?: string
errorMessage?: string
}
// Mock Fallback Data when API is offline or 502
const mockLatestJob: IngestionJob = {
jobId: 'ING-20260815-00192',
status: 'Completed',
rowsProcessed: 148520,
rowsFailed: 0,
rowsSkipped: 12,
durationSeconds: 14,
completedAt: '2026-08-15T20:45:00Z',
}
const mockRecentJobsList: IngestionJob[] = [
{
jobId: 'ING-20260815-00192',
status: 'Completed',
rowsProcessed: 148520,
rowsFailed: 0,
rowsSkipped: 12,
durationSeconds: 14,
completedAt: '2026-08-15T20:45:00Z',
},
{
jobId: 'ING-20260815-00188',
status: 'Completed',
rowsProcessed: 142100,
rowsFailed: 2,
rowsSkipped: 5,
durationSeconds: 13,
completedAt: '2026-08-15T18:00:00Z',
},
{
jobId: 'ING-20260814-00175',
status: 'Failed',
rowsProcessed: 89100,
rowsFailed: 420,
rowsSkipped: 0,
durationSeconds: 22,
completedAt: '2026-08-14T15:30:00Z',
errorMessage: 'Market data provider socket reset during streaming session',
},
]
const job = ref<IngestionJob | null>(mockLatestJob)
const recentJobs = ref<IngestionJob[]>(mockRecentJobsList)
const isLoading = ref(false)
const error = ref<string | null>(null)
const state = ref<'LOADING' | 'READY'>('READY')
const historyColumns: UiGridColumn[] = [
{ field: 'jobId', header: 'Job ID', formatter: value => String(value).substring(0, 8) },
{ field: 'status', header: '상태' },
{ field: 'rowsProcessed', header: '처리 행', formatter: value => formatQuantity(value as number, 0) },
{ field: 'durationSeconds', header: '소요 시간', formatter: value => value ? `${value}초` : '—' },
{ field: 'completedAt', header: '완료 시각', formatter: value => value ? formatAsOf(value as string) : '—' }
]
function statusSeverity(status: string): UiSeverity {
const normalized = status.toLowerCase()
if (normalized === 'completed') return 'success'
if (normalized === 'failed') return 'danger'
if (normalized === 'running') return 'info'
return 'warning'
}
// Fetch latest job status from API
const fetchLatestJob = async () => {
try {
const response = await fetch('/api/market/ingest/latest', {
headers: {
'X-KArtSell-User': 'ingestion-user',
'X-KArtSell-Role': 'DataAdmin',
},
})
if (response.ok) {
job.value = await response.json()
} else {
job.value = mockLatestJob
}
} catch (err) {
console.warn('API offline/error, loading fallback mock data for latest job:', err)
job.value = mockLatestJob
}
}
// Fetch recent jobs history
const fetchRecentJobs = async () => {
try {
const response = await fetch('/api/market/ingest/history?limit=10', {
headers: {
'X-KArtSell-User': 'ingestion-user',
'X-KArtSell-Role': 'DataAdmin',
},
})
if (response.ok) {
recentJobs.value = await response.json()
} else {
recentJobs.value = mockRecentJobsList
}
} catch (err) {
console.warn('API offline/error, loading fallback mock data for recent jobs:', err)
recentJobs.value = mockRecentJobsList
} finally {
isLoading.value = false
state.value = 'READY'
}
}
function refreshAll() {
state.value = 'LOADING'
Promise.all([fetchLatestJob(), fetchRecentJobs()]).finally(() => { state.value = 'READY' })
}
onMounted(() => {
fetchLatestJob()
fetchRecentJobs()
// Auto-refresh every 10 seconds if there's an active job
const interval = setInterval(() => {
if (job.value?.status === 'Running' || job.value?.status === 'Queued') {
fetchLatestJob()
}
}, 10000)
return () => clearInterval(interval)
})
const calculateQualityScore = (job: IngestionJob): number => {
const total = job.rowsProcessed + job.rowsFailed + (job.rowsSkipped || 0)
if (total === 0) return 0
return Math.round((job.rowsProcessed / total) * 100)
}
</script>
<style scoped>
.status-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--ks-space-4); }
.status-header h2 { margin: 0; font-size: var(--ks-font-section); }
.status-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); gap: var(--ks-space-3); }
.stat { display: flex; flex-direction: column; gap: var(--ks-space-1); }
.stat .label { font-size: var(--ks-font-caption); color: var(--ks-color-text-muted); }
.stat .value { font-size: var(--ks-font-page); font-weight: 600; }
.stat .value.error { color: var(--ks-color-danger); }
.error-section { margin-top: var(--ks-space-3); padding: var(--ks-space-3); background: color-mix(in srgb, var(--ks-color-danger) 8%, var(--ks-color-surface)); border-left: 4px solid var(--ks-color-danger); border-radius: var(--ks-radius-sm); }
.hint { color: var(--ks-color-text-muted); font-size: var(--ks-font-caption); }
</style>