feat(WEB): 글로벌 검색, 토큰 갱신 개선, 템플릿 기능 확장

- CommandMenuSearch 컴포넌트 추가 (Cmd+K 글로벌 메뉴 검색)
- AuthenticatedLayout: 검색 통합, 모바일/데스크톱 스켈레톤 분리
- middleware: 토큰 갱신 후 리다이렉트 방식으로 변경 (race condition 방지)
- IntegratedDetailTemplate: stickyButtons 옵션 추가 (하단 고정 버튼)
- UniversalListPage: 컬럼 정렬 기능 추가 (sortBy, sortOrder)
- Sidebar: 축소 모드 패딩/간격 최적화
- 각종 컴포넌트 버그 수정 및 경로 정규화

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
유병철
2026-01-26 15:07:10 +09:00
parent cd060ec562
commit a15132d75d
38 changed files with 927 additions and 443 deletions

View File

@@ -231,11 +231,12 @@ export function InspectionDetail({ id }: InspectionDetailProps) {
const mode = isEditMode ? 'edit' : 'view';
// 동적 config (모드에 따른 타이틀 변경)
// IntegratedDetailTemplate: edit 모드에서 자동으로 "{title} 수정" 붙음
const dynamicConfig = useMemo(() => {
if (isEditMode) {
return {
...inspectionConfig,
title: '검사 수정',
title: '검사',
};
}
return inspectionConfig;