2017-05-12 16:54:12 +00:00
|
|
|
<template>
|
2018-12-23 17:50:19 +00:00
|
|
|
<div>
|
2019-07-15 16:42:27 +00:00
|
|
|
<div class="search-bar-container">
|
2019-07-05 07:17:44 +00:00
|
|
|
<i
|
|
|
|
v-if="loading"
|
2019-07-15 16:42:27 +00:00
|
|
|
class="icon-spin4 finder-icon animate-spin-slow"
|
2019-07-05 07:17:44 +00:00
|
|
|
/>
|
|
|
|
<a
|
|
|
|
v-if="hidden"
|
|
|
|
href="#"
|
2019-07-15 16:42:27 +00:00
|
|
|
:title="$t('nav.search')"
|
2019-07-05 07:17:44 +00:00
|
|
|
><i
|
2019-07-15 16:42:27 +00:00
|
|
|
class="button-icon icon-search"
|
2019-07-05 07:17:44 +00:00
|
|
|
@click.prevent.stop="toggleHidden"
|
|
|
|
/></a>
|
2018-12-23 17:50:19 +00:00
|
|
|
<template v-else>
|
2019-07-05 07:17:44 +00:00
|
|
|
<input
|
2019-07-15 16:42:27 +00:00
|
|
|
id="search-bar-input"
|
|
|
|
ref="searchInput"
|
|
|
|
v-model="searchTerm"
|
|
|
|
class="search-bar-input"
|
|
|
|
:placeholder="$t('nav.search')"
|
2019-07-05 07:17:44 +00:00
|
|
|
type="text"
|
2019-07-15 16:42:27 +00:00
|
|
|
@keyup.enter="find(searchTerm)"
|
2019-07-05 07:17:44 +00:00
|
|
|
>
|
|
|
|
<button
|
|
|
|
class="btn search-button"
|
2019-07-15 16:42:27 +00:00
|
|
|
@click="find(searchTerm)"
|
2019-07-05 07:17:44 +00:00
|
|
|
>
|
|
|
|
<i class="icon-search" />
|
2018-12-23 17:50:19 +00:00
|
|
|
</button>
|
2020-10-20 18:18:23 +00:00
|
|
|
<FAIcon
|
|
|
|
class="button-icon" icon="times"
|
2019-07-05 07:17:44 +00:00
|
|
|
@click.prevent.stop="toggleHidden"
|
|
|
|
/>
|
2018-12-23 17:50:19 +00:00
|
|
|
</template>
|
|
|
|
</div>
|
2018-12-05 12:01:56 +00:00
|
|
|
</div>
|
2017-05-12 16:54:12 +00:00
|
|
|
</template>
|
|
|
|
|
2019-07-15 16:42:27 +00:00
|
|
|
<script src="./search_bar.js"></script>
|
2017-05-12 16:54:12 +00:00
|
|
|
|
|
|
|
<style lang="scss">
|
2018-04-01 02:28:20 +00:00
|
|
|
@import '../../_variables.scss';
|
2017-11-08 09:26:42 +00:00
|
|
|
|
2019-07-15 16:42:27 +00:00
|
|
|
.search-bar-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;
|
2019-07-15 16:42:27 +00:00
|
|
|
justify-content: flex-end;
|
2018-12-03 05:03:11 +00:00
|
|
|
|
2019-07-15 16:42:27 +00:00
|
|
|
.search-bar-input,
|
2018-12-03 05:03:11 +00:00
|
|
|
.search-button {
|
|
|
|
height: 29px;
|
|
|
|
}
|
2019-07-15 16:42:27 +00:00
|
|
|
|
|
|
|
.search-bar-input {
|
2018-12-18 18:26:14 +00:00
|
|
|
// TODO: do this properly without a rough guesstimate of 2 icons + paddings
|
|
|
|
max-width: calc(100% - 30px - 30px - 20px);
|
2018-12-03 05:03:11 +00:00
|
|
|
}
|
2017-06-03 20:42:54 +00:00
|
|
|
|
2018-12-03 05:03:11 +00:00
|
|
|
.search-button {
|
|
|
|
margin-left: .5em;
|
|
|
|
margin-right: .5em;
|
|
|
|
}
|
2019-07-15 16:42:27 +00:00
|
|
|
|
|
|
|
.icon-cancel {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
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>
|