2019-11-11 20:14:44 +00:00
|
|
|
import { mapState } from 'vuex'
|
2019-02-27 19:38:10 +00:00
|
|
|
|
2016-11-06 19:10:20 +00:00
|
|
|
const NavPanel = {
|
2019-02-27 19:38:10 +00:00
|
|
|
created () {
|
|
|
|
if (this.currentUser && this.currentUser.locked) {
|
2020-01-21 15:51:49 +00:00
|
|
|
this.$store.dispatch('startFetchingFollowRequests')
|
2019-02-27 19:38:10 +00:00
|
|
|
}
|
|
|
|
},
|
2019-11-11 20:14:44 +00:00
|
|
|
computed: mapState({
|
|
|
|
currentUser: state => state.users.currentUser,
|
|
|
|
chat: state => state.chat.channel,
|
2019-11-11 20:18:36 +00:00
|
|
|
followRequestCount: state => state.api.followRequests.length,
|
|
|
|
privateMode: state => state.instance.private,
|
2019-12-12 21:29:50 +00:00
|
|
|
federating: state => state.instance.federating
|
2019-11-11 20:14:44 +00:00
|
|
|
})
|
2016-11-06 19:10:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default NavPanel
|