|
| 1 | +# Project Structure Migration Guide |
| 2 | + |
| 3 | +## Directory Structure Changes |
| 4 | + |
| 5 | +We've restructured the project to follow a more organized, feature-based architecture. Here's a summary of what changed: |
| 6 | + |
| 7 | +### Feature-based Organization |
| 8 | + |
| 9 | +Files are now organized by feature, with each feature containing its own: |
| 10 | +- Components |
| 11 | +- Hooks |
| 12 | +- Context |
| 13 | +- API calls |
| 14 | +- Types (when feature-specific) |
| 15 | + |
| 16 | +### New Directory Structure |
| 17 | + |
| 18 | +``` |
| 19 | +src/ |
| 20 | +├── assets/ # Images and static assets |
| 21 | +├── components/ # Shared UI components |
| 22 | +│ ├── ui/ # Base UI components (buttons, inputs, etc.) |
| 23 | +│ ├── modals/ # Modal dialogs |
| 24 | +│ └── shared/ # Other shared components |
| 25 | +├── config/ # Application configuration |
| 26 | +├── data/ # Static data files (JSON, etc.) |
| 27 | +├── features/ # Feature-specific code |
| 28 | +│ ├── auth/ # Authentication feature |
| 29 | +│ ├── email/ # Email-related functionality |
| 30 | +│ ├── questions/ # Questions management |
| 31 | +│ ├── statements/ # Statements management |
| 32 | +│ └── wizard/ # Statement wizard feature |
| 33 | +├── layouts/ # Layout components |
| 34 | +├── lib/ # Shared utilities |
| 35 | +│ └── utils/ # Utility functions |
| 36 | +├── providers/ # Context providers |
| 37 | +├── routes/ # Route definitions |
| 38 | +└── types/ # TypeScript type definitions |
| 39 | +``` |
| 40 | + |
| 41 | +## Import Updates Required |
| 42 | + |
| 43 | +Due to the restructuring, imports in files need to be updated. Here are the general patterns to follow: |
| 44 | + |
| 45 | +### Old vs New Import Paths |
| 46 | + |
| 47 | +| Old Import Path | New Import Path | |
| 48 | +|-----------------|-----------------| |
| 49 | +| `../components/ui/...` | `../components/ui/...` (unchanged) | |
| 50 | +| `../components/Header` | `../layouts/components/Header` | |
| 51 | +| `../components/MainPage` | `../layouts/components/MainPage` | |
| 52 | +| `../context/AuthContext` | `../features/auth/AuthContext` | |
| 53 | +| `../context/AuthProvider` | `../features/auth/AuthProvider` | |
| 54 | +| `../context/EntriesContext` | `../features/statements/context/EntriesContext` | |
| 55 | +| `../context/EntriesProvider` | `../features/statements/context/EntriesProvider` | |
| 56 | +| `../context/QuestionsContext` | `../providers/QuestionsContext` | |
| 57 | +| `../context/QuestionsProvider` | `../providers/QuestionsProvider` | |
| 58 | +| `../hooks/useAuth` | `../features/auth/hooks/useAuth` | |
| 59 | +| `../hooks/useEntries` | `../features/statements/hooks/useEntries` | |
| 60 | +| `../hooks/useQuestions` | `../features/questions/hooks/useQuestions` | |
| 61 | +| `../api/authApi` | `../features/auth/api/authApi` | |
| 62 | +| `../api/entriesApi` | `../features/statements/api/entriesApi` | |
| 63 | +| `../api/emailApi` | `../features/email/api/emailApi` | |
| 64 | +| `../utils/...` | `../lib/utils/...` | |
| 65 | +| `../data/...` | `../data/...` | |
| 66 | + |
| 67 | +## Next Steps |
| 68 | + |
| 69 | +1. Update imports in all files |
| 70 | +2. Run tests to ensure the restructuring doesn't break functionality |
| 71 | +3. Update build scripts if needed to accommodate the new structure |
| 72 | + |
| 73 | +This restructuring will make the codebase more maintainable, easier to navigate, and better prepared for future growth. |
0 commit comments