2018-04-09 17:44:37 +00:00
|
|
|
import Notification from '../notification/notification.vue'
|
2018-08-12 11:14:34 +00:00
|
|
|
import notificationsFetcher from '../../services/notifications_fetcher/notifications_fetcher.service.js'
|
2018-12-28 19:39:54 +00:00
|
|
|
import {
|
|
|
|
notificationsFromStore,
|
|
|
|
visibleNotificationsFromStore,
|
|
|
|
unseenNotificationsFromStore
|
|
|
|
} from '../../services/notification_utils/notification_utils.js'
|
2016-11-27 18:44:56 +00:00
|
|
|
|
|
|
|
const Notifications = {
|
2018-08-12 11:14:34 +00:00
|
|
|
created () {
|
|
|
|
const store = this.$store
|
|
|
|
const credentials = store.state.users.currentUser.credentials
|
|
|
|
|
2019-02-28 19:03:44 +00:00
|
|
|
const fetcherId = notificationsFetcher.startFetching({ store, credentials })
|
|
|
|
this.$store.commit('setNotificationFetcher', { fetcherId })
|
2016-11-27 18:44:56 +00:00
|
|
|
},
|
2019-01-29 19:04:52 +00:00
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
bottomedOut: false
|
|
|
|
}
|
|
|
|
},
|
2016-11-27 18:44:56 +00:00
|
|
|
computed: {
|
2017-02-18 19:42:00 +00:00
|
|
|
notifications () {
|
2018-12-28 19:39:54 +00:00
|
|
|
return notificationsFromStore(this.$store)
|
2017-02-18 19:42:00 +00:00
|
|
|
},
|
2018-08-20 17:45:54 +00:00
|
|
|
error () {
|
|
|
|
return this.$store.state.statuses.notifications.error
|
|
|
|
},
|
2017-02-18 19:42:00 +00:00
|
|
|
unseenNotifications () {
|
2018-12-28 19:39:54 +00:00
|
|
|
return unseenNotificationsFromStore(this.$store)
|
2017-02-18 19:42:00 +00:00
|
|
|
},
|
2016-11-27 18:44:56 +00:00
|
|
|
visibleNotifications () {
|
2018-12-28 19:39:54 +00:00
|
|
|
return visibleNotificationsFromStore(this.$store)
|
2017-02-18 19:42:00 +00:00
|
|
|
},
|
|
|
|
unseenCount () {
|
|
|
|
return this.unseenNotifications.length
|
2019-01-29 19:04:52 +00:00
|
|
|
},
|
|
|
|
loading () {
|
|
|
|
return this.$store.state.statuses.notifications.loading
|
2017-02-18 19:42:00 +00:00
|
|
|
}
|
|
|
|
},
|
2017-05-31 08:47:18 +00:00
|
|
|
components: {
|
2018-04-09 17:44:37 +00:00
|
|
|
Notification
|
2017-05-31 08:47:18 +00:00
|
|
|
},
|
2017-02-18 19:42:00 +00:00
|
|
|
watch: {
|
|
|
|
unseenCount (count) {
|
2017-02-19 11:19:47 +00:00
|
|
|
if (count > 0) {
|
|
|
|
this.$store.dispatch('setPageTitle', `(${count})`)
|
|
|
|
} else {
|
|
|
|
this.$store.dispatch('setPageTitle', '')
|
|
|
|
}
|
2017-02-18 19:42:00 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
markAsSeen () {
|
2018-12-02 10:36:11 +00:00
|
|
|
this.$store.dispatch('markNotificationsAsSeen', this.visibleNotifications)
|
2018-08-12 11:14:34 +00:00
|
|
|
},
|
|
|
|
fetchOlderNotifications () {
|
|
|
|
const store = this.$store
|
|
|
|
const credentials = store.state.users.currentUser.credentials
|
2019-01-29 19:04:52 +00:00
|
|
|
store.commit('setNotificationsLoading', { value: true })
|
2018-08-12 11:14:34 +00:00
|
|
|
notificationsFetcher.fetchAndUpdate({
|
|
|
|
store,
|
|
|
|
credentials,
|
|
|
|
older: true
|
2019-01-29 19:04:52 +00:00
|
|
|
}).then(notifs => {
|
|
|
|
store.commit('setNotificationsLoading', { value: false })
|
|
|
|
if (notifs.length === 0) {
|
|
|
|
this.bottomedOut = true
|
|
|
|
}
|
2018-08-12 11:14:34 +00:00
|
|
|
})
|
2016-11-27 18:44:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Notifications
|