Push notification#53
Open
gloskull wants to merge 2 commits into
Open
Conversation
- Implement notification store with Zustand and persistence - Add permission handling and device token registration with Expo Notifications - Add notification preferences management in Settings UI - Implement mock adapter for backend registration and preference syncing - Update documentation with setup instructions and updated roadmap Co-authored-by: gloskull <189399494+gloskull@users.noreply.github.com>
…tion-4716709314577624623 Add push notification registration and preferences foundation
Author
|
Done with this issue. |
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.
This PR adds the foundation for push notifications in GuildPass Mobile.
Key changes:
Added expo-notifications and expo-device with SDK 50 compatible versions.
Created src/features/notifications/ with a store, hook, and adapter for notification management.
Integrated notification permission prompts and token registration.
Added a "Notifications" section in the Settings screen to manage category-based preferences (Role Changes, Access Grants, Membership Status).
Ensured preferences are persisted locally using Zustand's persist middleware and synced with a backend adapter (mocked for MVP).
Updated README.md with required Expo setup instructions.
Added unit tests for the new notification store and registration flow.
Closes #21