akkoma-fe/src/components/nav_panel/nav_panel.js

21 lines
613 B
JavaScript
Raw Normal View History

2019-02-28 17:53:37 +00:00
import followRequestFetcher from '../../services/follow_request_fetcher/follow_request_fetcher.service'
import { mapState } from 'vuex'
2016-11-06 19:10:20 +00:00
const NavPanel = {
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 })
}
},
computed: mapState({
currentUser: state => state.users.currentUser,
chat: state => state.chat.channel,
followRequestCount: state => state.api.followRequests.length
})
2016-11-06 19:10:20 +00:00
}
export default NavPanel