Hide initial desktop notifications spam when FE is opened and there's a lot of

unseen notifications.
This commit is contained in:
Henry Jameson 2018-08-20 19:58:49 +03:00
parent fa66385c5b
commit 9e78c64d5e
2 changed files with 12 additions and 1 deletions

View file

@ -30,6 +30,10 @@ const fetchAndUpdate = ({store, credentials, older = false}) => {
const startFetching = ({credentials, store}) => {
fetchAndUpdate({ credentials, store })
const boundFetchAndUpdate = () => fetchAndUpdate({ credentials, store })
// Initially there's set flag to silence all desktop notifications so
// that there won't spam of them when user just opened up the FE we
// reset that flag after a while to show new notifications once again.
setTimeout(() => store.dispatch('setNotificationsSilence', false), 10000)
return setInterval(boundFetchAndUpdate, 10000)
}