46 lines
1.5 KiB
JavaScript
46 lines
1.5 KiB
JavaScript
// /js/work-report-api.js
|
|
import { apiGet, apiPost } from './api-helper.js';
|
|
|
|
/**
|
|
* 작업 보고서 작성을 위해 필요한 초기 데이터(작업자, 프로젝트, 태스크)를 가져옵니다.
|
|
* Promise.all을 사용하여 병렬로 API를 호출합니다.
|
|
* @returns {Promise<{workers: Array, projects: Array, tasks: Array}>}
|
|
*/
|
|
export async function getInitialData() {
|
|
try {
|
|
const [workers, projects, tasks] = await Promise.all([
|
|
apiGet('/workers'),
|
|
apiGet('/projects'),
|
|
apiGet('/tasks')
|
|
]);
|
|
|
|
// 데이터 형식 검증
|
|
if (!Array.isArray(workers) || !Array.isArray(projects) || !Array.isArray(tasks)) {
|
|
throw new Error('서버에서 받은 데이터 형식이 올바르지 않습니다.');
|
|
}
|
|
|
|
// 작업자 목록은 ID 기준으로 정렬
|
|
workers.sort((a, b) => a.worker_id - b.worker_id);
|
|
|
|
return { workers, projects, tasks };
|
|
} catch (error) {
|
|
console.error('초기 데이터 로딩 중 오류 발생:', error);
|
|
// 에러를 다시 던져서 호출한 쪽에서 처리할 수 있도록 함
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 작성된 작업 보고서 데이터를 서버에 전송합니다.
|
|
* @param {Array<object>} reportData - 전송할 작업 보고서 데이터 배열
|
|
* @returns {Promise<object>} - 서버의 응답 결과
|
|
*/
|
|
export async function createWorkReport(reportData) {
|
|
try {
|
|
const result = await apiPost('/workreports', reportData);
|
|
return result;
|
|
} catch (error) {
|
|
console.error('작업 보고서 생성 요청 실패:', error);
|
|
throw error;
|
|
}
|
|
}
|