fix:영상 생성 진행 상태 UI 대폭 개선

- 경과 시간 실시간 표시 (초 단위 타이머)
- 단계별 타임라인 (Queue 대기 → TTS → 영상 → BGM → 합성)
- 프로그레스 바 shimmer 애니메이션 (작동 중 표시)
- 2분간 변화 없으면 경고 배너 표시
- 폴링 횟수 & 서버 마지막 업데이트 시간 표시
- status API에 updated_at/created_at 추가

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
김보곤
2026-02-15 09:05:09 +09:00
parent 8a6f3f20c9
commit 5ed10104e3
2 changed files with 127 additions and 21 deletions

View File

@@ -156,6 +156,8 @@ public function status(int $id): JsonResponse
'error_message' => $video->error_message,
'output_path' => $video->output_path ? true : false,
'cost_usd' => $video->cost_usd,
'updated_at' => $video->updated_at?->toIso8601String(),
'created_at' => $video->created_at?->toIso8601String(),
]);
}