2020-07-08 00:34:35 +10:00
|
|
|
import { timelineNames } from '../timeline_menu/timeline_menu.js'
|
2020-05-07 23:10:53 +10:00
|
|
|
import { mapState, mapGetters } from 'vuex'
|
2020-07-03 19:56:31 +10:00
|
|
|
|
2016-11-07 06:10:20 +11:00
|
|
|
const NavPanel = {
|
2019-02-28 06:38:10 +11:00
|
|
|
created () {
|
|
|
|
if (this.currentUser && this.currentUser.locked) {
|
2020-01-22 02:51:49 +11:00
|
|
|
this.$store.dispatch('startFetchingFollowRequests')
|
2019-02-28 06:38:10 +11:00
|
|
|
}
|
|
|
|
},
|
2020-07-03 19:56:31 +10:00
|
|
|
computed: {
|
|
|
|
onTimelineRoute () {
|
2020-07-08 00:34:35 +10:00
|
|
|
return !!timelineNames()[this.$route.name]
|
2020-07-03 19:56:31 +10:00
|
|
|
},
|
2020-07-08 01:20:37 +10:00
|
|
|
timelinesRoute () {
|
|
|
|
return this.currentUser ? 'friends' : 'public-timeline'
|
|
|
|
},
|
2020-07-03 19:56:31 +10:00
|
|
|
...mapState({
|
|
|
|
currentUser: state => state.users.currentUser,
|
|
|
|
followRequestCount: state => state.api.followRequests.length,
|
|
|
|
privateMode: state => state.instance.private,
|
2020-05-07 23:10:53 +10:00
|
|
|
federating: state => state.instance.federating,
|
|
|
|
pleromaChatMessagesAvailable: state => state.instance.pleromaChatMessagesAvailable
|
|
|
|
}),
|
|
|
|
...mapGetters(['unreadChatCount'])
|
2020-07-03 19:56:31 +10:00
|
|
|
}
|
2016-11-07 06:10:20 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
export default NavPanel
|