2017-05-31 01:47:18 -07:00
|
|
|
import Status from '../status/status.vue'
|
2018-03-11 16:31:33 -07:00
|
|
|
import StillImage from '../still-image/still-image.vue'
|
2018-04-09 09:43:31 -07:00
|
|
|
import UserCardContent from '../user_card_content/user_card_content.vue'
|
2017-05-31 01:47:18 -07:00
|
|
|
|
2017-02-18 11:42:00 -08:00
|
|
|
import { sortBy, take, filter } from 'lodash'
|
2016-11-27 10:44:56 -08:00
|
|
|
|
|
|
|
const Notifications = {
|
|
|
|
data () {
|
|
|
|
return {
|
2018-04-09 09:43:31 -07:00
|
|
|
visibleNotificationCount: 10,
|
|
|
|
userExpanded: false
|
2016-11-27 10:44:56 -08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
2017-02-18 11:42:00 -08:00
|
|
|
notifications () {
|
|
|
|
return this.$store.state.statuses.notifications
|
|
|
|
},
|
|
|
|
unseenNotifications () {
|
|
|
|
return filter(this.notifications, ({seen}) => !seen)
|
|
|
|
},
|
2016-11-27 10:44:56 -08:00
|
|
|
visibleNotifications () {
|
2017-02-18 11:42:00 -08: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 01:47:18 -07:00
|
|
|
components: {
|
2018-04-09 09:43:31 -07:00
|
|
|
Status, StillImage, UserCardContent
|
2017-05-31 01:47:18 -07:00
|
|
|
},
|
2017-02-18 11:42:00 -08:00
|
|
|
watch: {
|
|
|
|
unseenCount (count) {
|
2017-02-19 03:19:47 -08:00
|
|
|
if (count > 0) {
|
|
|
|
this.$store.dispatch('setPageTitle', `(${count})`)
|
|
|
|
} else {
|
|
|
|
this.$store.dispatch('setPageTitle', '')
|
|
|
|
}
|
2017-02-18 11:42:00 -08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
markAsSeen () {
|
|
|
|
this.$store.commit('markNotificationsAsSeen', this.visibleNotifications)
|
2018-04-09 09:43:31 -07:00
|
|
|
},
|
|
|
|
toggleUserExpanded () {
|
|
|
|
this.userExpanded = !this.userExpanded
|
2016-11-27 10:44:56 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Notifications
|