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
|
|
|
<span class="finder-error base05" v-if="error">
|
|
|
|
<i class="icon-cancel user-finder-icon" @click="dismissError"/>
|
2017-11-08 21:34:15 +11:00
|
|
|
{{$t('finder.error_fetching_user')}}
|
2017-09-11 03:46:42 +10:00
|
|
|
</span>
|
|
|
|
<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>
|
2017-09-11 03:46:42 +10:00
|
|
|
<span v-else>
|
2017-11-08 21:34:15 +11:00
|
|
|
<input class="user-finder-input base03-border" @keyup.enter="findUser(username)" v-model="username" :placeholder="$t('finder.find_user')" id="user-finder-input" type="text"/>
|
2017-11-08 21:55:10 +11:00
|
|
|
<i class="icon-cancel user-finder-icon" @click.prevent.stop="toggleHidden"/>
|
2017-09-11 03:46:42 +10:00
|
|
|
</span>
|
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">
|
2017-11-08 20:26:42 +11:00
|
|
|
.user-finder-container {
|
|
|
|
height: 21px;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2017-06-04 06:42:54 +10:00
|
|
|
.user-finder-icon {
|
|
|
|
}
|
|
|
|
|
|
|
|
.user-finder-input {
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: inherit;
|
|
|
|
border-radius: 5px;
|
2017-11-08 20:26:42 +11:00
|
|
|
max-width: 80%;
|
2017-06-04 06:42:54 +10:00
|
|
|
padding: 0.1em 0.2em 0.2em 0.2em;
|
2017-05-13 02:54:12 +10:00
|
|
|
}
|
2017-09-11 03:46:42 +10:00
|
|
|
|
|
|
|
.finder-error {
|
|
|
|
background-color: rgba(255, 48, 16, 0.65);
|
|
|
|
margin: 0.35em;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 0.25em;
|
|
|
|
}
|
2017-05-13 02:54:12 +10:00
|
|
|
</style>
|