refactor: 프론트엔드 유틸리티 함수 통합 (showToast, waitForApi, generateUUID)

- api-base.js에 4개 전역 유틸리티 추가 (showToast, formatDate, waitForApi, generateUUID)
- 24개 파일에서 중복 정의 제거 (-932줄)
- showToast: 18곳 중복 → 1곳 통합 (자동 컨테이너/스타일 생성)
- waitForApi/waitForApiConfig/waitForApiCall: 5곳 → 1곳 통합
- generateUUID: tbm.js 중복 제거
- tbm/utils.js, workplace-management/utils.js: window 재정의 제거

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-02-25 08:45:55 +09:00
parent 64e3c1227d
commit 4581cddbc0
24 changed files with 112 additions and 932 deletions

View File

@@ -32,7 +32,7 @@
document.addEventListener('DOMContentLoaded', async function() {
try {
// apiCall이 준비될 때까지 대기
await waitForApiCall();
await waitForApi();
// 초기 데이터 로드
await window.TbmAPI.loadInitialData();
@@ -68,22 +68,7 @@
}
});
function waitForApiCall() {
return new Promise(function(resolve) {
if (typeof window.apiCall === 'function') {
resolve();
return;
}
var checks = 0;
var interval = setInterval(function() {
checks++;
if (typeof window.apiCall === 'function' || checks > 50) {
clearInterval(interval);
resolve();
}
}, 100);
});
}
// waitForApi → api-base.js 전역 사용
// ==================== 네비게이션 ====================