Thymeleaf → React 19 + Vite + Tailwind CSS 4 SPA 전환 - frontend-maven-plugin으로 단일 JAR 배포 유지 - 6개 페이지 lazy 로딩, 5초/30초 폴링 자동 갱신 10대 신규 기능: - F1: 강제 종료(Abandon) - stale 실행 단건/전체 강제 종료 - F2: Job 실행 날짜 파라미터 (startDate/stopDate) - F3: Step API 호출 정보 표시 (apiUrl, method, calls) - F4: 실행 이력 검색 (멀티 Job 필터, 날짜 범위, 페이지네이션) - F5: Cron 표현식 도우미 (프리셋 + 다음 5회 미리보기) - F6: 대시보드 실패 통계 (24h/7d, 최근 실패 목록, stale 경고) - F7: Job 상세 카드 (마지막 실행 상태/시간 + 스케줄 cron) - F8: 실행 통계 차트 (CSS-only 30일 일별 막대그래프) - F9: 실패 로그 뷰어 (exitCode/exitMessage 모달) - F10: 다크모드 (data-theme + CSS 변수 + Tailwind @theme) 추가 개선: - 실행 이력 멀티 Job 선택 (체크박스 드롭다운 + 칩) - 스케줄 카드 편집 버튼 (폼 자동 채움 + 수정 모드) - 검색 모드 폴링 비활성화 (1회 조회 후 수동 갱신) - pre-commit hook: 프론트엔드 빌드 스킵 플래그 추가 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
59 lines
1.9 KiB
TypeScript
59 lines
1.9 KiB
TypeScript
export function formatDateTime(dateTimeStr: string | null | undefined): string {
|
|
if (!dateTimeStr) return '-';
|
|
try {
|
|
const date = new Date(dateTimeStr);
|
|
if (isNaN(date.getTime())) return '-';
|
|
const y = date.getFullYear();
|
|
const m = String(date.getMonth() + 1).padStart(2, '0');
|
|
const d = String(date.getDate()).padStart(2, '0');
|
|
const h = String(date.getHours()).padStart(2, '0');
|
|
const min = String(date.getMinutes()).padStart(2, '0');
|
|
const s = String(date.getSeconds()).padStart(2, '0');
|
|
return `${y}-${m}-${d} ${h}:${min}:${s}`;
|
|
} catch {
|
|
return '-';
|
|
}
|
|
}
|
|
|
|
export function formatDateTimeShort(dateTimeStr: string | null | undefined): string {
|
|
if (!dateTimeStr) return '-';
|
|
try {
|
|
const date = new Date(dateTimeStr);
|
|
if (isNaN(date.getTime())) return '-';
|
|
const m = String(date.getMonth() + 1).padStart(2, '0');
|
|
const d = String(date.getDate()).padStart(2, '0');
|
|
const h = String(date.getHours()).padStart(2, '0');
|
|
const min = String(date.getMinutes()).padStart(2, '0');
|
|
return `${m}/${d} ${h}:${min}`;
|
|
} catch {
|
|
return '-';
|
|
}
|
|
}
|
|
|
|
export function formatDuration(ms: number | null | undefined): string {
|
|
if (ms == null || ms < 0) return '-';
|
|
const totalSeconds = Math.floor(ms / 1000);
|
|
const hours = Math.floor(totalSeconds / 3600);
|
|
const minutes = Math.floor((totalSeconds % 3600) / 60);
|
|
const seconds = totalSeconds % 60;
|
|
|
|
if (hours > 0) return `${hours}시간 ${minutes}분 ${seconds}초`;
|
|
if (minutes > 0) return `${minutes}분 ${seconds}초`;
|
|
return `${seconds}초`;
|
|
}
|
|
|
|
export function calculateDuration(
|
|
startTime: string | null | undefined,
|
|
endTime: string | null | undefined,
|
|
): string {
|
|
if (!startTime) return '-';
|
|
const start = new Date(startTime).getTime();
|
|
if (isNaN(start)) return '-';
|
|
|
|
if (!endTime) return '실행 중...';
|
|
const end = new Date(endTime).getTime();
|
|
if (isNaN(end)) return '-';
|
|
|
|
return formatDuration(end - start);
|
|
}
|