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

19 lines
503 B
JavaScript
Raw Normal View History

import { mapState } from 'vuex'
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: 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 19:10:20 +00:00
}
export default NavPanel