diff options
author | Hailey <me@haileyok.com> | 2024-05-09 10:04:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-09 10:04:05 -0700 |
commit | 17e3b946cb5fb59f5d8cd115906daa38ca8a8124 (patch) | |
tree | 59a28bc365b3154ac073aa03a3afa2517c93b1a6 /src/lib/routes/types.ts | |
parent | 13418455376bb6573c45f5fb4a023cab34d40d3e (diff) | |
download | voidsky-17e3b946cb5fb59f5d8cd115906daa38ca8a8124.tar.zst |
Handle push notifications for DMs (#3895)
* add some better handling for notifications prep merge move `useNotificationsListener` into shell progress better structure only show messages notifications while using app if it is the current account progress only emit on native current chat emitter only show alerts for the current chat type add logs setup handlers * remove event emitter * just needs cleanup * oops * remove unnecessary `queryClient` param * few fixes * cleanup * nit * remove folds * remove comment * simplify if * add back invalidate * comment out other navigations for now * rename type * handle various navigation cases * push to conversation from notification * update badge in all cases except `chat-message` * ensure no duplicate notifications * rm unused `animationOnReplace` * revert to using `goBack` in the conversation header * add todo comment
Diffstat (limited to 'src/lib/routes/types.ts')
-rw-r--r-- | src/lib/routes/types.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts index f7e8544b8..31133cb1b 100644 --- a/src/lib/routes/types.ts +++ b/src/lib/routes/types.ts @@ -72,7 +72,7 @@ export type MyProfileTabNavigatorParams = CommonNavigatorParams & { } export type MessagesTabNavigatorParams = CommonNavigatorParams & { - Messages: undefined + Messages: {pushToConversation?: string} } export type FlatNavigatorParams = CommonNavigatorParams & { @@ -81,7 +81,7 @@ export type FlatNavigatorParams = CommonNavigatorParams & { Feeds: undefined Notifications: undefined Hashtag: {tag: string; author?: string} - Messages: undefined + Messages: {pushToConversation?: string} } export type AllNavigatorParams = CommonNavigatorParams & { |