akkoma-fe/src/components/notifications/notifications.js

17 lines
345 B
JavaScript
Raw Normal View History

2016-11-27 18:44:56 +00:00
import { sortBy, take } from 'lodash'
const Notifications = {
data () {
return {
visibleNotificationCount: 20
}
},
computed: {
visibleNotifications () {
return take(sortBy(this.$store.state.statuses.notifications, ({action}) => -action.id), this.visibleNotificationCount)
}
}
}
export default Notifications