2017-05-13 02:54:12 +10:00
|
|
|
<template>
|
2017-11-08 20:26:42 +11:00
|
|
|
<span class="user-finder-container">
|
2017-09-11 03:46:42 +10:00
|
|
|
<i class="icon-spin4 user-finder-icon animate-spin-slow" v-if="loading" />
|
2017-11-08 20:26:42 +11:00
|
|
|
<a href="#" v-if="hidden"><i class="icon-user-plus user-finder-icon" @click.prevent.stop="toggleHidden"/></a>
|
2018-12-03 16:03:11 +11:00
|
|
|
<template v-else>
|
2018-04-01 04:14:36 +10: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 16:03:11 +11:00
|
|
|
<button class="btn search-button" @click="findUser(username)">
|
|
|
|
<i class="icon-search"/>
|
|
|
|
</button>
|
2017-11-08 21:55:10 +11:00
|
|
|
<i class="icon-cancel user-finder-icon" @click.prevent.stop="toggleHidden"/>
|
2018-12-03 16:03:11 +11:00
|
|
|
</template>
|
2017-06-04 06:42:54 +10:00
|
|
|
</span>
|
2017-05-13 02:54:12 +10:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./user_finder.js"></script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
2018-04-01 12:28:20 +10:00
|
|
|
@import '../../_variables.scss';
|
2017-11-08 20:26:42 +11:00
|
|
|
|
2018-04-01 12:28:20 +10:00
|
|
|
.user-finder-container {
|
2018-04-08 02:30:27 +10:00
|
|
|
max-width: 100%;
|
2018-12-03 16:03:11 +11: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-04 06:42:54 +10:00
|
|
|
|
2018-12-03 16:03:11 +11:00
|
|
|
.search-button {
|
|
|
|
margin-left: .5em;
|
|
|
|
margin-right: .5em;
|
|
|
|
}
|
2018-04-01 12:28:20 +10:00
|
|
|
}
|
2017-09-11 03:46:42 +10:00
|
|
|
|
2017-05-13 02:54:12 +10:00
|
|
|
</style>
|