pleroma-fe/src/components/user_search/user_search.js

52 lines
958 B
JavaScript
Raw Normal View History

import FollowCard from '../follow_card/follow_card.vue'
import map from 'lodash/map'
2018-11-15 06:29:45 +11:00
const userSearch = {
components: {
FollowCard
2018-11-15 06:29:45 +11:00
},
props: [
'query'
],
data () {
return {
username: '',
userIds: [],
2019-02-23 05:37:02 +11:00
loading: false
2018-11-15 06:29:45 +11:00
}
},
computed: {
users () {
return this.userIds.map(userId => this.$store.getters.findUser(userId))
}
},
2018-11-15 06:29:45 +11:00
mounted () {
this.search(this.query)
},
watch: {
query (newV) {
this.search(newV)
}
},
methods: {
newQuery (query) {
this.$router.push({ name: 'user-search', query: { query } })
2019-02-26 01:08:52 +11:00
this.$refs.userSearchInput.focus()
},
2018-11-15 06:29:45 +11:00
search (query) {
if (!query) {
this.users = []
return
}
2019-02-23 05:37:02 +11:00
this.loading = true
this.$store.dispatch('searchUsers', query)
2018-11-15 06:29:45 +11:00
.then((res) => {
2019-02-23 05:37:02 +11:00
this.loading = false
this.userIds = map(res, 'id')
2018-11-15 06:29:45 +11:00
})
}
}
}
export default userSearch