VueTube/NUXT/layouts/default.vue

145 lines
3.3 KiB
Vue

<template>
<v-app>
<v-card class="topNav rounded-0" style="display: flex; box-shadow: none !important;" color="accent white--text">
<h2 v-text="page" v-show="!search" />
<v-text-field
label="Search"
v-model="text"
@input="textChanged"
class="searchBar"
color="white"
v-if="search"
/>
<v-spacer />
<v-btn text class="toolbarAction mr-2 fill-height" color="white" @click="search = !search"><v-icon>mdi-magnify</v-icon></v-btn>
<v-menu offset-y content-class="mt-8">
<template v-slot:activator="{ on, attrs }"><v-btn text class="toolbarAction fill-height" v-bind="attrs" v-on="on" color="white" v-show="!search"><v-icon>mdi-dots-vertical</v-icon></v-btn></template>
<v-list style="min-width: 180px;">
<v-list-item v-for="(item, index) in dropdownMenu" :key="index">
<v-btn text :to="item.link" style="text-decoration: none; width: 100%;" class="info--text">{{ item.title }}</v-btn>
</v-list-item>
</v-list>
</v-menu>
</v-card>
<div class="accent" style="height: 100%">
<div class="background">
<nuxt v-show="!search" />
<div style="min-width: 180px;" v-if="search">
<v-list-item v-for="(item, index) in response" :key="index">
<v-btn text dense class="info--text searchButton text-left" @click="youtubeSearch(item)" v-text="item[0]" />
</v-list-item>
</div>
</div>
</div>
<bottomNavigation v-if="!search" />
</v-app>
</template>
<style>
* {
font-family: Arial, Helvetica, sans-serif !important;
}
html, body {
overflow-x: hidden;
}
</style>
<style scoped>
.toolbarAction {
min-width: 40px !important;
}
.topNav {
padding: 1rem;
position: fixed;
width: 100%;
top: 0;
z-index: 999;
/*border-radius: 0 0 1em 1em !important;*/
}
.topNavSearch {
margin-bottom: -10em;
margin-left: 2em;
/*transform: translateY(-2.5%);*/
}
.background {
height: 100%;
padding: 4em 0 4em 0; /* Account for Top/Bottom Novigation */
}
.searchBar {
margin: 0;
}
.searchButton {
width: 100%;
justify-content: left !important;
}
</style>
<script>
import { App as CapacitorApp } from '@capacitor/app';
export default {
data: () => ({
search: false,
dropdownMenu: [
{ title: "Settings", link: "/settings" },
{ title: "Updates", link: "/updates" },
{ title: "About", link: "/about" },
{ title: "Logs", link: "/logs" }
],
text: null,
response: [],
}),
mounted() {
CapacitorApp.addListener('backButton', ({canGoBack}) => {
//--- Back Closes Search ---//
if (this.search) {
this.search = false;
return;
}
if(!canGoBack){
CapacitorApp.exitApp();
} else {
window.history.back();
}
});
},
computed: {
page: function () {
let pageName = this.$route.path.split("/")[1];
pageName = pageName.charAt(0).toUpperCase() + pageName.slice(1);
return pageName || "Home";
}
},
methods: {
textChanged() {
this.$youtube.autoComplete(this.text, (res) => {
const data = res.replace(/^.*?\(/,'').replace(/\)$/,''); //Format Response
this.response = JSON.parse(data)[1]
});
},
youtubeSearch(item) {
location.href="/search?q="+item[0];
}
}
}
</script>