2017-05-12 16:54:12 +00:00
|
|
|
<template>
|
2020-11-01 14:44:57 +00:00
|
|
|
<div
|
|
|
|
class="SearchBar"
|
|
|
|
:class="{ '-expanded': !hidden }"
|
2020-10-29 19:13:31 +00:00
|
|
|
>
|
2020-11-24 10:32:42 +00:00
|
|
|
<button
|
2020-10-29 19:13:31 +00:00
|
|
|
v-if="hidden"
|
2020-11-24 10:32:42 +00:00
|
|
|
class="button-unstyled nav-icon"
|
2020-10-29 19:13:31 +00:00
|
|
|
:title="$t('nav.search')"
|
2020-11-01 14:44:57 +00:00
|
|
|
@click.prevent.stop="toggleHidden"
|
2020-11-24 10:32:42 +00:00
|
|
|
>
|
|
|
|
<FAIcon
|
|
|
|
fixed-width
|
|
|
|
class="fa-scale-110 fa-old-padding"
|
|
|
|
icon="search"
|
|
|
|
/>
|
|
|
|
</button>
|
2020-10-29 19:13:31 +00:00
|
|
|
<template v-else>
|
|
|
|
<input
|
|
|
|
id="search-bar-input"
|
|
|
|
ref="searchInput"
|
|
|
|
v-model="searchTerm"
|
|
|
|
class="search-bar-input"
|
|
|
|
:placeholder="$t('nav.search')"
|
|
|
|
type="text"
|
|
|
|
@keyup.enter="find(searchTerm)"
|
2020-11-01 14:44:57 +00:00
|
|
|
>
|
2020-10-29 19:13:31 +00:00
|
|
|
<button
|
2020-11-24 10:32:42 +00:00
|
|
|
class="button-default search-button"
|
2020-10-29 19:13:31 +00:00
|
|
|
@click="find(searchTerm)"
|
2020-11-01 14:44:57 +00:00
|
|
|
>
|
2020-10-29 19:13:31 +00:00
|
|
|
<FAIcon
|
|
|
|
fixed-width
|
|
|
|
icon="search"
|
2020-11-01 14:44:57 +00:00
|
|
|
/>
|
2020-10-29 19:13:31 +00:00
|
|
|
</button>
|
2020-11-24 10:32:42 +00:00
|
|
|
<button
|
|
|
|
class="button-unstyled cancel-search"
|
|
|
|
@click.prevent.stop="toggleHidden"
|
|
|
|
>
|
2020-10-29 19:13:31 +00:00
|
|
|
<FAIcon
|
|
|
|
fixed-width
|
|
|
|
icon="times"
|
|
|
|
class="cancel-icon fa-scale-110 fa-old-padding"
|
2020-11-01 14:44:57 +00:00
|
|
|
/>
|
2020-11-24 10:32:42 +00:00
|
|
|
</button>
|
2020-10-29 19:13:31 +00:00
|
|
|
</template>
|
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
|
|
|
|
2020-10-29 19:13:31 +00:00
|
|
|
.SearchBar {
|
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
|
|
|
|
2020-10-29 19:13:31 +00:00
|
|
|
&.-expanded {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
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 {
|
2020-10-29 19:13:31 +00:00
|
|
|
flex: 1 0 auto;
|
2018-12-03 05:03:11 +00:00
|
|
|
}
|
2017-06-03 20:42:54 +00:00
|
|
|
|
2020-11-24 10:32:42 +00:00
|
|
|
.cancel-search {
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
|
2020-10-20 19:54:43 +00:00
|
|
|
.cancel-icon {
|
|
|
|
color: $fallback--text;
|
|
|
|
color: var(--btnTopBarText, $fallback--text);
|
2019-07-15 16:42:27 +00:00
|
|
|
}
|
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>
|