18 lines
569 B
JavaScript
18 lines
569 B
JavaScript
import { mapState } from 'vuex'
|
|
|
|
const NavPanel = {
|
|
created () {
|
|
if (this.currentUser && this.currentUser.locked) {
|
|
this.$store.dispatch('startFetchingFollowRequest')
|
|
}
|
|
},
|
|
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.federationPolicy.enabled || state.instance.federationPolicy.enabled !== false
|
|
})
|
|
}
|
|
|
|
export default NavPanel
|