Updated project version and added toolkit#27
Merged
thejayvaghela merged 8 commits intoatliq:masterfrom Jun 26, 2025
Merged
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.
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 }>) => {
thejayvaghela
approved these changes
Jun 26, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.