All checks were successful
Deploy SOLUTION_ERP / build-deploy (push) Successful in 2m46s
User feedback: 7 group Ct_<Code> (HĐ Thầu phụ / Giao khoán / NCC / Dịch vụ / Mua bán / Nguyên tắc NCC / Nguyên tắc DV) trước đây expand tự do → sidebar dài lê thê khi user mở nhiều. Mỗi group nên độc lập (accordion): chỉ 1 group expand cùng lúc. ## Cách làm ### AccordionContext lifted to Layout - Layout maintain `expandedCtCode: string | null` state - React Context expose getter + setter cho MenuGroup - MenuGroup detect key `Ct_<Code>` qua regex `/^Ct_([^_]+)$/`: - Match → controlled mode: open = (expandedCtCode === code) - Toggle = setExpandedCtCode(open ? null : code) - Group khác (Hợp đồng top-level, Quy trình admin, ...) giữ behavior cũ (independent local useState) ### Auto-expand theo URL ?type= useEffect watch location.search: - `/my-contracts?type=5` → INT_TO_TYPE_CODE[5] = "MuaBan" → expand HĐ Mua bán - `/contracts/new?type=2` → expand HĐ Giao khoán - `/inbox?type=3` → expand HĐ Nhà cung cấp - URL không có ?type= → KHÔNG reset (giữ user-selected context) ### Visual: highlight active group Ct_ group đang accordion-open: `bg-slate-50 text-slate-900` (subtle tint để user biết group nào đang active trong 7 type). ## Build fe-user: tsc -b + vite build pass (1888 modules, 1.08MB JS, 380ms) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
React + TypeScript + Vite
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- @vitejs/plugin-react uses Oxc
- @vitejs/plugin-react-swc uses SWC
React Compiler
The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see this documentation.
Expanding the ESLint configuration
If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
export default defineConfig([
globalIgnores(['dist']),
{
files: ['**/*.{ts,tsx}'],
extends: [
// Other configs...
// Remove tseslint.configs.recommended and replace with this
tseslint.configs.recommendedTypeChecked,
// Alternatively, use this for stricter rules
tseslint.configs.strictTypeChecked,
// Optionally, add this for stylistic rules
tseslint.configs.stylisticTypeChecked,
// Other configs...
],
languageOptions: {
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: import.meta.dirname,
},
// other options...
},
},
])
You can also install eslint-plugin-react-x and eslint-plugin-react-dom for React-specific lint rules:
// eslint.config.js
import reactX from 'eslint-plugin-react-x'
import reactDom from 'eslint-plugin-react-dom'
export default defineConfig([
globalIgnores(['dist']),
{
files: ['**/*.{ts,tsx}'],
extends: [
// Other configs...
// Enable lint rules for React
reactX.configs['recommended-typescript'],
// Enable lint rules for React DOM
reactDom.configs.recommended,
],
languageOptions: {
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: import.meta.dirname,
},
// other options...
},
},
])