forked from AkkomaGang/akkoma-fe
nav panel: refactor to use vuex mapState
This commit is contained in:
parent
99fd096ddd
commit
21f1637e43
1 changed files with 6 additions and 11 deletions
|
@ -1,4 +1,5 @@
|
|||
import followRequestFetcher from '../../services/follow_request_fetcher/follow_request_fetcher.service'
|
||||
import { mapState } from 'vuex'
|
||||
|
||||
const NavPanel = {
|
||||
created () {
|
||||
|
@ -9,17 +10,11 @@ const NavPanel = {
|
|||
followRequestFetcher.startFetching({ store, credentials })
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
currentUser () {
|
||||
return this.$store.state.users.currentUser
|
||||
},
|
||||
chat () {
|
||||
return this.$store.state.chat.channel
|
||||
},
|
||||
followRequestCount () {
|
||||
return this.$store.state.api.followRequests.length
|
||||
}
|
||||
}
|
||||
computed: mapState({
|
||||
currentUser: state => state.users.currentUser,
|
||||
chat: state => state.chat.channel,
|
||||
followRequestCount: state => state.api.followRequests.length
|
||||
})
|
||||
}
|
||||
|
||||
export default NavPanel
|
||||
|
|
Loading…
Reference in a new issue