2018-03-03 23:15:50 +01:00
|
|
|
import { setFavicon } from '../../_utils/setFavicon'
|
|
|
|
import { scheduleIdleTask } from '../../_utils/scheduleIdleTask'
|
2018-02-16 17:59:44 +01:00
|
|
|
|
2018-02-21 06:29:59 +01:00
|
|
|
let currentFaviconHasNotifications = false
|
|
|
|
|
2018-02-16 17:59:44 +01:00
|
|
|
export function notificationObservers (store) {
|
|
|
|
store.observe('hasNotifications', hasNotifications => {
|
|
|
|
if (!process.browser) {
|
|
|
|
return
|
|
|
|
}
|
2018-02-21 06:29:59 +01:00
|
|
|
if (currentFaviconHasNotifications === hasNotifications) {
|
|
|
|
return
|
|
|
|
}
|
2018-02-16 17:59:44 +01:00
|
|
|
scheduleIdleTask(() => {
|
2018-02-21 06:29:59 +01:00
|
|
|
setFavicon(hasNotifications ? '/favicon-alert.png' : '/favicon.png')
|
|
|
|
currentFaviconHasNotifications = !currentFaviconHasNotifications
|
2018-02-16 17:59:44 +01:00
|
|
|
})
|
|
|
|
})
|
2018-02-16 18:01:03 +01:00
|
|
|
}
|