2021-05-10 18:14:28 +00:00
|
|
|
<template>
|
2022-01-12 11:27:08 +00:00
|
|
|
<nav class="flex flex-wrap items-center justify-center px-2 sm:px-4 py-2.5 w-full relative">
|
2022-03-14 14:57:42 +00:00
|
|
|
<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="/"
|
2021-08-22 10:27:09 +00:00
|
|
|
><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]"
|
2021-08-22 10:27:09 +00:00
|
|
|
/>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
|
2021-10-08 18:52:51 +00:00
|
|
|
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"
|
2021-09-21 21:58:25 +00:00
|
|
|
role="search"
|
2022-06-26 08:57:12 +00:00
|
|
|
ref="videoSearch"
|
2021-09-21 21:58:25 +00:00
|
|
|
:title="$t('actions.search')"
|
|
|
|
:placeholder="$t('actions.search')"
|
2021-04-07 09:22:55 +00:00
|
|
|
@keyup="onKeyUp"
|
2021-12-04 07:04:44 +00:00
|
|
|
@keypress="onKeyPress"
|
2021-03-31 22:09:39 +00:00
|
|
|
@focus="onInputFocus"
|
|
|
|
@blur="onInputBlur"
|
|
|
|
/>
|
|
|
|
</div>
|
2022-07-22 16:08:52 +00:00
|
|
|
<!-- three vertical lines for toggling the hamburger menu on mobile -->
|
|
|
|
<button class="md:hidden flex flex-col justify-end mr-3" @click="showTopNav = !showTopNav">
|
|
|
|
<span class="line"></span>
|
|
|
|
<span class="line"></span>
|
|
|
|
<span class="line"></span>
|
|
|
|
</button>
|
|
|
|
<!-- navigation bar for large screen devices -->
|
|
|
|
<ul class="hidden md:(flex-1 flex justify-end flex text-1xl children:pl-3)">
|
|
|
|
<li v-if="shouldShowTrending">
|
|
|
|
<router-link v-t="'titles.trending'" to="/trending" />
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<router-link v-t="'titles.preferences'" to="/preferences" />
|
|
|
|
</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>
|
|
|
|
<li v-if="authenticated">
|
|
|
|
<router-link v-t="'titles.playlists'" to="/playlists" />
|
|
|
|
</li>
|
|
|
|
<li v-if="authenticated && !shouldShowTrending">
|
|
|
|
<router-link v-t="'titles.feed'" to="/feed" />
|
|
|
|
</li>
|
|
|
|
</ul>
|
2021-03-31 22:09:39 +00:00
|
|
|
</nav>
|
2022-07-22 16:08:52 +00:00
|
|
|
<!-- navigation bar for mobile devices -->
|
2022-07-22 16:49:27 +00:00
|
|
|
<ul
|
|
|
|
v-if="showTopNav"
|
|
|
|
class="flex flex-col justify-center items-end mb-4 children:(my-0.5 mr-5)"
|
|
|
|
@click="showTopNav = false"
|
|
|
|
>
|
2022-07-22 16:08:52 +00:00
|
|
|
<li v-if="shouldShowTrending">
|
|
|
|
<router-link v-t="'titles.trending'" to="/trending" />
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<router-link v-t="'titles.preferences'" to="/preferences" />
|
|
|
|
</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>
|
|
|
|
<li v-if="authenticated">
|
|
|
|
<router-link v-t="'titles.playlists'" to="/playlists" />
|
|
|
|
</li>
|
|
|
|
<li v-if="authenticated && !shouldShowTrending">
|
|
|
|
<router-link v-t="'titles.feed'" to="/feed" />
|
|
|
|
</li>
|
|
|
|
</ul>
|
2022-07-22 16:49:27 +00:00
|
|
|
<!-- search suggestions for mobile devices -->
|
|
|
|
<div class="w-{full - 4} md:hidden mx-2">
|
2021-03-31 22:09:39 +00:00
|
|
|
<input
|
2021-10-08 18:52:51 +00:00
|
|
|
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"
|
2021-09-21 21:58:25 +00:00
|
|
|
role="search"
|
|
|
|
:title="$t('actions.search')"
|
|
|
|
:placeholder="$t('actions.search')"
|
2021-04-07 09:22:55 +00:00
|
|
|
@keyup="onKeyUp"
|
2021-12-04 07:04:44 +00:00
|
|
|
@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"
|
2021-04-07 09:22:55 +00:00
|
|
|
ref="searchSuggestions"
|
2021-10-08 18:52:51 +00:00
|
|
|
:search-text="searchText"
|
|
|
|
@searchchange="onSearchTextChange"
|
2021-03-31 22:09:39 +00:00
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2022-04-08 15:46:49 +00:00
|
|
|
import SearchSuggestions from "./SearchSuggestions.vue";
|
2022-06-26 08:57:12 +00:00
|
|
|
import hotkeys from "hotkeys-js";
|
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,
|
2022-07-22 16:08:52 +00:00
|
|
|
showTopNav: false,
|
2021-03-31 22:09:39 +00:00
|
|
|
};
|
|
|
|
},
|
2022-01-12 05:27:38 +00:00
|
|
|
mounted() {
|
2022-01-12 11:27:08 +00:00
|
|
|
const query = new URLSearchParams(window.location.search).get("search_query");
|
|
|
|
if (query) this.onSearchTextChange(query);
|
2022-06-26 08:57:12 +00:00
|
|
|
this.focusOnSearchBar();
|
2022-01-12 05:27:38 +00:00
|
|
|
},
|
2021-07-16 22:56:41 +00:00
|
|
|
computed: {
|
|
|
|
shouldShowLogin(_this) {
|
|
|
|
return _this.getAuthToken() == null;
|
|
|
|
},
|
2021-08-22 10:27:09 +00:00
|
|
|
shouldShowHistory(_this) {
|
|
|
|
return _this.getPreferenceBoolean("watchHistory", false);
|
|
|
|
},
|
2022-07-20 15:52:25 +00:00
|
|
|
shouldShowTrending(_this) {
|
|
|
|
return _this.getPreferenceString("homepage", "trending") != "trending";
|
|
|
|
},
|
2021-07-16 22:56:41 +00:00
|
|
|
},
|
2021-03-31 22:09:39 +00:00
|
|
|
methods: {
|
2022-06-26 08:57:12 +00:00
|
|
|
// focus on search bar when Ctrl+k is pressed
|
|
|
|
focusOnSearchBar() {
|
|
|
|
hotkeys("ctrl+k", event => {
|
|
|
|
event.preventDefault();
|
|
|
|
this.$refs.videoSearch.focus();
|
|
|
|
});
|
|
|
|
},
|
2021-04-07 09:22:55 +00:00
|
|
|
onKeyUp(e) {
|
2021-12-04 07:04:44 +00:00
|
|
|
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>
|
2022-06-26 08:57:12 +00:00
|
|
|
<style>
|
|
|
|
.input:focus {
|
|
|
|
@apply border-2 border-red-500;
|
|
|
|
box-shadow: 0 0 15px rgba(239, 68, 68, var(--tw-border-opacity));
|
|
|
|
}
|
|
|
|
</style>
|