Piped/src/components/NavBar.vue

127 lines
3.9 KiB
Vue
Raw Normal View History

2021-05-10 18:14:28 +00:00
<template>
<nav class="flex flex-wrap items-center justify-center px-2 sm:px-4 py-2.5 w-full relative">
<div class="flex-1 flex justify-start">
2021-12-27 14:46:34 +00:00
<router-link class="flex font-bold text-3xl items-center font-sans font-bold" to="/"
><img
alt="logo"
src="/img/icons/logo.svg"
height="32"
width="32"
2021-12-27 14:46:33 +00:00
class="w-10 mr-[-0.6rem]"
/>iped</router-link
2021-03-31 22:09:39 +00:00
>
</div>
2021-12-27 14:46:36 +00:00
<div class="<md:hidden">
2021-03-31 22:09:39 +00:00
<input
v-model="searchText"
2021-12-27 14:46:36 +00:00
class="input !w-72 !h-10"
2021-03-31 22:09:39 +00:00
type="text"
role="search"
:title="$t('actions.search')"
:placeholder="$t('actions.search')"
@keyup="onKeyUp"
@keypress="onKeyPress"
2021-03-31 22:09:39 +00:00
@focus="onInputFocus"
@blur="onInputBlur"
/>
</div>
<div class="flex-1 flex justify-end">
2021-12-27 14:46:36 +00:00
<ul class="flex text-1xl children:pl-3">
2021-03-31 22:09:39 +00:00
<li>
<router-link v-t="'titles.preferences'" to="/preferences" />
2021-03-31 22:09:39 +00:00
</li>
<li v-if="shouldShowLogin">
<router-link v-t="'titles.login'" to="/login" />
</li>
<li v-if="shouldShowLogin">
<router-link v-t="'titles.register'" to="/register" />
</li>
<li v-if="shouldShowHistory">
<router-link v-t="'titles.history'" to="/history" />
</li>
2022-04-07 02:33:25 +00:00
<li v-if="authenticated">
<router-link v-t="'titles.playlists'" to="/playlists" />
</li>
<li v-if="authenticated">
<router-link v-t="'titles.feed'" to="/feed" />
</li>
2021-03-31 22:09:39 +00:00
</ul>
</div>
</nav>
2021-12-27 14:46:26 +00:00
<div class="w-full md:hidden">
2021-03-31 22:09:39 +00:00
<input
v-model="searchText"
2021-12-27 14:46:36 +00:00
class="input !h-10 !w-full"
2021-03-31 22:09:39 +00:00
type="text"
role="search"
:title="$t('actions.search')"
:placeholder="$t('actions.search')"
@keyup="onKeyUp"
@keypress="onKeyPress"
2021-03-31 22:09:39 +00:00
@focus="onInputFocus"
@blur="onInputBlur"
/>
</div>
<SearchSuggestions
2021-04-06 10:10:17 +00:00
v-show="searchText && suggestionsVisible"
ref="searchSuggestions"
:search-text="searchText"
@searchchange="onSearchTextChange"
2021-03-31 22:09:39 +00:00
/>
</template>
<script>
2021-12-28 14:39:20 +00:00
import SearchSuggestions from "@/components/SearchSuggestions.vue";
2021-03-31 22:09:39 +00:00
export default {
components: {
2021-05-10 18:14:28 +00:00
SearchSuggestions,
2021-03-31 22:09:39 +00:00
},
data() {
return {
searchText: "",
2021-05-10 18:14:28 +00:00
suggestionsVisible: false,
2021-03-31 22:09:39 +00:00
};
},
mounted() {
const query = new URLSearchParams(window.location.search).get("search_query");
if (query) this.onSearchTextChange(query);
},
computed: {
shouldShowLogin(_this) {
return _this.getAuthToken() == null;
},
shouldShowHistory(_this) {
return _this.getPreferenceBoolean("watchHistory", false);
},
},
2021-03-31 22:09:39 +00:00
methods: {
onKeyUp(e) {
if (e.key === "ArrowUp" || e.key === "ArrowDown") {
e.preventDefault();
}
this.$refs.searchSuggestions.onKeyUp(e);
},
onKeyPress(e) {
2021-03-31 22:09:39 +00:00
if (e.key === "Enter") {
2021-07-14 19:22:00 +00:00
e.target.blur();
2021-03-31 22:09:39 +00:00
this.$router.push({
name: "SearchResults",
2021-05-10 18:14:28 +00:00
query: { search_query: this.searchText },
2021-03-31 22:09:39 +00:00
});
return;
}
},
onInputFocus() {
this.suggestionsVisible = true;
},
onInputBlur() {
this.suggestionsVisible = false;
2021-04-06 10:10:17 +00:00
},
onSearchTextChange(searchText) {
this.searchText = searchText;
2021-05-10 18:14:28 +00:00
},
},
2021-03-31 22:09:39 +00:00
};
</script>