DB 항목이 변경 될 때마다 사용자 푸시 알림을 보내는 응용 프로그램이 있습니다. 그러나 문제는 알림을 보낼 때마다 알림 서랍에 새 항목을 만드는 것입니다. 하지만 내가하고 싶은 일은 이러한 알림을 쌓거나 그룹화하여 "9 개의 항목이 변경되었습니다"와 같은 항목이 하나만있을 것입니다.Ionic 3 phonegap push plugin firebase 알림을 스택하는 방법
Ionic 3, phonegap push plugin 및 firebase로 어떻게 할 수 있습니까?
const options: PushOptions = {
android: {
senderID: SENDER_ID
},
ios: {
alert: 'true',
badge: true,
sound: 'false'
},
windows: {},
browser: {
pushServiceURL: 'http://push.api.phonegap.com/v1/push'
}
},
pushObject: PushObject = this.push.init(options);
pushObject.on('registration').subscribe((registration: any) => {
this.afDatabase.list('/users')
.update(`/${user.uid}/devices/${registration.registrationId}/`, {isKept: true});
});
pushObject.on('error').subscribe(error => alert('Error with Push plugin' + JSON.stringify(error)));
그리고 내가이 중포 기지 기능에 있습니다 : : 드디어 발견했습니다
const functions = require('firebase-functions');
const admin = require('firebase-admin');
const _ = require('lodash');
admin.initializeApp(functions.config().firebase);
exports.onItemsListItemAdd = functions.database.ref('/items-list/{item_id}').onCreate(event => {
let payload = {
notification: {
title: 'Items list',
body: `Added: ${event.data.val().itemName} [${event.data.val().itemNumber}]`,
icon: 'default'
}
};
return sendToDevices(payload);
});
exports.onItemsListItemUpdate = functions.database.ref('/items-list/{item_id}').onUpdate(event => {
let payload = {
notification: {
title: 'Items list',
body: `Updated: ${event.data.val().itemName} [${event.data.val().itemNumber}]`,
icon: 'default'
}
};
return sendToDevices(payload);
});
exports.onItemsListItemDelete = functions.database.ref('/items-list/{item_id}').onDelete(event => {
let payload = {
notification: {
title: 'Items list',
body: `Deleted: ${event.data.previous.val().itemName} [${event.data.previous.val().itemNumber}]`,
icon: 'default'
}
};
return sendToDevices(payload);
});
function sendToDevices(payload) {
const deviceTokens = admin.database().ref('/users').once('value');
return deviceTokens.then(allTokens => {
if (allTokens.val()) {
// Listing all tokens.
const tokens = _(allTokens.val())
.mapValues(user => user.devices)
.values()
.map(device => Object.keys(device))
.flatten()
.value();
// Send notifications to all tokens.
return admin.messaging().sendToDevice(tokens, payload).then(response => {
// For each message check if there was an error.
const tokensToRemove = [];
response.results.forEach((result, index) => {
const error = result.error;
if (error) {
console.error('Failure sending notification to', tokens[index], error);
// Cleanup the tokens who are not registered anymore.
if (error.code === 'messaging/invalid-registration-token' ||
error.code === 'messaging/registration-token-not-registered') {
tokensToRemove.push(allTokens.ref.child(tokens[index]).remove());
}
}
});
return Promise.all(tokensToRemove);
});
}
});
}