[251106] feat: GlobalPopup

🕐 커밋 시간: 2025. 11. 06. 09:08:46

📊 변경 통계:
  • 총 파일: 6개
  • 추가: +2줄

📁 추가된 파일:
  + com.twin.app.shoptime/src/components/GlobalPopup/GlobalPopup.jsx
  + com.twin.app.shoptime/src/components/GlobalPopup/index.js
  + com.twin.app.shoptime/src/constants/popupConfig.js
  + com.twin.app.shoptime/src/constants/popupTypes.js
  + com.twin.app.shoptime/src/hooks/usePopupManager.js

📝 수정된 파일:
  ~ com.twin.app.shoptime/src/App/App.js

🔧 주요 변경 내용:
  • 핵심 비즈니스 로직 개선
  • UI 컴포넌트 아키텍처 개선
  • 설정 관리 시스템 개선
  • 타입 시스템 안정성 강화
  • 모듈 구조 개선
This commit is contained in:
2025-11-06 09:08:46 +09:00
parent 463db62b8c
commit 6b01c052fa
6 changed files with 988 additions and 0 deletions

View File

@@ -45,6 +45,7 @@ import { pushPanel } from '../actions/panelActions';
import { enqueuePanelHistory } from '../actions/panelHistoryActions';
import NotSupportedVersion from '../components/NotSupportedVersion/NotSupportedVersion';
import ToastContainer from '../components/TToast/ToastContainer';
import GlobalPopup from '../components/GlobalPopup/GlobalPopup';
import usePrevious from '../hooks/usePrevious';
import { lunaTest } from '../lunaSend/lunaTest';
import { store } from '../store/store';
@@ -883,6 +884,7 @@ function AppBase(props) {
/>
)}
<ToastContainer />
<GlobalPopup />
</ErrorBoundary>
);
}