aboutsummaryrefslogtreecommitdiff
path: root/src/components/nav_panel/nav_panel.js
blob: c403441754fda501eb1a02329b5defa9a8ecb335 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import requestFetcher from '../../services/notifications_fetcher/request_fetcher.service.js'

const NavPanel = {
  created () {
    if (this.currentUser && this.currentUser.locked) {
      const store = this.$store
      const credentials = store.state.users.currentUser.credentials

      requestFetcher.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
    }
  }
}

export default NavPanel