У меня есть уведомление об отправке из облачной функции, если узел успешно изменяется в базе данных, но номер значка всегда отображается (1), даже если я отправляю несколько уведомлений.
мой код в облачной функции (машинопись):
import * as functions from 'firebase-functions';
import admin = require('firebase-admin');
admin.initializeApp();
exports.sendPushNotificationToUpdate = functions.database.ref('/orders/{Id}/OrderStatus').onWrite((snapshot, context) => {
let status = snapshot.after.val();
console.log('status : ' + status);
if (status != 'Done' && status != 'Rejected') {
return null;
}
else {
const Id = context.params.Id;
console.log('id : ' + Id);
return admin.database().ref('/orders/' + Id).once('value').then(function (snap) {
const tokenId = snap.val().tokenId;
console.log('tokenId : ' + snap.val().tokenId);
let payload = {
notification: {
title: 'my App',
body: '',
badge: '1',
sound: 'default',
}
}
if (status == 'Done') {
payload = {
notification: {
title: 'My App',
body: 'your order is done',
badge: '1',
sound: 'default',
}
}
}
else if (status == 'Rejected') {
payload = {
notification: {
title: 'My App',
body: 'your order is rejected',
badge: '1',
sound: 'default',
}
}
}
return admin.messaging().sendToDevice(tokenId, payload).then(response => {
console.log('update respose');
console.log(response);
});
});
}
});
мой код в Xcode (swift):
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
let userInfo = response.notification.request.content.userInfo
print("tap on on forground app",userInfo)
Messaging.messaging().appDidReceiveMessage(userInfo)
let content = response.notification.request.content
let badgeNumber = content.badge as! Int
UIApplication.shared.applicationIconBadgeNumber = badgeNumber + 1
completionHandler()
let actionIdentifier = response.actionIdentifier
switch actionIdentifier {
case UNNotificationDismissActionIdentifier: // Notification was dismissed by user
completionHandler()
case UNNotificationDefaultActionIdentifier: // App was opened from notification
completionHandler()
default:
completionHandler()
}
}
мой код просто отлично работает и выполняет все работы, но номер значка остается в одной любой помощи, что будет здорово, спасибо.