2019-11-11 12:14:44 -08:00
|
|
|
import { mapState } from 'vuex'
|
2019-02-27 11:38:10 -08:00
|
|
|
|
2020-07-03 02:56:31 -07:00
|
|
|
const timelineRoutes = [
|
|
|
|
'friends',
|
|
|
|
'dms',
|
|
|
|
'public-timeline',
|
|
|
|
'public-external-timeline'
|
|
|
|
]
|
|
|
|
|
2016-11-06 11:10:20 -08:00
|
|
|
const NavPanel = {
|
2019-02-27 11:38:10 -08:00
|
|
|
created () {
|
|
|
|
if (this.currentUser && this.currentUser.locked) {
|
2020-01-21 07:51:49 -08:00
|
|
|
this.$store.dispatch('startFetchingFollowRequests')
|
2019-02-27 11:38:10 -08:00
|
|
|
}
|
|
|
|
},
|
2020-07-03 02:56:31 -07:00
|
|
|
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
|
|
|
|
})
|
|
|
|
}
|
2016-11-06 11:10:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default NavPanel
|