feat: 대시보드 작업장 현황 지도 구현

- 실시간 작업장 현황을 지도로 시각화
- 작업장 관리 페이지에서 정의한 구역 정보 활용
- TBM 작업자 및 방문자 현황 표시

주요 변경사항:
- dashboard.html: 작업장 현황 섹션 추가 (기존 작업 현황 테이블 제거)
- workplace-status.js: 지도 렌더링 및 데이터 통합 로직 구현
- modern-dashboard.js: 삭제된 DOM 요소 조건부 체크 추가

시각화 방식:
- 인원 없음: 회색 테두리 + 작업장 이름
- 내부 작업자: 파란색 영역 + 인원 수
- 외부 방문자: 보라색 영역 + 인원 수
- 둘 다: 초록색 영역 + 총 인원 수

기술 구현:
- Canvas API 기반 사각형 영역 렌더링
- map-regions API를 통한 데이터 일관성 보장
- 클릭 이벤트로 상세 정보 모달 표시

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-01-29 15:46:47 +09:00
parent e1227a69fe
commit b6485e3140
87 changed files with 17509 additions and 698 deletions

View File

@@ -809,3 +809,202 @@
.confirm-btn:active {
transform: translateY(0) scale(0.98);
}
/* ================================================
저장 결과 모달 스타일
================================================ */
.modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 10000;
padding: 1rem;
}
.modal-container.result-modal {
background: white;
border-radius: 12px;
max-width: 500px;
width: 100%;
max-height: 90vh;
overflow-y: auto;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.modal-header {
padding: 1.5rem;
border-bottom: 1px solid #e5e7eb;
display: flex;
justify-content: space-between;
align-items: center;
}
.modal-header h2 {
margin: 0;
font-size: 1.25rem;
font-weight: 600;
}
.modal-close-btn {
background: none;
border: none;
font-size: 1.5rem;
cursor: pointer;
color: #6b7280;
padding: 0;
width: 2rem;
height: 2rem;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
transition: background 0.2s;
}
.modal-close-btn:hover {
background: #f3f4f6;
}
.modal-body {
padding: 2rem 1.5rem;
}
.result-icon {
text-align: center;
font-size: 3rem;
margin-bottom: 1rem;
}
.result-title {
text-align: center;
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
.result-title.success {
color: #10b981;
}
.result-title.error {
color: #ef4444;
}
.result-title.warning {
color: #f59e0b;
}
.result-message {
text-align: center;
color: #6b7280;
margin-bottom: 1rem;
}
.result-details {
margin-top: 1.5rem;
padding: 1rem;
background: #f9fafb;
border-radius: 8px;
}
.result-details h4 {
margin: 0 0 0.5rem 0;
font-size: 0.875rem;
font-weight: 600;
color: #374151;
}
.result-details ul {
margin: 0;
padding-left: 1.5rem;
}
.result-details li {
margin-bottom: 0.25rem;
color: #6b7280;
}
.result-details p {
margin: 0;
color: #6b7280;
}
.modal-footer {
padding: 1rem 1.5rem;
border-top: 1px solid #e5e7eb;
display: flex;
justify-content: flex-end;
gap: 0.5rem;
}
/* =================================================================
일괄제출 버튼 스타일
================================================================= */
.batch-submit-container {
padding: 1rem;
background: #f9fafb;
border-top: 2px solid #e5e7eb;
display: flex;
justify-content: center;
align-items: center;
}
.btn-batch-submit {
background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
color: white;
border: none;
padding: 0.875rem 2rem;
font-size: 1rem;
font-weight: 600;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
min-width: 280px;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.btn-batch-submit:hover {
background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
box-shadow: 0 6px 12px rgba(59, 130, 246, 0.4);
transform: translateY(-2px);
}
.btn-batch-submit:active {
transform: translateY(0);
box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}
.btn-batch-submit:disabled {
background: #9ca3af;
cursor: not-allowed;
box-shadow: none;
transform: none;
}
/* 수동입력 섹션 강조 */
.manual-input-section {
border: 2px solid #f59e0b;
border-radius: 8px;
margin-bottom: 2rem;
box-shadow: 0 4px 6px rgba(245, 158, 11, 0.1);
}
.manual-input-section .tbm-session-header {
background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
/* TBM 세션 그룹 간격 조정 */
.tbm-session-group:not(.manual-input-section) {
margin-bottom: 1.5rem;
}