1
0
mirror of https://github.com/TeamPiped/Piped.git synced 2024-12-14 22:30:28 +05:30
Piped/src/App.vue

196 lines
4.8 KiB
Vue
Raw Normal View History

2020-12-09 19:03:29 +05:30
<template>
<div class="w-full min-h-screen h-full px-1vw reset" :class="[theme]">
2021-04-01 03:39:39 +05:30
<Navigation />
<router-view v-slot="{ Component }">
<keep-alive :max="5">
<component :is="Component" :key="$route.fullPath" />
</keep-alive>
</router-view>
2021-03-29 12:08:29 +05:30
2021-12-27 20:16:30 +05:30
<footer class="text-center">
2021-05-10 23:44:28 +05:30
<a aria-label="GitHub" href="https://github.com/TeamPiped/Piped">
2021-12-28 04:03:55 +05:30
<font-awesome-icon :icon="['fab', 'github']" />
2021-03-29 12:08:29 +05:30
</a>
<a class="ml-2" href="https://github.com/TeamPiped/Piped#donations">
2021-12-28 04:03:55 +05:30
<font-awesome-icon :icon="['fab', 'bitcoin']" />
2021-12-27 21:59:25 +05:30
<span v-text="$t('actions.donations')" />
2021-03-29 12:08:29 +05:30
</a>
2021-12-27 20:16:30 +05:30
</footer>
2020-12-09 19:03:29 +05:30
</div>
</template>
<script>
2021-12-28 20:09:20 +05:30
import Navigation from "@/components/Navigation.vue";
2020-12-09 19:03:29 +05:30
export default {
2021-04-01 03:39:39 +05:30
components: {
2021-05-10 23:44:28 +05:30
Navigation,
},
mounted() {
if (window.location.pathname === "/" || window.location.pathname.length == 0)
switch (this.getPreferenceString("homepage", "trending")) {
case "trending":
break;
case "feed":
this.$router.push("/feed");
return;
default:
break;
}
if (this.getPreferenceBoolean("watchHistory", false))
if ("indexedDB" in window) {
const request = indexedDB.open("piped-db", 1);
2022-01-01 20:23:55 +05:30
request.onupgradeneeded = function () {
const db = request.result;
console.log("Upgrading object store.");
if (!db.objectStoreNames.contains("watch_history")) {
const store = db.createObjectStore("watch_history", { keyPath: "videoId" });
store.createIndex("video_id_idx", "videoId", { unique: true });
store.createIndex("id_idx", "id", { unique: true, autoIncrement: true });
}
};
request.onsuccess = e => {
window.db = e.target.result;
};
} else console.log("This browser doesn't support IndexedDB");
const App = this;
2022-01-01 20:23:55 +05:30
(async function () {
2021-09-24 04:27:26 +05:30
const locale = App.getPreferenceString("hl", App.defaultLangage);
if (locale !== App.TimeAgoConfig.locale) {
2022-01-12 11:09:36 +05:30
const localeTime = await import(
"./../node_modules/javascript-time-ago/locale/" + locale + ".json"
).then(module => module.default);
App.TimeAgo.addLocale(localeTime);
App.TimeAgoConfig.locale = locale;
}
if (window.i18n.global.locale.value !== locale) {
if (!window.i18n.global.availableLocales.includes(locale)) {
2021-12-28 20:09:20 +05:30
const messages = await import(`./locales/${locale}.json`).then(module => module.default);
window.i18n.global.setLocaleMessage(locale, messages);
}
window.i18n.global.locale.value = locale;
}
})();
},
2020-12-09 19:03:29 +05:30
};
</script>
<style>
2021-06-28 21:53:24 +05:30
h1,
p,
a,
b {
unicode-bidi: plaintext;
text-align: start;
}
2020-12-09 19:03:29 +05:30
::-webkit-scrollbar {
background-color: #15191a;
}
::-webkit-scrollbar-thumb {
background-color: #4b4f52;
}
::-webkit-scrollbar-thumb:hover {
background-color: #5b6469;
}
::-webkit-scrollbar-thumb:active {
background-color: #485053;
}
::-webkit-scrollbar-corner {
background-color: #0b0e0f;
}
2021-02-24 15:05:41 +05:30
* {
scrollbar-color: #15191a #444a4e;
2021-12-27 20:16:36 +05:30
@apply font-sans;
2021-02-24 15:05:41 +05:30
}
2021-12-27 20:16:22 +05:30
.video-grid {
2021-12-27 20:16:37 +05:30
@apply grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 xl:grid-cols-6 col-auto <md:gap-x-2.5 md:gap-x-1vw gap-y-1.5 mx-3;
}
2021-11-01 00:06:47 +05:30
2021-12-27 20:16:26 +05:30
.btn {
2021-12-27 20:16:29 +05:30
@apply py-2 px-4 rounded;
2021-12-27 20:16:26 +05:30
}
2021-12-27 20:16:34 +05:30
.reset {
@apply text-black bg-white;
}
2021-12-27 20:16:36 +05:30
.auto {
@apply dark:(text-white bg-dark-900);
}
2021-12-27 20:16:26 +05:30
.dark {
2021-12-27 20:16:34 +05:30
@apply text-white bg-dark-900;
2021-12-27 20:16:26 +05:30
}
.input,
.select,
.btn {
@apply w-auto h-full text-gray-600 bg-gray-300;
}
2021-12-27 20:16:29 +05:30
.dark .input,
.dark .select,
.dark .btn {
@apply text-gray-400 bg-dark-400;
}
.auto .input,
.auto .select,
.auto .btn {
@apply dark:(text-gray-400 bg-dark-400);
2021-12-27 20:16:33 +05:30
}
.input {
@apply pl-2.5;
2021-12-27 20:16:29 +05:30
}
hr {
@apply !mt-2 !mb-3 border-gray-300;
}
2021-12-27 20:16:29 +05:30
.dark hr {
@apply border-dark-100;
}
.auto hr {
@apply dark:border-dark-100;
2021-12-27 20:16:29 +05:30
}
h1 {
@apply m-0 !text-5xl font-bold;
2021-11-01 00:06:47 +05:30
}
2021-12-27 20:16:30 +05:30
.link {
2021-12-27 20:16:34 +05:30
@apply hover:(text-dark-300 underline underline-dark-300);
}
.link-secondary {
@apply hover:(text-dark-400 underline underline-dark-400);
}
2021-12-27 20:16:34 +05:30
.dark .link {
2021-12-27 20:16:30 +05:30
@apply hover:(text-gray-300 underline underline-gray-300);
}
.auto .link {
@apply dark:hover:(text-gray-300 underline underline-gray-300);
}
.dark .link-secondary {
@apply text-gray-300 hover:(text-gray-400 underline underline-gray-400);
}
.auto .link-secondary {
@apply dark:(text-gray-300 hover:(text-gray-400 underline underline-gray-400));
}
2021-02-24 15:05:41 +05:30
</style>