-
Notifications
You must be signed in to change notification settings - Fork 9
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
React Native - Add Settings Stack #347
Commits on Aug 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 62d1868 - Browse repository at this point
Copy the full SHA 62d1868View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4220c07 - Browse repository at this point
Copy the full SHA 4220c07View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b732d1 - Browse repository at this point
Copy the full SHA 2b732d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 41404f0 - Browse repository at this point
Copy the full SHA 41404f0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 166e0ed - Browse repository at this point
Copy the full SHA 166e0edView commit details -
Configuration menu - View commit details
-
Copy full SHA for c75605b - Browse repository at this point
Copy the full SHA c75605bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7c1e91e - Browse repository at this point
Copy the full SHA 7c1e91eView commit details -
Configuration menu - View commit details
-
Copy full SHA for ac95488 - Browse repository at this point
Copy the full SHA ac95488View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8882e57 - Browse repository at this point
Copy the full SHA 8882e57View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8d653d4 - Browse repository at this point
Copy the full SHA 8d653d4View commit details
Commits on Aug 29, 2024
-
Configuration menu - View commit details
-
Copy full SHA for de537a9 - Browse repository at this point
Copy the full SHA de537a9View commit details -
Configuration menu - View commit details
-
Copy full SHA for d3d4142 - Browse repository at this point
Copy the full SHA d3d4142View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0403034 - Browse repository at this point
Copy the full SHA 0403034View commit details -
Configuration menu - View commit details
-
Copy full SHA for a2a40e7 - Browse repository at this point
Copy the full SHA a2a40e7View commit details -
feat: Update user API to support partial updates
This commit updates the user API to support partial updates. It adds a new custom service call `patchUser` that allows updating specific fields of a user object instead of sending the entire object. The `partialUserShape` is introduced to define the shape of the partial user object. Code changes: - Added `partialUserShape` to `user/models.ts` - Added `patchUser` custom service call to `userApi` in `user/api.ts`
Configuration menu - View commit details
-
Copy full SHA for 4146161 - Browse repository at this point
Copy the full SHA 4146161View commit details -
Configuration menu - View commit details
-
Copy full SHA for 09a5bc8 - Browse repository at this point
Copy the full SHA 09a5bc8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 933b8e2 - Browse repository at this point
Copy the full SHA 933b8e2View commit details -
feat: Add fullName field to userShape
This commit adds the fullName field to the userShape in the models.ts file. This field is required to store the full name of the user. Code changes: - Added fullName field to userShape in models.ts
Configuration menu - View commit details
-
Copy full SHA for eb9f51d - Browse repository at this point
Copy the full SHA eb9f51dView commit details -
feat: Update Terms of Service and Privacy Policy links
This commit updates the links for the Terms of Service and Privacy Policy in the main settings screen. The new links point to the correct URLs provided by the client. Code changes: - Updated link for Terms of Service in main-settings.tsx - Updated link for Privacy Policy in main-settings.tsx
Configuration menu - View commit details
-
Copy full SHA for c0ca3dc - Browse repository at this point
Copy the full SHA c0ca3dcView commit details -
feat: Update StatusBar style in App.tsx
This commit updates the StatusBar style in the App.tsx file to use the "dark" theme. This change ensures that the status bar text is displayed in dark color, providing better visibility for the user. Code changes: - Updated StatusBar style to "dark" in App.tsx
Configuration menu - View commit details
-
Copy full SHA for 49cc454 - Browse repository at this point
Copy the full SHA 49cc454View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7a9b1ed - Browse repository at this point
Copy the full SHA 7a9b1edView commit details -
feat: Improve save button behavior in EditProfile screen
This commit updates the save button behavior in the EditProfile screen. The button is now disabled when there are unsaved changes and the form is invalid. This ensures that users cannot save invalid data. Code changes: - Updated save button behavior in EditProfile screen
Configuration menu - View commit details
-
Copy full SHA for 5a2d197 - Browse repository at this point
Copy the full SHA 5a2d197View commit details -
feat: Add DestroyModelMixin to UserViewSet
This commit adds the `DestroyModelMixin` to the `UserViewSet` in the `views.py` file. This mixin allows for the deletion of user objects in the API. Code changes: - Added `DestroyModelMixin` to `UserViewSet` in `views.py`
Configuration menu - View commit details
-
Copy full SHA for e1db08b - Browse repository at this point
Copy the full SHA e1db08bView commit details -
feat: Update dashboard screen layout and add settings button
This commit updates the layout of the dashboard screen in the `dashboard.tsx` file. It adds a settings button to the top right corner of the screen, allowing users to navigate to the settings page. The button is implemented using the `BounceableWind` component and the `Ionicons` icon library. Code changes: - Updated layout of the dashboard screen - Added settings button to the top right corner
Configuration menu - View commit details
-
Copy full SHA for fd08597 - Browse repository at this point
Copy the full SHA fd08597View commit details -
feat: Add warning alert for account deletion in EditProfile screen
This commit adds a warning alert in the EditProfile screen to inform users about the permanent nature of account deletion. The alert provides a cancel option and a delete option, allowing users to make an informed decision. The alert is triggered when the user taps on the delete button. Code changes: - Added warning alert for account deletion in EditProfile screen
Configuration menu - View commit details
-
Copy full SHA for 5b1a4f8 - Browse repository at this point
Copy the full SHA 5b1a4f8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 89d2580 - Browse repository at this point
Copy the full SHA 89d2580View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8355dbe - Browse repository at this point
Copy the full SHA 8355dbeView commit details
Commits on Aug 30, 2024
-
feat: Remove unused patchUser service call in user API
The patchUser service call in the user API is no longer used and can be safely removed. This commit removes the patchUser service call from the user API file. Code changes: - Removed patchUser service call in user API
Configuration menu - View commit details
-
Copy full SHA for 65974df - Browse repository at this point
Copy the full SHA 65974dfView commit details -
feat: Add useAuth hook to EditProfile screen
This commit adds the useAuth hook to the EditProfile screen in order to retrieve the userId. The userId is used to retrieve the user's full name and display it in the EditProfile screen. This improves the user experience by pre-filling the full name input field with the user's current full name. Code changes: - Added useAuth hook to retrieve userId - Pre-filled full name input field with user's current full name
Configuration menu - View commit details
-
Copy full SHA for 411bfd6 - Browse repository at this point
Copy the full SHA 411bfd6View commit details -
feat: Update user hooks import in user service
This commit updates the import statements for user hooks in the user service file. The import paths have been changed to reflect the new file structure. This ensures that the user hooks are correctly imported and used in the user service. Code changes: - Updated import paths for user hooks in user service
Configuration menu - View commit details
-
Copy full SHA for 4724cc8 - Browse repository at this point
Copy the full SHA 4724cc8View commit details