2018-04-10 03:44:37 +10:00
import Notification from '../notification/notification.vue'
2018-08-12 21:14:34 +10:00
import notificationsFetcher from '../../services/notifications_fetcher/notifications_fetcher.service.js'
2018-12-29 06:39:54 +11:00
import {
notificationsFromStore ,
visibleNotificationsFromStore ,
unseenNotificationsFromStore
} from '../../services/notification_utils/notification_utils.js'
2016-11-28 05:44:56 +11:00
const Notifications = {
2019-05-16 03:44:35 +10:00
props : {
// Disables display of panel header
noHeading : Boolean ,
// Disables panel styles, unread mark, potentially other notification-related actions
// meant for "Interactions" timeline
minimalMode : Boolean ,
// Custom filter mode, an array of strings, possible values 'mention', 'repeat', 'like', 'follow', used to override global filter for use in "Interactions" timeline
filterMode : Array
2019-05-16 03:49:46 +10:00
} ,
2019-01-30 06:04:52 +11:00
data ( ) {
return {
bottomedOut : false
}
} ,
2016-11-28 05:44:56 +11:00
computed : {
2019-05-15 05:38:16 +10:00
mainClass ( ) {
return this . minimalMode ? '' : 'panel panel-default'
} ,
2017-02-19 06:42:00 +11:00
notifications ( ) {
2018-12-29 06:39:54 +11:00
return notificationsFromStore ( this . $store )
2017-02-19 06:42:00 +11:00
} ,
2018-08-21 03:45:54 +10:00
error ( ) {
return this . $store . state . statuses . notifications . error
} ,
2017-02-19 06:42:00 +11:00
unseenNotifications ( ) {
2018-12-29 06:39:54 +11:00
return unseenNotificationsFromStore ( this . $store )
2017-02-19 06:42:00 +11:00
} ,
2016-11-28 05:44:56 +11:00
visibleNotifications ( ) {
2019-05-15 05:38:16 +10:00
return visibleNotificationsFromStore ( this . $store , this . filterMode )
2017-02-19 06:42:00 +11:00
} ,
unseenCount ( ) {
return this . unseenNotifications . length
2019-01-30 06:04:52 +11:00
} ,
loading ( ) {
return this . $store . state . statuses . notifications . loading
2017-02-19 06:42:00 +11:00
}
} ,
2017-05-31 18:47:18 +10:00
components : {
2018-04-10 03:44:37 +10:00
Notification
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 ( ) {
2019-03-13 08:16:57 +11:00
this . $store . dispatch ( 'markNotificationsAsSeen' )
} ,
2018-08-12 21:14:34 +10:00
fetchOlderNotifications ( ) {
2019-05-03 21:52:22 +10:00
if ( this . loading ) {
return
}
2018-08-12 21:14:34 +10:00
const store = this . $store
const credentials = store . state . users . currentUser . credentials
2019-01-30 06:04:52 +11:00
store . commit ( 'setNotificationsLoading' , { value : true } )
2018-08-12 21:14:34 +10:00
notificationsFetcher . fetchAndUpdate ( {
store ,
credentials ,
older : true
2019-01-30 06:04:52 +11:00
} ) . then ( notifs => {
store . commit ( 'setNotificationsLoading' , { value : false } )
if ( notifs . length === 0 ) {
this . bottomedOut = true
}
2018-08-12 21:14:34 +10:00
} )
2016-11-28 05:44:56 +11:00
}
}
}
export default Notifications