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

@@ -71,6 +71,7 @@ import {
type OrderStatus,
} from "@/components/orders";
import { sendSalesOrderNotification } from "@/lib/actions/fcm";
import { OrderSalesDetailEdit } from "@/components/orders/OrderSalesDetailEdit";
// 상태 뱃지 헬퍼
@@ -823,6 +824,11 @@ export default function OrderDetailPage() {
);
}, [order, handleEdit, handleConfirmOrder, handleProductionOrder, handleViewProductionOrder, handleRevertProduction, handleRevertConfirmation, handleCancel, handleDelete]);
// V2 패턴: ?mode=edit일 때 수정 컴포넌트 렌더링
if (isEditMode) {
return <OrderSalesDetailEdit orderId={orderId} />;
}
return (
<>
<IntegratedDetailTemplate

View File

@@ -83,6 +83,7 @@ export default function AccountDetailPage() {
isLoading={isLoading}
onSubmit={handleSubmit}
onDelete={handleDelete}
stickyButtons={true}
/>
);
}

View File

@@ -20,6 +20,7 @@ export default function NewAccountPage() {
config={accountConfig}
mode="create"
onSubmit={handleSubmit}
stickyButtons={true}
/>
);
}