Piped/src/App.vue

124 lines
3.8 KiB
Vue
Raw Normal View History

2020-12-09 13:33:29 +00:00
<template>
<div class="w-full min-h-screen px-1vw reset" :class="[theme]">
<NavBar />
<router-view v-slot="{ Component }">
<keep-alive :max="5">
<component :is="Component" :key="$route.fullPath" />
</keep-alive>
</router-view>
2021-03-29 06:38:29 +00:00
2022-09-05 17:25:45 +00:00
<footer class="text-center">
2021-05-10 18:14:28 +00:00
<a aria-label="GitHub" href="https://github.com/TeamPiped/Piped">
2021-12-27 22:33:55 +00:00
<font-awesome-icon :icon="['fab', 'github']" />
2021-03-29 06:38:29 +00:00
</a>
<a class="ml-2" href="https://github.com/TeamPiped/Piped#donations">
2021-12-27 22:33:55 +00:00
<font-awesome-icon :icon="['fab', 'bitcoin']" />
2022-07-20 20:20:10 +00:00
<span class="ml-1" v-t="'actions.donations'" />
2021-03-29 06:38:29 +00:00
</a>
2021-12-27 14:46:30 +00:00
</footer>
2020-12-09 13:33:29 +00:00
</div>
</template>
<style>
/*Global*/
:root {
--efy_color1_var: 239, 68, 68;
--efy_color2_var: 220, 38, 38;
--efy_radius: 12rem;
--efy_sidebar_button: right_middle;
--efy_font_family: "nunito", sans-serif, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial,
Noto Sans, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
--efy_body_width: unset;
}
body {
@apply p-64;
}
/*Default Mode*/
[efy_theme="default_mode"] {
color-scheme: dark;
--efy_bg_var: 255, 255, 255;
--efy_bg: rgb(15, 15, 15);
--efy_text: rgb(220, 220, 220);
}
/*Radius*/
input,
.btn,
button,
.shaka-video-container,
.shaka-video-container video,
.video-grid div,
.pp-show-recs div,
.grid .comment,
.shaka-scrim-container,
.suggestion-selected,
.pp-mobile-nav a,
.shaka-text-container span > span > span {
border-radius: var(--efy_radius);
}
/*Radius 0*/
.video-grid img,
.thumbnail-overlay,
.thumbnail-left,
.thumbnail-right {
border-radius: var(--efy_radius0);
}
/*Radius 2*/
.suggestions-container,
.modal-container {
border-radius: var(--efy_radius2);
}
</style>
2020-12-09 13:33:29 +00:00
<script>
2022-04-08 15:46:49 +00:00
import NavBar from "./components/NavBar.vue";
2020-12-09 13:33:29 +00:00
export default {
2021-03-31 22:09:39 +00:00
components: {
NavBar,
2021-05-10 18:14:28 +00:00
},
mounted() {
if (this.getPreferenceBoolean("watchHistory", false))
if ("indexedDB" in window) {
const request = indexedDB.open("piped-db", 1);
2022-01-01 14:53:55 +00:00
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 14:53:55 +00:00
(async function () {
const defaultLang = await App.defaultLangage;
const locale = App.getPreferenceString("hl", defaultLang);
if (locale !== App.TimeAgoConfig.locale) {
2022-01-12 05:39:36 +00:00
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 14:39:20 +00:00
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 13:33:29 +00:00
};
</script>