2020-12-09 13:33:29 +00:00
|
|
|
<template>
|
|
|
|
<div
|
|
|
|
class="uk-container uk-container-expand uk-light uk-height-viewport"
|
|
|
|
style="background: #0b0e0f"
|
|
|
|
>
|
|
|
|
<nav
|
|
|
|
class="uk-navbar-container uk-container-expand uk-light"
|
|
|
|
style="background: #0b0e0f"
|
|
|
|
uk-navbar
|
|
|
|
>
|
|
|
|
<div class="uk-navbar-left">
|
|
|
|
<router-link class="uk-navbar-item uk-logo uk-text-bold" to="/"
|
2021-01-01 20:05:44 +00:00
|
|
|
><img
|
|
|
|
src="../public/img/icons/logo.svg"
|
|
|
|
height="32"
|
|
|
|
width="32"
|
|
|
|
/>iped</router-link
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
<div class="uk-navbar-center uk-flex">
|
|
|
|
<input
|
|
|
|
class="uk-input"
|
|
|
|
type="text"
|
|
|
|
placeholder="Search"
|
|
|
|
v-model="searchText"
|
2020-12-09 13:33:29 +00:00
|
|
|
@keypress="onChange($event)"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div class="uk-navbar-right">
|
|
|
|
<ul class="uk-navbar-nav">
|
|
|
|
<li>
|
|
|
|
<router-link to="/preferences">Preferences</router-link>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<router-link to="/login">Login</router-link>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<router-link to="/feed">Feed</router-link>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<router-view />
|
2021-03-29 06:38:29 +00:00
|
|
|
|
|
|
|
<div style="text-align: center">
|
|
|
|
<a href="https://github.com/TeamPiped/Piped">
|
|
|
|
<font-awesome-icon
|
|
|
|
:icon="['fab', 'github']"
|
|
|
|
></font-awesome-icon>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<a href="bitcoin://13MoHioctZkC7LDSZSb4m32TDT8xNmei1p">
|
|
|
|
<font-awesome-icon
|
|
|
|
:icon="['fab', 'bitcoin']"
|
|
|
|
></font-awesome-icon>
|
|
|
|
13MoHioctZkC7LDSZSb4m32TDT8xNmei1p
|
|
|
|
</a>
|
|
|
|
</div>
|
2020-12-09 13:33:29 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Constants from "@/Constants.js";
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
searchText: "",
|
|
|
|
searchSuggestions: []
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onChange(e) {
|
|
|
|
if (e.key === "Enter") {
|
|
|
|
this.$router.push({
|
|
|
|
name: "SearchResults",
|
|
|
|
query: { search_query: this.searchText }
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-24 09:35:41 +00:00
|
|
|
this.fetchJson(
|
2020-12-09 13:33:29 +00:00
|
|
|
Constants.BASE_URL +
|
|
|
|
"/suggestions?query=" +
|
|
|
|
encodeURI(this.searchText + e.key)
|
2021-02-24 09:35:41 +00:00
|
|
|
);
|
2020-12-09 13:33:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
#app {
|
|
|
|
background: #0b0e0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
background-color: #15191a;
|
|
|
|
color: #c5bcae;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background-color: #4b4f52;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
|
|
background-color: #5b6469;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:active {
|
|
|
|
background-color: #485053;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-corner {
|
|
|
|
background-color: #0b0e0f;
|
|
|
|
}
|
|
|
|
|
2021-02-24 09:35:41 +00:00
|
|
|
* {
|
|
|
|
scrollbar-color: #15191a #444a4e;
|
|
|
|
}
|
|
|
|
</style>
|