2019-03-01 04:53:37 +11:00
|
|
|
import followRequestFetcher from '../../services/follow_request_fetcher/follow_request_fetcher.service'
|
2019-02-28 06:38:10 +11:00
|
|
|
|
2016-11-07 06:10:20 +11:00
|
|
|
const NavPanel = {
|
2019-02-28 06:38:10 +11:00
|
|
|
created () {
|
|
|
|
if (this.currentUser && this.currentUser.locked) {
|
|
|
|
const store = this.$store
|
|
|
|
const credentials = store.state.users.currentUser.credentials
|
|
|
|
|
2019-03-01 04:53:37 +11:00
|
|
|
followRequestFetcher.startFetching({ store, credentials })
|
2019-02-28 06:38:10 +11:00
|
|
|
}
|
|
|
|
},
|
2016-11-27 05:29:01 +11:00
|
|
|
computed: {
|
2016-11-27 07:09:41 +11:00
|
|
|
currentUser () {
|
2016-11-27 05:29:01 +11:00
|
|
|
return this.$store.state.users.currentUser
|
2017-12-06 00:20:34 +11:00
|
|
|
},
|
|
|
|
chat () {
|
|
|
|
return this.$store.state.chat.channel
|
2019-02-28 06:38:10 +11:00
|
|
|
},
|
|
|
|
followRequestCount () {
|
|
|
|
return this.$store.state.api.followRequests.length
|
2016-11-27 05:29:01 +11:00
|
|
|
}
|
|
|
|
}
|
2016-11-07 06:10:20 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
export default NavPanel
|