mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-01 01:12:39 +00:00
128 lines
2.9 KiB
Vue
128 lines
2.9 KiB
Vue
<template>
|
|
<v-card
|
|
scroll-off-screen
|
|
style="height: 4rem !important; display: flex"
|
|
class="rounded-0 pa-3 topNav background"
|
|
:style="
|
|
$vuetify.theme.dark
|
|
? 'border-bottom: 1px solid var(--v-background-lighten1) !important;'
|
|
: 'border-bottom: 1px solid var(--v-background-darken1) !important;'
|
|
"
|
|
>
|
|
<h3 v-show="!search" class="my-auto ml-4" v-text="page" />
|
|
|
|
<v-btn
|
|
v-if="search"
|
|
icon
|
|
class="mr-3 my-auto"
|
|
@click="$emit('close-search')"
|
|
>
|
|
<v-icon>mdi-close</v-icon>
|
|
</v-btn>
|
|
|
|
<v-text-field
|
|
v-if="search"
|
|
v-model="text"
|
|
solo
|
|
dense
|
|
flat
|
|
label="Search"
|
|
style="margin-top: 1px"
|
|
:background-color="
|
|
$vuetify.theme.dark ? 'background lighten-1' : 'background darken-1'
|
|
"
|
|
@input="$emit('text-changed', text)"
|
|
@keyup.enter="$emit('search-btn', text)"
|
|
/>
|
|
|
|
<v-spacer v-if="!search" />
|
|
|
|
<v-btn
|
|
v-if="!search"
|
|
v-show="page == 'Home'"
|
|
icon
|
|
tile
|
|
class="ml-3 mr-1 my-auto fill-height"
|
|
style="border-radius: 0.25rem !important"
|
|
@click="refreshRecommendations"
|
|
>
|
|
<v-icon>mdi-refresh</v-icon>
|
|
</v-btn>
|
|
<v-btn
|
|
icon
|
|
tile
|
|
class="ml-3 my-auto fill-height"
|
|
style="border-radius: 0.25rem !important"
|
|
@click="$emit('search-btn', text)"
|
|
>
|
|
<v-icon>mdi-magnify</v-icon>
|
|
</v-btn>
|
|
<v-btn
|
|
v-show="!search"
|
|
icon
|
|
tile
|
|
class="ml-4 mr-2 my-auto fill-height"
|
|
style="border-radius: 0.25rem !important"
|
|
to="/settings"
|
|
>
|
|
<v-icon>mdi-cog-outline</v-icon>
|
|
</v-btn>
|
|
</v-card>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
search: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
page: {
|
|
type: String,
|
|
default: "Home",
|
|
},
|
|
},
|
|
events: ["searchBtn", "textChanged", "closeSearch"],
|
|
data: () => ({
|
|
text: "",
|
|
}),
|
|
methods: {
|
|
refreshRecommendations() {
|
|
this.$emit("scroll-to-top");
|
|
|
|
const continuations =
|
|
this.$store.state.recommendedVideos[
|
|
this.$store.state.recommendedVideos.length - 1
|
|
].continuations;
|
|
this.$store.commit("updateRecommendedVideos", []);
|
|
this.$youtube
|
|
.recommendContinuation(
|
|
continuations.find((element) => element.reloadContinuationData)
|
|
.reloadContinuationData.continuation,
|
|
"browse"
|
|
)
|
|
.then((result) => {
|
|
console.log(result);
|
|
if (result) this.$store.commit("updateRecommendedVideos", [result]);
|
|
})
|
|
.catch((error) => this.$logger("Home Page (Nav Refresh)", error, true));
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.topNav {
|
|
/* box-shadow: inset 0 1rem 10rem var(--v-background-base) !important; */
|
|
box-shadow: none !important;
|
|
/* ios notch */
|
|
top: env(safe-area-inset-top) !important;
|
|
position: fixed;
|
|
width: 100%;
|
|
}
|
|
|
|
.topNavSearch {
|
|
margin-bottom: -10em;
|
|
margin-left: 2em;
|
|
}
|
|
</style>
|