2017-05-12 09:54:12 -07:00
|
|
|
<template>
|
2018-12-23 09:50:19 -08:00
|
|
|
<div>
|
|
|
|
<div class="user-finder-container">
|
|
|
|
<i class="icon-spin4 user-finder-icon animate-spin-slow" v-if="loading" />
|
|
|
|
<a href="#" v-if="hidden" :title="$t('finder.find_user')"><i class="icon-user-plus user-finder-icon" @click.prevent.stop="toggleHidden" /></a>
|
|
|
|
<template v-else>
|
2019-02-25 06:08:52 -08:00
|
|
|
<input class="user-finder-input" ref="userSearchInput" @keyup.enter="findUser(username)" v-model="username" :placeholder="$t('finder.find_user')" id="user-finder-input" type="text"/>
|
2018-12-23 09:50:19 -08:00
|
|
|
<button class="btn search-button" @click="findUser(username)">
|
|
|
|
<i class="icon-search"/>
|
|
|
|
</button>
|
|
|
|
<i class="button-icon icon-cancel user-finder-icon" @click.prevent.stop="toggleHidden"/>
|
|
|
|
</template>
|
|
|
|
</div>
|
2018-12-05 04:01:56 -08:00
|
|
|
</div>
|
2017-05-12 09:54:12 -07:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./user_finder.js"></script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
2018-03-31 19:28:20 -07:00
|
|
|
@import '../../_variables.scss';
|
2017-11-08 01:26:42 -08:00
|
|
|
|
2018-03-31 19:28:20 -07:00
|
|
|
.user-finder-container {
|
2018-04-07 09:30:27 -07:00
|
|
|
max-width: 100%;
|
2018-12-02 21:03:11 -08:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: baseline;
|
|
|
|
vertical-align: baseline;
|
|
|
|
|
|
|
|
|
|
|
|
.user-finder-input,
|
|
|
|
.search-button {
|
|
|
|
height: 29px;
|
|
|
|
}
|
|
|
|
.user-finder-input {
|
2018-12-18 10:26:14 -08:00
|
|
|
// TODO: do this properly without a rough guesstimate of 2 icons + paddings
|
|
|
|
max-width: calc(100% - 30px - 30px - 20px);
|
2018-12-02 21:03:11 -08:00
|
|
|
}
|
2017-06-03 13:42:54 -07:00
|
|
|
|
2018-12-02 21:03:11 -08:00
|
|
|
.search-button {
|
|
|
|
margin-left: .5em;
|
|
|
|
margin-right: .5em;
|
|
|
|
}
|
2018-03-31 19:28:20 -07:00
|
|
|
}
|
2017-09-10 10:46:42 -07:00
|
|
|
|
2017-05-12 09:54:12 -07:00
|
|
|
</style>
|