2022-03-02 13:14:52 +00:00
|
|
|
<template>
|
2022-05-13 06:20:15 +00:00
|
|
|
<div class="bottomNav background">
|
2022-05-13 22:25:47 +00:00
|
|
|
<v-divider v-if="!$store.state.tweaks.roundTweak" />
|
2022-05-13 06:20:15 +00:00
|
|
|
<v-bottom-navigation
|
|
|
|
v-model="tabSelection"
|
|
|
|
style="padding: 0 !important; box-shadow: none !important"
|
|
|
|
class="transparent"
|
|
|
|
shift
|
2022-03-21 20:34:34 +00:00
|
|
|
>
|
2022-05-13 06:20:15 +00:00
|
|
|
<v-btn
|
|
|
|
v-for="(item, i) in tabs"
|
|
|
|
:key="i"
|
|
|
|
v-ripple="false"
|
|
|
|
class="navButton"
|
|
|
|
:to="item.link"
|
|
|
|
plain
|
|
|
|
>
|
|
|
|
<span v-text="item.name" />
|
|
|
|
<v-icon
|
|
|
|
:color="
|
|
|
|
tabSelection == i
|
|
|
|
? 'primary'
|
|
|
|
: $vuetify.theme.dark
|
|
|
|
? 'background lighten-4'
|
|
|
|
: 'background darken-4'
|
|
|
|
"
|
|
|
|
:class="
|
|
|
|
tabSelection == i
|
|
|
|
? $vuetify.theme.dark
|
|
|
|
? 'tab primary darken-4'
|
|
|
|
: 'tab primary lighten-4'
|
|
|
|
: ''
|
|
|
|
"
|
|
|
|
v-text="item.icon"
|
|
|
|
/>
|
|
|
|
<!--
|
2022-03-02 13:14:52 +00:00
|
|
|
<span v-text="item.name" />
|
2022-03-21 20:34:34 +00:00
|
|
|
<v-icon
|
2022-03-30 02:37:54 +00:00
|
|
|
:color="
|
|
|
|
tabSelection == i
|
|
|
|
? 'primary'
|
|
|
|
: $vuetify.theme.dark
|
|
|
|
? 'background lighten-4'
|
|
|
|
: 'background darken-4'
|
|
|
|
"
|
|
|
|
:class="
|
|
|
|
tabSelection == i
|
|
|
|
? $vuetify.theme.dark
|
|
|
|
? 'tab primary darken-4'
|
|
|
|
: 'tab primary lighten-4'
|
|
|
|
: ''
|
|
|
|
"
|
2022-03-21 23:47:11 +00:00
|
|
|
v-text="item.icon"
|
2022-05-13 06:21:54 +00:00
|
|
|
/> -->
|
|
|
|
<!-- Add the following to 'v-text- above to make the icons outlined unless active
|
2022-03-24 19:56:11 +00:00
|
|
|
+ (tabSelection == i ? '' : '-outline')
|
|
|
|
-->
|
2022-05-13 06:20:15 +00:00
|
|
|
</v-btn>
|
2022-05-13 06:21:54 +00:00
|
|
|
<!-- <v-btn
|
|
|
|
text
|
|
|
|
class="navButton mr-2 fill-height"
|
|
|
|
color="white"
|
|
|
|
@click="searchBtn()"
|
|
|
|
><v-icon>mdi-magnify</v-icon></v-btn
|
|
|
|
> -->
|
2022-05-13 06:20:15 +00:00
|
|
|
</v-bottom-navigation>
|
|
|
|
</div>
|
2022-03-02 13:14:52 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
tabSelection: 0,
|
|
|
|
tabs: [
|
2022-03-21 20:34:34 +00:00
|
|
|
// TODO: pull from Vuex & localStorage for customizations
|
2022-05-06 03:11:28 +00:00
|
|
|
{ name: "...", icon: "mdi-home", link: "/home" },
|
2022-03-02 13:14:52 +00:00
|
|
|
//{ name: "Shorts", icon: "mdi-lightning-bolt", link: "/shorts" },
|
|
|
|
//{ name: "Upload", icon: "mdi-plus", link: "/upload" },
|
2022-03-21 20:34:34 +00:00
|
|
|
{
|
2022-05-06 03:11:28 +00:00
|
|
|
name: "...",
|
2022-03-21 20:34:34 +00:00
|
|
|
icon: "mdi-youtube-subscription",
|
|
|
|
link: "/subscriptions",
|
|
|
|
},
|
2022-05-06 03:11:28 +00:00
|
|
|
{ name: "...", icon: "mdi-view-list", link: "/library" },
|
2022-03-21 20:34:34 +00:00
|
|
|
// { name: "Settings", icon: "mdi-menu", link: "/settings" },
|
2022-03-02 13:14:52 +00:00
|
|
|
],
|
2022-03-21 20:34:34 +00:00
|
|
|
};
|
|
|
|
},
|
2022-05-06 03:11:28 +00:00
|
|
|
|
|
|
|
mounted() {
|
2022-05-13 06:21:54 +00:00
|
|
|
this.tabs[0].name = this.$lang("global").home;
|
|
|
|
this.tabs[1].name = this.$lang("global").subscriptions;
|
|
|
|
this.tabs[2].name = this.$lang("global").library;
|
|
|
|
},
|
2022-03-21 20:34:34 +00:00
|
|
|
};
|
2022-03-02 13:14:52 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.bottomNav {
|
2022-05-13 06:20:15 +00:00
|
|
|
/* box-shadow: inset 0 0 10rem var(--v-background-base) !important; */
|
|
|
|
height: calc(4rem + env(safe-area-inset-bottom)) !important;
|
|
|
|
padding-bottom: env(safe-area-inset-bottom) !important;
|
2022-05-05 04:28:51 +00:00
|
|
|
box-shadow: none !important;
|
2022-03-31 23:58:37 +00:00
|
|
|
position: fixed;
|
2022-05-13 06:20:15 +00:00
|
|
|
width: 100%;
|
|
|
|
bottom: 0;
|
2022-03-02 13:14:52 +00:00
|
|
|
}
|
|
|
|
.navButton {
|
2022-03-22 01:13:48 +00:00
|
|
|
width: 25vw !important;
|
2022-03-21 20:34:34 +00:00
|
|
|
font-size: 0.66rem !important;
|
2022-03-02 13:14:52 +00:00
|
|
|
}
|
2022-03-07 13:52:38 +00:00
|
|
|
.tab {
|
|
|
|
padding: 0.1em 0.5em 0.1em 0.5em;
|
|
|
|
border-radius: 1em;
|
|
|
|
}
|
2022-03-02 13:14:52 +00:00
|
|
|
</style>
|