@@ -11,7 +11,7 @@ import { VStack } from "@/design-system/VStack"
11
11
import { useLogout } from "@/features/authentication/use-logout"
12
12
import {
13
13
canAskForNotificationsPermissions ,
14
- getPushNotificationsToken ,
14
+ getDevicePushNotificationsToken ,
15
15
registerPushNotifications ,
16
16
requestNotificationsPermissions ,
17
17
userHasGrantedNotificationsPermissions ,
@@ -178,7 +178,7 @@ function useShowDebugMenu() {
178
178
try {
179
179
await method ( )
180
180
} catch ( error ) {
181
- captureError ( error )
181
+ captureError ( new GenericError ( { error, additionalMessage : "Error showing logs menu" } ) )
182
182
}
183
183
}
184
184
} ,
@@ -244,7 +244,12 @@ function useShowDebugMenu() {
244
244
. join ( "\n" ) ,
245
245
)
246
246
} catch ( error ) {
247
- captureError ( error )
247
+ captureError (
248
+ new GenericError ( {
249
+ error,
250
+ additionalMessage : "Error checking notification permissions" ,
251
+ } ) ,
252
+ )
248
253
Alert . alert ( "Error" , "Failed to check notification permissions" )
249
254
}
250
255
} ,
@@ -254,7 +259,12 @@ function useShowDebugMenu() {
254
259
255
260
Alert . alert ( "Permission Request Result" , `Granted: ${ result . granted ? "YES" : "NO" } ` )
256
261
} catch ( error ) {
257
- captureError ( error )
262
+ captureError (
263
+ new GenericError ( {
264
+ error,
265
+ additionalMessage : "Error requesting notification permissions" ,
266
+ } ) ,
267
+ )
258
268
Alert . alert ( "Error" , "Failed to request notification permissions" )
259
269
}
260
270
} ,
@@ -278,15 +288,25 @@ function useShowDebugMenu() {
278
288
"Push notification registration process completed successfully." ,
279
289
)
280
290
} catch ( error ) {
281
- captureError ( error )
291
+ captureError (
292
+ new GenericError ( {
293
+ error,
294
+ additionalMessage : "Error registering for push notifications" ,
295
+ } ) ,
296
+ )
282
297
Alert . alert ( "Error" , "Failed to register for push notifications" )
283
298
}
284
299
} ,
285
300
} ,
286
301
] ,
287
302
)
288
303
} catch ( error ) {
289
- captureError ( error )
304
+ captureError (
305
+ new GenericError ( {
306
+ error,
307
+ additionalMessage : "Error registering for push notifications" ,
308
+ } ) ,
309
+ )
290
310
Alert . alert ( "Error" , "Failed to register for push notifications" )
291
311
}
292
312
} ,
@@ -314,13 +334,18 @@ function useShowDebugMenu() {
314
334
} ,
315
335
] )
316
336
} catch ( error ) {
317
- captureError ( error )
337
+ captureError (
338
+ new GenericError ( {
339
+ error,
340
+ additionalMessage : "Error getting badge count" ,
341
+ } ) ,
342
+ )
318
343
Alert . alert ( "Error" , "Failed to get badge count" )
319
344
}
320
345
} ,
321
346
"Get Device Token" : async ( ) => {
322
347
try {
323
- const token = await getPushNotificationsToken ( )
348
+ const token = await getDevicePushNotificationsToken ( )
324
349
Alert . alert ( "Device Token" , token || "No token available" , [
325
350
{
326
351
text : "Copy" ,
@@ -337,7 +362,12 @@ function useShowDebugMenu() {
337
362
} ,
338
363
] )
339
364
} catch ( error ) {
340
- captureError ( error )
365
+ captureError (
366
+ new GenericError ( {
367
+ error,
368
+ additionalMessage : "Error getting device token" ,
369
+ } ) ,
370
+ )
341
371
Alert . alert ( "Error" , "Failed to get device token. Make sure permissions are granted." )
342
372
}
343
373
} ,
@@ -357,7 +387,12 @@ function useShowDebugMenu() {
357
387
Alert . alert ( "Notification Categories" , categoryDetails )
358
388
}
359
389
} catch ( error ) {
360
- captureError ( error )
390
+ captureError (
391
+ new GenericError ( {
392
+ error,
393
+ additionalMessage : "Error getting notification categories" ,
394
+ } ) ,
395
+ )
361
396
Alert . alert ( "Error" , "Failed to get notification categories" )
362
397
}
363
398
} ,
@@ -373,7 +408,12 @@ function useShowDebugMenu() {
373
408
} )
374
409
Alert . alert ( "Notification Sent" , "Test notification has been scheduled" )
375
410
} catch ( error ) {
376
- captureError ( error )
411
+ captureError (
412
+ new GenericError ( {
413
+ error,
414
+ additionalMessage : "Error sending test notification" ,
415
+ } ) ,
416
+ )
377
417
Alert . alert ( "Error" , "Failed to schedule test notification" )
378
418
}
379
419
} ,
@@ -400,7 +440,12 @@ function useShowDebugMenu() {
400
440
try {
401
441
await method ( )
402
442
} catch ( error ) {
403
- captureError ( error )
443
+ captureError (
444
+ new GenericError ( {
445
+ error,
446
+ additionalMessage : "Error showing notifications menu" ,
447
+ } ) ,
448
+ )
404
449
}
405
450
}
406
451
} ,
0 commit comments