fix: iOS check, proper AMOUNT count on iOS (#1796)

This commit is contained in:
soxa 2025-01-05 02:18:15 +01:00 committed by GitHub
parent 34175babb2
commit a04647d304
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 18 additions and 9 deletions

View File

@ -158,9 +158,10 @@ export const ServiceWorkerProvider = ({ children }) => {
// since (a lot of) browsers don't support the pushsubscriptionchange event, // since (a lot of) browsers don't support the pushsubscriptionchange event,
// we sync with server manually by checking on every page reload if the push subscription changed. // we sync with server manually by checking on every page reload if the push subscription changed.
// see https://medium.com/@madridserginho/how-to-handle-webpush-api-pushsubscriptionchange-event-in-modern-browsers-6e47840d756f // see https://medium.com/@madridserginho/how-to-handle-webpush-api-pushsubscriptionchange-event-in-modern-browsers-6e47840d756f
navigator?.serviceWorker?.controller?.postMessage?.({ action: STORE_OS, os: detectOS() })
logger.info('sent STORE_OS to service worker: ', detectOS())
navigator?.serviceWorker?.controller?.postMessage?.({ action: SYNC_SUBSCRIPTION }) navigator?.serviceWorker?.controller?.postMessage?.({ action: SYNC_SUBSCRIPTION })
logger.info('sent SYNC_SUBSCRIPTION to service worker') logger.info('sent SYNC_SUBSCRIPTION to service worker')
navigator?.serviceWorker?.controller?.postMessage?.({ action: STORE_OS, os: detectOS() })
}, [registration, permission.notification]) }, [registration, permission.notification])
const contextValue = useMemo(() => ({ const contextValue = useMemo(() => ({

View File

@ -13,7 +13,12 @@ let actionChannelPort
// operating system. the value will be received via a STORE_OS message from app since service workers don't have access to window.navigator // operating system. the value will be received via a STORE_OS message from app since service workers don't have access to window.navigator
let os = '' let os = ''
const iOS = () => os === 'iOS' async function getOS () {
if (!os) {
os = await storage.getItem('os') || ''
}
return os
}
// current push notification count for badge purposes // current push notification count for badge purposes
let activeCount = 0 let activeCount = 0
@ -28,6 +33,7 @@ export function onPush (sw) {
if (!payload) return if (!payload) return
const { tag } = payload.options const { tag } = payload.options
event.waitUntil((async () => { event.waitUntil((async () => {
const iOS = await getOS() === 'iOS'
// generate random ID for every incoming push for better tracing in logs // generate random ID for every incoming push for better tracing in logs
const nid = crypto.randomUUID() const nid = crypto.randomUUID()
log(`[sw:push] ${nid} - received notification with tag ${tag}`) log(`[sw:push] ${nid} - received notification with tag ${tag}`)
@ -56,7 +62,7 @@ export function onPush (sw) {
// close them and then we display the notification. // close them and then we display the notification.
const notifications = await sw.registration.getNotifications({ tag }) const notifications = await sw.registration.getNotifications({ tag })
// we only close notifications manually on iOS because we don't want to degrade android UX just because iOS is behind in their support. // we only close notifications manually on iOS because we don't want to degrade android UX just because iOS is behind in their support.
if (iOS()) { if (iOS) {
log(`[sw:push] ${nid} - closing existing notifications`) log(`[sw:push] ${nid} - closing existing notifications`)
notifications.filter(({ tag: nTag }) => nTag === tag).forEach(n => n.close()) notifications.filter(({ tag: nTag }) => nTag === tag).forEach(n => n.close())
} }
@ -84,7 +90,7 @@ export function onPush (sw) {
// return null // return null
} }
return await mergeAndShowNotification(sw, payload, notifications, tag, nid) return await mergeAndShowNotification(sw, payload, notifications, tag, nid, iOS)
})()) })())
} }
} }
@ -94,7 +100,7 @@ export function onPush (sw) {
const immediatelyShowNotification = (tag) => const immediatelyShowNotification = (tag) =>
!tag || ['TIP', 'FORWARDEDTIP', 'EARN', 'STREAK', 'TERRITORY_TRANSFER'].includes(tag.split('-')[0]) !tag || ['TIP', 'FORWARDEDTIP', 'EARN', 'STREAK', 'TERRITORY_TRANSFER'].includes(tag.split('-')[0])
const mergeAndShowNotification = async (sw, payload, currentNotifications, tag, nid) => { const mergeAndShowNotification = async (sw, payload, currentNotifications, tag, nid, iOS) => {
// sanity check // sanity check
const otherTagNotifications = currentNotifications.filter(({ tag: nTag }) => nTag !== tag) const otherTagNotifications = currentNotifications.filter(({ tag: nTag }) => nTag !== tag)
if (otherTagNotifications.length > 0) { if (otherTagNotifications.length > 0) {
@ -119,7 +125,7 @@ const mergeAndShowNotification = async (sw, payload, currentNotifications, tag,
const SUM_SATS_TAGS = ['DEPOSIT', 'WITHDRAWAL'] const SUM_SATS_TAGS = ['DEPOSIT', 'WITHDRAWAL']
// this should reflect the amount of notifications that were already merged before // this should reflect the amount of notifications that were already merged before
let initialAmount = currentNotifications[0]?.data?.amount || 1 let initialAmount = currentNotifications[0]?.data?.amount || 1
if (iOS()) initialAmount = 1 if (iOS) initialAmount = 1
log(`[sw:push] ${nid} - initial amount: ${initialAmount}`) log(`[sw:push] ${nid} - initial amount: ${initialAmount}`)
const mergedPayload = currentNotifications.reduce((acc, { data }) => { const mergedPayload = currentNotifications.reduce((acc, { data }) => {
let newAmount, newSats let newAmount, newSats
@ -165,7 +171,7 @@ const mergeAndShowNotification = async (sw, payload, currentNotifications, tag,
// close all current notifications before showing new one to "merge" notifications // close all current notifications before showing new one to "merge" notifications
// we only do this on iOS because we don't want to degrade android UX just because iOS is behind in their support. // we only do this on iOS because we don't want to degrade android UX just because iOS is behind in their support.
if (iOS()) { if (iOS) {
log(`[sw:push] ${nid} - closing existing notifications`) log(`[sw:push] ${nid} - closing existing notifications`)
currentNotifications.forEach(n => n.close()) currentNotifications.forEach(n => n.close())
} }
@ -249,19 +255,21 @@ export function onPushSubscriptionChange (sw) {
} }
export function onMessage (sw) { export function onMessage (sw) {
return (event) => { return async (event) => {
if (event.data.action === ACTION_PORT) { if (event.data.action === ACTION_PORT) {
actionChannelPort = event.ports[0] actionChannelPort = event.ports[0]
return return
} }
if (event.data.action === STORE_OS) { if (event.data.action === STORE_OS) {
os = event.data.os event.waitUntil(storage.setItem('os', event.data.os))
return return
} }
if (event.data.action === MESSAGE_PORT) { if (event.data.action === MESSAGE_PORT) {
messageChannelPort = event.ports[0] messageChannelPort = event.ports[0]
} }
log('[sw:message] received message', 'info', { action: event.data.action }) log('[sw:message] received message', 'info', { action: event.data.action })
const currentOS = await getOS()
log('[sw:message] stored os: ' + currentOS, 'info', { action: event.data.action })
if (event.data.action === STORE_SUBSCRIPTION) { if (event.data.action === STORE_SUBSCRIPTION) {
log('[sw:message] storing subscription in IndexedDB', 'info', { endpoint: event.data.subscription.endpoint }) log('[sw:message] storing subscription in IndexedDB', 'info', { endpoint: event.data.subscription.endpoint })
return event.waitUntil(storage.setItem('subscription', { ...event.data.subscription, swVersion: 2 })) return event.waitUntil(storage.setItem('subscription', { ...event.data.subscription, swVersion: 2 }))