mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-01 01:12:39 +00:00
202 lines
4.9 KiB
Vue
202 lines
4.9 KiB
Vue
<template>
|
|
<v-app v-show="stateLoaded" style="background: black !important">
|
|
<topNavigation
|
|
:search="search"
|
|
:page="page"
|
|
@close-search="search = !search"
|
|
@search-btn="searchBtn"
|
|
@text-changed="textChanged"
|
|
@scroll-to-top="$refs.pgscroll.scrollTop = 0"
|
|
/>
|
|
|
|
<div class="accent" style="height: 100%; margin-top: 4rem">
|
|
<div
|
|
v-show="!search"
|
|
class="background"
|
|
style="
|
|
overflow: hidden;
|
|
height: calc(100vh - 8rem);
|
|
transition-duration: 0.3s;
|
|
transition-property: border-radius;
|
|
"
|
|
:style="{
|
|
borderRadius: `${roundTweak / 2}rem`,
|
|
}"
|
|
>
|
|
<!-- element above removes artifacting from things like v-ripple by -->
|
|
<!-- scrollbox below must be a standalone div -->
|
|
<div ref="pgscroll" class="scroll-y" style="height: 100%">
|
|
<nuxt v-show="!search" />
|
|
</div>
|
|
</div>
|
|
|
|
<div
|
|
v-show="search"
|
|
class="accent"
|
|
style="
|
|
padding: 0;
|
|
overflow: hidden;
|
|
height: calc(100vh - 4rem);
|
|
transition-duration: 0.3s;
|
|
transition-property: border-radius;
|
|
"
|
|
>
|
|
<div class="scroll-y" style="height: 100%">
|
|
<div v-if="search" style="min-width: 180px">
|
|
<v-list-item
|
|
v-for="(item, index) in response"
|
|
:key="index"
|
|
class="px-0"
|
|
>
|
|
<v-btn
|
|
text
|
|
tile
|
|
dense
|
|
class="info--text searchButton text-left text-capitalize"
|
|
@click="youtubeSearch(item)"
|
|
>
|
|
<v-icon class="mr-5">mdi-magnify</v-icon>
|
|
{{ item[0] }}
|
|
</v-btn>
|
|
</v-list-item>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<bottomNavigation v-if="!search" />
|
|
|
|
<updateChecker />
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
import { App as CapacitorApp } from "@capacitor/app";
|
|
import { mapState } from "vuex";
|
|
import constants from "../plugins/constants";
|
|
export default {
|
|
data: () => ({
|
|
search: false,
|
|
response: [],
|
|
stateLoaded: false,
|
|
}),
|
|
|
|
computed: {
|
|
...mapState({
|
|
roundTweak: (state) => state.tweaks.roundTweak,
|
|
}),
|
|
page: function () {
|
|
const splitPath = this.$route.path.split("/");
|
|
let pageName = splitPath[splitPath.length - 1];
|
|
pageName = pageName.charAt(0).toUpperCase() + pageName.slice(1);
|
|
return pageName || "Home";
|
|
},
|
|
},
|
|
|
|
watch: {
|
|
// Watch for any changes in the route string
|
|
// When change is detected, scroll main div back to the top
|
|
$route() {
|
|
this.$refs.pgscroll.scrollTop = 0; // scroll back to top when moving to new route
|
|
// Exit fullscreen if currently in fullscreen
|
|
this.$vuetube.statusBar.show();
|
|
this.$vuetube.navigationBar.show();
|
|
},
|
|
},
|
|
|
|
beforeCreate() {
|
|
// initializes UI tweaks to the saved state
|
|
this.$store.commit("tweaks/initTweaks");
|
|
},
|
|
|
|
mounted() {
|
|
this.stateLoaded = true;
|
|
//--- Back Button Listener ---//
|
|
CapacitorApp.addListener("backButton", ({ canGoBack }) => {
|
|
//--- Back Closes Search ---//
|
|
if (this.search) {
|
|
this.search = false;
|
|
|
|
//--- Back Goes Back ---//
|
|
} else if (!canGoBack) {
|
|
CapacitorApp.exitApp();
|
|
} else {
|
|
window.history.back();
|
|
}
|
|
});
|
|
},
|
|
|
|
methods: {
|
|
textChanged(text) {
|
|
if (text.length <= 0) this.response = []; // No text found, no point in calling API
|
|
this.$youtube.autoComplete(text, (res) => {
|
|
const data = res.replace(/^.*?\(/, "").replace(/\)$/, ""); //Format Response
|
|
this.response = JSON.parse(data)[1];
|
|
});
|
|
},
|
|
|
|
youtubeSearch(item) {
|
|
this.$router.push(`/search?q=${item[0]}`);
|
|
this.search = false;
|
|
},
|
|
|
|
searchBtn(text) {
|
|
const query = text;
|
|
|
|
this.$logger(
|
|
constants.LOGGER_NAMES.search,
|
|
"Query: " + query + " this.search: " + this.search
|
|
);
|
|
|
|
if (this.search === true) {
|
|
if (query) {
|
|
this.$router.push(`/search?q=${query}`);
|
|
this.search = false;
|
|
}
|
|
} else {
|
|
this.search = true;
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
* {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
|
|
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
|
}
|
|
*:focus::before {
|
|
opacity: 0 !important;
|
|
}
|
|
|
|
.scroll-y {
|
|
overflow-y: scroll !important; /* has to be scroll, not auto */
|
|
-webkit-overflow-scrolling: touch !important;
|
|
}
|
|
html,
|
|
body {
|
|
background: black;
|
|
overflow: hidden;
|
|
}
|
|
|
|
p,
|
|
span,
|
|
div {
|
|
-webkit-user-select: none; /* Safari */
|
|
-moz-user-select: none; /* Firefox */
|
|
-ms-user-select: none; /* IE10+/Edge */
|
|
user-select: none; /* Standard */
|
|
}
|
|
|
|
.invert {
|
|
filter: invert(100%);
|
|
}
|
|
</style>
|
|
|
|
<style scoped>
|
|
.searchButton {
|
|
width: 100%;
|
|
justify-content: left !important;
|
|
}
|
|
</style>
|