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

91 lines
1.8 KiB
Vue
Raw Normal View History

2017-05-12 18:54:12 +02:00
<template>
2020-11-01 16:44:57 +02:00
<div
class="SearchBar"
:class="{ '-expanded': !hidden }"
>
<button
v-if="hidden"
class="button-unstyled nav-icon"
:title="$t('nav.search')"
type="button"
2023-01-21 15:08:17 -05:00
:aria-expanded="!hidden"
2021-02-25 14:32:21 +02:00
@click.prevent.stop="toggleHidden"
>
<FAIcon
fixed-width
class="fa-scale-110 fa-old-padding"
icon="search"
/>
</button>
<template v-else>
<input
id="search-bar-input"
ref="searchInput"
v-model="searchTerm"
2024-02-07 15:53:49 +02:00
class="input search-bar-input"
:placeholder="$t('nav.search')"
type="text"
@keyup.enter="find(searchTerm)"
2020-11-01 16:44:57 +02:00
>
<button
class="button-default search-button"
type="submit"
2023-01-21 15:08:17 -05:00
:title="$t('nav.search')"
2021-02-25 14:32:21 +02:00
@click="find(searchTerm)"
2020-11-01 16:44:57 +02:00
>
<FAIcon
fixed-width
icon="search"
2020-11-01 16:44:57 +02:00
/>
</button>
<button
class="button-unstyled cancel-search"
type="button"
2023-01-21 15:08:17 -05:00
:title="$t('nav.search_close')"
:aria-expanded="!hidden"
2021-02-25 14:32:21 +02:00
@click.prevent.stop="toggleHidden"
>
<FAIcon
fixed-width
icon="times"
class="cancel-icon fa-scale-110 fa-old-padding"
2020-11-01 16:44:57 +02:00
/>
</button>
2022-08-12 01:27:09 +03:00
<span class="spacer" />
<span class="spacer" />
</template>
2018-12-05 15:01:56 +03:00
</div>
2017-05-12 18:54:12 +02:00
</template>
2019-07-15 16:42:27 +00:00
<script src="./search_bar.js"></script>
2017-05-12 18:54:12 +02:00
<style lang="scss">
.SearchBar {
2018-12-03 08:03:11 +03: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 08:03:11 +03:00
&.-expanded {
width: 100%;
}
2019-07-15 16:42:27 +00:00
.search-bar-input,
2018-12-03 08:03:11 +03:00
.search-button {
height: 29px;
}
2019-07-15 16:42:27 +00:00
.search-bar-input {
flex: 1 0 auto;
2018-12-03 08:03:11 +03:00
}
.cancel-search {
height: 50px;
}
2020-10-20 22:54:43 +03:00
.cancel-icon {
2024-03-04 19:45:42 +02:00
color: var(--text);
2019-07-15 16:42:27 +00:00
}
}
2017-09-10 20:46:42 +03:00
2017-05-12 18:54:12 +02:00
</style>