VueTube/NUXT/pages/index.vue

114 lines
3.0 KiB
Vue
Raw Normal View History

2022-01-24 22:56:57 +00:00
<template>
2022-03-31 04:22:24 +00:00
<center v-show="themeFetched" class="container">
<v-img
src="/icon.svg"
2022-03-31 04:22:24 +00:00
width="10rem"
height="10rem"
class="intro"
:class="$vuetify.theme.dark ? '' : 'invert'"
/>
2022-03-31 04:22:24 +00:00
<div style="height: 5rem" />
<v-progress-linear rounded height="8" indeterminate color="primary" />
<div class="pt-2">{{ progressMsg }}...</div>
</center>
2022-01-24 22:56:57 +00:00
</template>
2022-03-16 00:31:03 +00:00
<script>
export default {
layout: "empty",
2022-03-28 19:59:08 +00:00
data: () => ({
progressMsg: "Theming",
2022-03-31 04:22:24 +00:00
themeFetched: false,
2022-03-28 19:59:08 +00:00
}),
2022-03-31 04:22:24 +00:00
beforeCreate() {
2022-03-28 19:59:08 +00:00
this.$store.commit("tweaks/initTweaks");
2022-03-31 04:22:24 +00:00
// This has to be imported here,otherwise NUXT won't import the package because its so early in the lifecycle -Front
// const { SplashScreen } = await require("@capacitor/splash-screen");
2022-03-28 19:59:08 +00:00
// await SplashScreen.hide();
},
async mounted() {
2022-03-31 04:22:24 +00:00
// Set timeout is required for $vuetify.theme... dont ask me why -Front
const theming = new Promise((resolve) =>
setTimeout(() => {
this.$vuetify.theme.dark = JSON.parse(localStorage.getItem("darkTheme")) === true;
if (localStorage.getItem("primaryDark") != null)
this.$vuetify.theme.themes.dark.primary = localStorage.getItem("primaryDark");
if (localStorage.getItem("primaryLight") != null)
this.$vuetify.theme.themes.light.primary = localStorage.getItem("primaryLight");
if (localStorage.getItem("backgroundDark") != null)
this.$vuetify.theme.themes.dark.background = localStorage.getItem("backgroundDark");
if (localStorage.getItem("backgroundLight") != null)
this.$vuetify.theme.themes.light.background = localStorage.getItem("backgroundLight");
2022-03-31 04:22:24 +00:00
this.themeFetched = true;
this.$vuetube.navigationBar.setTheme(
this.$vuetify.theme.currentTheme.background,
!this.$vuetify.theme.dark
);
2022-03-31 04:22:24 +00:00
this.$vuetube.statusBar.setTheme(
this.$vuetify.theme.currentTheme.background,
this.$vuetify.theme.dark
2022-03-31 04:22:24 +00:00
);
resolve();
}, 0)
);
2022-03-19 23:17:26 +00:00
2022-03-31 04:22:24 +00:00
await theming;
this.progressMsg = "Fetching the API";
await this.$youtube.getAPI();
this.progressMsg = "Navigating Home";
this.$router.push(`/${localStorage.getItem("startPage") || "home"}`);
},
};
</script>
<style scoped>
.container {
padding-top: 3em;
display: block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -80%);
}
.intro {
2022-03-31 04:22:24 +00:00
opacity: 0;
transform: scale(0.5);
transition-property: opacity, transform;
animation: bounce 0.66s ease infinite alternate;
2022-03-31 04:22:24 +00:00
}
/* triangles aren't very good at spinning :c */
@keyframes bounce {
2022-03-31 04:22:24 +00:00
0% {
opacity: 0;
transform: scale(0.5);
}
100% {
opacity: 1;
transform: scale(1);
}
}
@keyframes fadein {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/* reduced-motion animations */
@media (prefers-reduced-motion) {
.intro {
opacity: 0;
transform: scale(1);
transition-property: opacity, transform;
animation: fadein 0.5s ease 1 forwards;
}
}
</style>