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

24 lines
634 B
JavaScript
Raw Normal View History

import { mapState } from 'vuex'
import { timelineNames } from '../timeline_menu/timeline_menu.js'
2016-11-06 19:10:20 +00:00
const NavPanel = {
created () {
if (this.currentUser && this.currentUser.locked) {
2020-01-21 15:51:49 +00:00
this.$store.dispatch('startFetchingFollowRequests')
}
},
computed: {
onTimelineRoute () {
return !!timelineNames()[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-06 19:10:20 +00:00
}
export default NavPanel