pleroma-fe/src/components/nav_panel/nav_panel.js

30 lines
674 B
JavaScript
Raw Normal View History

import { mapState } from 'vuex'
const timelineRoutes = [
'friends',
'dms',
'public-timeline',
'public-external-timeline'
]
2016-11-07 06:10:20 +11:00
const NavPanel = {
created () {
if (this.currentUser && this.currentUser.locked) {
2020-01-22 02:51:49 +11:00
this.$store.dispatch('startFetchingFollowRequests')
}
},
computed: {
onTimelineRoute () {
return timelineRoutes.includes(this.$route.name)
},
...mapState({
currentUser: state => state.users.currentUser,
followRequestCount: state => state.api.followRequests.length,
privateMode: state => state.instance.private,
federating: state => state.instance.federating
})
}
2016-11-07 06:10:20 +11:00
}
export default NavPanel