Use the proper logic on iOS to increment the badge (#4233)
parent
c58aedf050
commit
480a40862f
|
@ -1,4 +1,5 @@
|
||||||
import UserNotifications
|
import UserNotifications
|
||||||
|
import UIKit
|
||||||
|
|
||||||
let APP_GROUP = "group.app.bsky"
|
let APP_GROUP = "group.app.bsky"
|
||||||
|
|
||||||
|
@ -31,7 +32,12 @@ class NotificationService: UNNotificationServiceExtension {
|
||||||
}
|
}
|
||||||
|
|
||||||
func mutateWithBadge(_ content: UNMutableNotificationContent) {
|
func mutateWithBadge(_ content: UNMutableNotificationContent) {
|
||||||
content.badge = 1
|
var count = prefs?.integer(forKey: "badgeCount") ?? 0
|
||||||
|
count += 1
|
||||||
|
|
||||||
|
// Set the new badge number for the notification, then store that value for using later
|
||||||
|
content.badge = NSNumber(value: count)
|
||||||
|
prefs?.setValue(count, forKey: "badgeCount")
|
||||||
}
|
}
|
||||||
|
|
||||||
func mutateWithChatMessage(_ content: UNMutableNotificationContent) {
|
func mutateWithChatMessage(_ content: UNMutableNotificationContent) {
|
||||||
|
|
|
@ -66,5 +66,9 @@ class ExpoBackgroundNotificationHandlerModule : Module() {
|
||||||
AsyncFunction("removeManyFromStringArrayAsync") { forKey: String, strings: Array<String> ->
|
AsyncFunction("removeManyFromStringArrayAsync") { forKey: String, strings: Array<String> ->
|
||||||
NotificationPrefs(appContext.reactContext).removeManyFromStringArray(forKey, strings)
|
NotificationPrefs(appContext.reactContext).removeManyFromStringArray(forKey, strings)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
AsyncFunction("setBadgeCountAsync") { _: Int ->
|
||||||
|
// This does nothing on Android
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,8 @@ let DEFAULTS: [String:Any] = [
|
||||||
"playSoundQuote": false,
|
"playSoundQuote": false,
|
||||||
"playSoundReply": false,
|
"playSoundReply": false,
|
||||||
"playSoundRepost": false,
|
"playSoundRepost": false,
|
||||||
"mutedThreads": [:] as! [String:[String]]
|
"mutedThreads": [:] as! [String:[String]],
|
||||||
|
"badgeCount": 0,
|
||||||
]
|
]
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -112,5 +113,9 @@ public class ExpoBackgroundNotificationHandlerModule: Module {
|
||||||
userDefaults?.setValue(curr, forKey: forKey)
|
userDefaults?.setValue(curr, forKey: forKey)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
AsyncFunction("setBadgeCountAsync") { (count: Int) in
|
||||||
|
userDefaults?.setValue(count, forKey: "badgeCount")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,6 +31,7 @@ export type ExpoBackgroundNotificationHandlerModule = {
|
||||||
forKey: keyof BackgroundNotificationHandlerPreferences,
|
forKey: keyof BackgroundNotificationHandlerPreferences,
|
||||||
value: string[],
|
value: string[],
|
||||||
) => Promise<void>
|
) => Promise<void>
|
||||||
|
setBadgeCountAsync: (count: number) => Promise<void>
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO there are more preferences in the native code, however they have not been added here yet.
|
// TODO there are more preferences in the native code, however they have not been added here yet.
|
||||||
|
|
|
@ -24,4 +24,5 @@ export const BackgroundNotificationHandler = {
|
||||||
removeFromStringArrayAsync: async (_: string, __: string) => {},
|
removeFromStringArrayAsync: async (_: string, __: string) => {},
|
||||||
addManyToStringArrayAsync: async (_: string, __: string[]) => {},
|
addManyToStringArrayAsync: async (_: string, __: string[]) => {},
|
||||||
removeManyFromStringArrayAsync: async (_: string, __: string[]) => {},
|
removeManyFromStringArrayAsync: async (_: string, __: string[]) => {},
|
||||||
|
setBadgeCountAsync: async (_: number) => {},
|
||||||
} as ExpoBackgroundNotificationHandlerModule
|
} as ExpoBackgroundNotificationHandlerModule
|
||||||
|
|
|
@ -7,6 +7,7 @@ import {logger} from '#/logger'
|
||||||
import {SessionAccount, useAgent, useSession} from '#/state/session'
|
import {SessionAccount, useAgent, useSession} from '#/state/session'
|
||||||
import {logEvent, useGate} from 'lib/statsig/statsig'
|
import {logEvent, useGate} from 'lib/statsig/statsig'
|
||||||
import {devicePlatform, isNative} from 'platform/detection'
|
import {devicePlatform, isNative} from 'platform/detection'
|
||||||
|
import BackgroundNotificationHandler from '../../../modules/expo-background-notification-handler'
|
||||||
|
|
||||||
const SERVICE_DID = (serviceUrl?: string) =>
|
const SERVICE_DID = (serviceUrl?: string) =>
|
||||||
serviceUrl?.includes('staging')
|
serviceUrl?.includes('staging')
|
||||||
|
@ -108,19 +109,20 @@ export function useRequestNotificationsPermission() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function decrementBadgeCount(by: number | 'reset' = 1) {
|
export async function decrementBadgeCount(by: number) {
|
||||||
if (!isNative) return
|
if (!isNative) return
|
||||||
|
|
||||||
const currCount = await getBadgeCountAsync()
|
let count = await getBadgeCountAsync()
|
||||||
|
count -= by
|
||||||
if (by === 'reset') {
|
if (count < 0) {
|
||||||
await setBadgeCountAsync(0)
|
count = 0
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let newCount = currCount - by
|
await BackgroundNotificationHandler.setBadgeCountAsync(count)
|
||||||
if (newCount < 0) {
|
await setBadgeCountAsync(count)
|
||||||
newCount = 0
|
}
|
||||||
}
|
|
||||||
await setBadgeCountAsync(newCount)
|
export async function resetBadgeCount() {
|
||||||
|
await BackgroundNotificationHandler.setBadgeCountAsync(0)
|
||||||
|
await setBadgeCountAsync(0)
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ import BroadcastChannel from '#/lib/broadcast'
|
||||||
import {logger} from '#/logger'
|
import {logger} from '#/logger'
|
||||||
import {useMutedThreads} from '#/state/muted-threads'
|
import {useMutedThreads} from '#/state/muted-threads'
|
||||||
import {useAgent, useSession} from '#/state/session'
|
import {useAgent, useSession} from '#/state/session'
|
||||||
import {decrementBadgeCount} from 'lib/notifications/notifications'
|
import {resetBadgeCount} from 'lib/notifications/notifications'
|
||||||
import {useModerationOpts} from '../../preferences/moderation-opts'
|
import {useModerationOpts} from '../../preferences/moderation-opts'
|
||||||
import {truncateAndInvalidate} from '../util'
|
import {truncateAndInvalidate} from '../util'
|
||||||
import {RQKEY as RQKEY_NOTIFS} from './feed'
|
import {RQKEY as RQKEY_NOTIFS} from './feed'
|
||||||
|
@ -119,7 +119,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) {
|
||||||
// update & broadcast
|
// update & broadcast
|
||||||
setNumUnread('')
|
setNumUnread('')
|
||||||
broadcast.postMessage({event: ''})
|
broadcast.postMessage({event: ''})
|
||||||
decrementBadgeCount('reset')
|
resetBadgeCount()
|
||||||
},
|
},
|
||||||
|
|
||||||
async checkUnread({
|
async checkUnread({
|
||||||
|
|
Loading…
Reference in New Issue