-
Notifications
You must be signed in to change notification settings - Fork 13
Updated project version and added toolkit #27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
- Introduced UserDefault interface and user slice for Redux state management. - Created user slice with actions for setting user and handling logout. - Combined reducers in a new index file for slices. - Added thunk for fetching user data and handling authentication. - Removed unused localization dependencies from package.json and yarn.lock. - Cleaned up tsconfig paths to reflect new structure.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the project version and adds the toolkit by upgrading dependencies, reorganizing module structure, and migrating iOS/Android and Redux code to modern implementations. Key changes include:
- Updating dependency versions (e.g. React Native, React, navigation, etc.) and build configuration for both iOS and Android.
- Restructuring modules and replacing legacy reducers/sagas with Redux Toolkit slices and async thunks.
- Migrating iOS native code to Swift (removing deprecated Obj-C files) and removing obsolete test targets.
Reviewed Changes
Copilot reviewed 69 out of 75 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| postinstall | Rearranged script commands to avoid duplicate execution. |
| package.json | Upgraded dependency versions and updated devDependencies. |
| modules.json | Reorganized module list with new entries for Hooks, Thunks, etc. |
| ios files (AppDelegate, pbxproj, etc.) | Migrated to Swift implementation and removed obsolete test files. |
| android files (gradlew, build.gradle, etc.) | Updated gradle wrapper properties and build configurations. |
| App/*** files (Slices, Thunks, Stores, etc.) | Refactored Redux logic using Redux Toolkit best practices. |
Comments suppressed due to low confidence (1)
App/Slices/UserSlice.ts:13
- [nitpick] The property name 'abc' in the payload is ambiguous; consider renaming it to a more descriptive name that reflects its actual meaning.
setUser: (state, action: PayloadAction<{ abc: string }>) => {
No description provided.