2019-02-28 09:53:37 -08:00
|
|
|
import followRequestFetcher from '../../services/follow_request_fetcher/follow_request_fetcher.service'
|
2019-11-11 12:14:44 -08:00
|
|
|
import { mapState } from 'vuex'
|
2019-02-27 11:38:10 -08:00
|
|
|
|
2016-11-06 11:10:20 -08:00
|
|
|
const NavPanel = {
|
2019-02-27 11:38:10 -08:00
|
|
|
created () {
|
|
|
|
if (this.currentUser && this.currentUser.locked) {
|
|
|
|
const store = this.$store
|
|
|
|
const credentials = store.state.users.currentUser.credentials
|
|
|
|
|
2019-02-28 09:53:37 -08:00
|
|
|
followRequestFetcher.startFetching({ store, credentials })
|
2019-02-27 11:38:10 -08:00
|
|
|
}
|
|
|
|
},
|
2019-11-11 12:14:44 -08:00
|
|
|
computed: mapState({
|
|
|
|
currentUser: state => state.users.currentUser,
|
|
|
|
chat: state => state.chat.channel,
|
2019-11-11 12:18:36 -08:00
|
|
|
followRequestCount: state => state.api.followRequests.length,
|
|
|
|
privateMode: state => state.instance.private,
|
|
|
|
federating: state => state.instance.federationPolicy.federating || true
|
2019-11-11 12:14:44 -08:00
|
|
|
})
|
2016-11-06 11:10:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default NavPanel
|