2016-11-06 20:10:20 +01:00
|
|
|
const NavPanel = {
|
2019-02-27 14:38:10 -05:00
|
|
|
created () {
|
|
|
|
if (this.currentUser && this.currentUser.locked) {
|
2019-11-19 14:07:15 +00:00
|
|
|
this.$store.dispatch('startFetchingFollowRequest')
|
2019-02-27 14:38:10 -05:00
|
|
|
}
|
|
|
|
},
|
2016-11-26 19:29:01 +01:00
|
|
|
computed: {
|
2016-11-26 21:09:41 +01:00
|
|
|
currentUser () {
|
2016-11-26 19:29:01 +01:00
|
|
|
return this.$store.state.users.currentUser
|
2017-12-05 14:20:34 +01:00
|
|
|
},
|
|
|
|
chat () {
|
|
|
|
return this.$store.state.chat.channel
|
2019-02-27 14:38:10 -05:00
|
|
|
},
|
|
|
|
followRequestCount () {
|
|
|
|
return this.$store.state.api.followRequests.length
|
2016-11-26 19:29:01 +01:00
|
|
|
}
|
|
|
|
}
|
2016-11-06 20:10:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export default NavPanel
|