pleroma-fe/src/components/search_bar/search_bar.vue

79 lines
1.6 KiB
Vue
Raw Normal View History

2017-05-12 18:54:12 +02:00
<template>
<div>
2019-07-15 18:42:27 +02:00
<div class="search-bar-container">
2019-07-05 09:17:44 +02:00
<a
v-if="hidden"
href="#"
2020-10-20 21:54:43 +02:00
class="nav-icon"
2019-07-15 18:42:27 +02:00
:title="$t('nav.search')"
2020-10-20 21:54:43 +02:00
><FAIcon
2020-10-20 23:31:16 +02:00
fixed-width
size="lg"
class="button-icon"
icon="search"
@click.prevent.stop="toggleHidden"
2019-07-05 09:17:44 +02:00
/></a>
<template v-else>
2019-07-05 09:17:44 +02:00
<input
2019-07-15 18:42:27 +02:00
id="search-bar-input"
ref="searchInput"
v-model="searchTerm"
class="search-bar-input"
:placeholder="$t('nav.search')"
2019-07-05 09:17:44 +02:00
type="text"
2019-07-15 18:42:27 +02:00
@keyup.enter="find(searchTerm)"
2019-07-05 09:17:44 +02:00
>
<button
class="btn search-button"
2019-07-15 18:42:27 +02:00
@click="find(searchTerm)"
2019-07-05 09:17:44 +02:00
>
2020-10-20 21:54:43 +02:00
<FAIcon
fixed-width
icon="search"
2020-10-20 23:31:16 +02:00
/>
</button>
2020-10-20 21:54:43 +02:00
<span>
<FAIcon
size="lg"
fixed-width
icon="times"
class="cancel-icon"
@click.prevent.stop="toggleHidden"
/>
</span>
</template>
</div>
2018-12-05 13:01:56 +01:00
</div>
2017-05-12 18:54:12 +02:00
</template>
2019-07-15 18:42:27 +02:00
<script src="./search_bar.js"></script>
2017-05-12 18:54:12 +02:00
<style lang="scss">
@import '../../_variables.scss';
2019-07-15 18:42:27 +02:00
.search-bar-container {
2018-04-07 18:30:27 +02:00
max-width: 100%;
2018-12-03 06:03:11 +01:00
display: inline-flex;
align-items: baseline;
vertical-align: baseline;
2019-07-15 18:42:27 +02:00
justify-content: flex-end;
2018-12-03 06:03:11 +01:00
2019-07-15 18:42:27 +02:00
.search-bar-input,
2018-12-03 06:03:11 +01:00
.search-button {
height: 29px;
}
2019-07-15 18:42:27 +02:00
.search-bar-input {
2018-12-18 19:26:14 +01:00
// TODO: do this properly without a rough guesstimate of 2 icons + paddings
max-width: calc(100% - 30px - 30px - 20px);
2018-12-03 06:03:11 +01:00
}
2020-10-20 21:54:43 +02:00
.cancel-icon {
2019-07-15 18:42:27 +02:00
cursor: pointer;
2020-10-20 21:54:43 +02:00
color: $fallback--text;
color: var(--btnTopBarText, $fallback--text);
2019-07-15 18:42:27 +02:00
}
}
2017-09-10 19:46:42 +02:00
2017-05-12 18:54:12 +02:00
</style>