aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_search/user_search.js
blob: fe67b2ad8feb1bbaf50787ed3d862b5e8110c9f0 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import UserCard from '../user_card/user_card.vue'
import userSearchApi from '../../services/new_api/user_search.js'
const userSearch = {
  components: {
    UserCard
  },
  props: [
    'query'
  ],
  data () {
    return {
      username: '',
      users: [],
      loading: false
    }
  },
  mounted () {
    this.search(this.query)
  },
  watch: {
    query (newV) {
      this.search(newV)
    }
  },
  methods: {
    newQuery (query) {
      this.$router.push({ name: 'user-search', query: { query } })
      this.$refs.userSearchInput.focus()
    },
    search (query) {
      if (!query) {
        this.users = []
        return
      }
      this.loading = true
      userSearchApi.search({query, store: this.$store})
        .then((res) => {
          this.loading = false
          this.users = res
        })
    }
  }
}

export default userSearch