2018-11-14 19:29:45 +00:00
|
|
|
<template>
|
2018-11-28 16:24:19 +00:00
|
|
|
<div class="user-search panel panel-default">
|
2018-11-14 19:29:45 +00:00
|
|
|
<div class="panel-heading">
|
|
|
|
{{$t('nav.user_search')}}
|
|
|
|
</div>
|
2018-12-28 19:39:54 +00:00
|
|
|
<div class="user-search-input-container">
|
2019-02-25 14:08:52 +00:00
|
|
|
<input class="user-finder-input" ref="userSearchInput" @keyup.enter="newQuery(username)" v-model="username" :placeholder="$t('finder.find_user')"/>
|
2018-12-28 19:39:54 +00:00
|
|
|
<button class="btn search-button" @click="newQuery(username)">
|
|
|
|
<i class="icon-search"/>
|
|
|
|
</button>
|
|
|
|
</div>
|
2019-02-22 18:37:02 +00:00
|
|
|
<div v-if="loading" class="text-center loading-icon">
|
|
|
|
<i class="icon-spin3 animate-spin"/>
|
|
|
|
</div>
|
|
|
|
<div v-else class="panel-body">
|
2019-02-26 04:34:40 +00:00
|
|
|
<FollowCard v-for="user in users" :key="user.id" :user="user"/>
|
2018-11-14 19:29:45 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./user_search.js"></script>
|
2018-12-28 19:39:54 +00:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.user-search-input-container {
|
|
|
|
margin: 0.5em;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.search-button {
|
|
|
|
margin-left: 0.5em;
|
|
|
|
}
|
|
|
|
}
|
2019-02-22 18:37:02 +00:00
|
|
|
|
|
|
|
.loading-icon {
|
|
|
|
padding: 1em;
|
|
|
|
}
|
2018-12-28 19:39:54 +00:00
|
|
|
</style>
|