31 lines
715 B
JavaScript
31 lines
715 B
JavaScript
import { mapState } from 'vuex'
|
|
|
|
const timelineRoutes = [
|
|
'friends',
|
|
'dms',
|
|
'public-timeline',
|
|
'public-external-timeline'
|
|
]
|
|
|
|
const NavPanel = {
|
|
created () {
|
|
if (this.currentUser && this.currentUser.locked) {
|
|
this.$store.dispatch('startFetchingFollowRequests')
|
|
}
|
|
},
|
|
computed: {
|
|
onTimelineRoute () {
|
|
return timelineRoutes.includes(this.$route.name)
|
|
},
|
|
...mapState({
|
|
currentUser: state => state.users.currentUser,
|
|
chat: state => state.chat.channel,
|
|
followRequestCount: state => state.api.followRequests.length,
|
|
privateMode: state => state.instance.private,
|
|
federating: state => state.instance.federating
|
|
})
|
|
}
|
|
}
|
|
|
|
export default NavPanel
|