2017-05-12 16:54:12 +00:00
|
|
|
<template>
|
2017-11-08 09:26:42 +00:00
|
|
|
<span class="user-finder-container">
|
2017-09-10 17:46:42 +00:00
|
|
|
<i class="icon-spin4 user-finder-icon animate-spin-slow" v-if="loading" />
|
2017-11-08 09:26:42 +00:00
|
|
|
<a href="#" v-if="hidden"><i class="icon-user-plus user-finder-icon" @click.prevent.stop="toggleHidden"/></a>
|
2018-12-03 05:03:11 +00:00
|
|
|
<template v-else>
|
2018-03-31 18:14:36 +00:00
|
|
|
<input class="user-finder-input" @keyup.enter="findUser(username)" v-model="username" :placeholder="$t('finder.find_user')" id="user-finder-input" type="text"/>
|
2018-12-03 05:03:11 +00:00
|
|
|
<button class="btn search-button" @click="findUser(username)">
|
|
|
|
<i class="icon-search"/>
|
|
|
|
</button>
|
2017-11-08 10:55:10 +00:00
|
|
|
<i class="icon-cancel user-finder-icon" @click.prevent.stop="toggleHidden"/>
|
2018-12-03 05:03:11 +00:00
|
|
|
</template>
|
2017-06-03 20:42:54 +00:00
|
|
|
</span>
|
2017-05-12 16:54:12 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./user_finder.js"></script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
2018-04-01 02:28:20 +00:00
|
|
|
@import '../../_variables.scss';
|
2017-11-08 09:26:42 +00:00
|
|
|
|
2018-04-01 02:28:20 +00:00
|
|
|
.user-finder-container {
|
2018-04-07 16:30:27 +00:00
|
|
|
max-width: 100%;
|
2018-12-03 05:03:11 +00:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: baseline;
|
|
|
|
vertical-align: baseline;
|
|
|
|
|
|
|
|
|
|
|
|
.user-finder-input,
|
|
|
|
.search-button {
|
|
|
|
height: 29px;
|
|
|
|
}
|
|
|
|
.user-finder-input {
|
|
|
|
max-width: 80%;
|
|
|
|
}
|
2017-06-03 20:42:54 +00:00
|
|
|
|
2018-12-03 05:03:11 +00:00
|
|
|
.search-button {
|
|
|
|
margin-left: .5em;
|
|
|
|
margin-right: .5em;
|
|
|
|
}
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2017-09-10 17:46:42 +00:00
|
|
|
|
2017-05-12 16:54:12 +00:00
|
|
|
</style>
|