2017-05-31 18:47:18 +10:00
|
|
|
import Status from '../status/status.vue'
|
2018-03-12 10:31:33 +11:00
|
|
|
import StillImage from '../still-image/still-image.vue'
|
2018-04-10 02:43:31 +10:00
|
|
|
import UserCardContent from '../user_card_content/user_card_content.vue'
|
2017-05-31 18:47:18 +10:00
|
|
|
|
2017-02-19 06:42:00 +11:00
|
|
|
import { sortBy, take, filter } from 'lodash'
|
2016-11-28 05:44:56 +11:00
|
|
|
|
|
|
|
const Notifications = {
|
|
|
|
data () {
|
|
|
|
return {
|
2018-04-10 02:43:31 +10:00
|
|
|
visibleNotificationCount: 10,
|
|
|
|
userExpanded: false
|
2016-11-28 05:44:56 +11:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
2017-02-19 06:42:00 +11:00
|
|
|
notifications () {
|
|
|
|
return this.$store.state.statuses.notifications
|
|
|
|
},
|
|
|
|
unseenNotifications () {
|
|
|
|
return filter(this.notifications, ({seen}) => !seen)
|
|
|
|
},
|
2016-11-28 05:44:56 +11:00
|
|
|
visibleNotifications () {
|
2017-02-19 06:42:00 +11:00
|
|
|
// Don't know why, but sortBy([seen, -action.id]) doesn't work.
|
|
|
|
let sortedNotifications = sortBy(this.notifications, ({action}) => -action.id)
|
|
|
|
sortedNotifications = sortBy(sortedNotifications, 'seen')
|
|
|
|
return take(sortedNotifications, this.visibleNotificationCount)
|
|
|
|
},
|
|
|
|
unseenCount () {
|
|
|
|
return this.unseenNotifications.length
|
|
|
|
}
|
|
|
|
},
|
2017-05-31 18:47:18 +10:00
|
|
|
components: {
|
2018-04-10 02:43:31 +10:00
|
|
|
Status, StillImage, UserCardContent
|
2017-05-31 18:47:18 +10:00
|
|
|
},
|
2017-02-19 06:42:00 +11:00
|
|
|
watch: {
|
|
|
|
unseenCount (count) {
|
2017-02-19 22:19:47 +11:00
|
|
|
if (count > 0) {
|
|
|
|
this.$store.dispatch('setPageTitle', `(${count})`)
|
|
|
|
} else {
|
|
|
|
this.$store.dispatch('setPageTitle', '')
|
|
|
|
}
|
2017-02-19 06:42:00 +11:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
markAsSeen () {
|
|
|
|
this.$store.commit('markNotificationsAsSeen', this.visibleNotifications)
|
2018-04-10 02:43:31 +10:00
|
|
|
},
|
|
|
|
toggleUserExpanded () {
|
|
|
|
this.userExpanded = !this.userExpanded
|
2016-11-28 05:44:56 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Notifications
|