2019-02-28 17:53:37 +00:00
|
|
|
import followRequestFetcher from '../../services/follow_request_fetcher/follow_request_fetcher.service'
|
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) {
|
|
|
|
const store = this.$store
|
|
|
|
const credentials = store.state.users.currentUser.credentials
|
|
|
|
|
2019-02-28 17:53:37 +00:00
|
|
|
followRequestFetcher.startFetching({ store, credentials })
|
2019-02-27 19:38:10 +00:00
|
|
|
}
|
|
|
|
},
|
2016-11-26 18:29:01 +00:00
|
|
|
computed: {
|
2016-11-26 20:09:41 +00:00
|
|
|
currentUser () {
|
2016-11-26 18:29:01 +00:00
|
|
|
return this.$store.state.users.currentUser
|
2017-12-05 13:20:34 +00:00
|
|
|
},
|
|
|
|
chat () {
|
|
|
|
return this.$store.state.chat.channel
|
2019-02-27 19:38:10 +00:00
|
|
|
},
|
|
|
|
followRequestCount () {
|
|
|
|
return this.$store.state.api.followRequests.length
|
2016-11-26 18:29:01 +00:00
|
|
|
}
|
|
|
|
}
|
2016-11-06 19:10:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default NavPanel
|