Update counter on push notifications

This commit is contained in:
Eduard Urbach 2018-11-07 17:05:13 +09:00
parent 79da84956e
commit fe33054f31

View File

@ -67,27 +67,31 @@ export default class ServiceWorkerManager {
} }
onMessage(evt: MessageEvent) { onMessage(evt: MessageEvent) {
// let message = JSON.parse(evt.data) let message = JSON.parse(evt.data)
// switch(message.type) { switch(message.type) {
// case "new content": case "new notification":
// if(message.url.includes("/_/")) { this.arn.notificationManager.update()
// // Content reload break
// this.arn.contentLoadedActions.then(() => {
// this.arn.reloadContent(true)
// })
// } else {
// // Full page reload
// this.arn.contentLoadedActions.then(() => {
// this.arn.reloadPage()
// })
// }
// break // case "new content":
// if(message.url.includes("/_/")) {
// // Content reload
// this.arn.contentLoadedActions.then(() => {
// this.arn.reloadContent(true)
// })
// } else {
// // Full page reload
// this.arn.contentLoadedActions.then(() => {
// this.arn.reloadPage()
// })
// }
// // case "offline": // break
// // this.arn.statusMessage.showError("You are viewing an offline version of the site now.")
// // break // case "offline":
// } // this.arn.statusMessage.showError("You are viewing an offline version of the site now.")
// break
}
} }
} }