gamebrary/src/App.vue
2020-10-05 11:42:28 -07:00

182 lines
4 KiB
Vue

<template>
<div
id="app"
:dir="dir"
>
<page-header v-if="user" />
<main :class="{ 'authorizing': !user }">
<router-view />
</main>
<session-expired v-if="user" />
</div>
</template>
<script>
import PageHeader from '@/components/PageHeader';
import SessionExpired from '@/components/SessionExpired';
import firebase from 'firebase/app';
import { mapState } from 'vuex';
import 'firebase/firestore';
// TODO: store in env vars
firebase.initializeApp({
apiKey: 'AIzaSyA6MsmnLtqT4b11r-j15wwreRypO3AodcA',
authDomain: 'gamebrary.com',
databaseURL: 'https://gamebrary-8c736.firebaseio.com',
projectId: 'gamebrary-8c736',
storageBucket: 'gamebrary-8c736.appspot.com',
messagingSenderId: '324529217902',
});
const db = firebase.firestore();
export default {
name: 'App',
components: {
PageHeader,
SessionExpired,
},
data() {
return {
debugUserId: null,
};
},
computed: {
...mapState(['user', 'wallpaperUrl', 'settings', 'sessionExpired']),
userId() {
return this.debugUserId || this.user.uid;
},
dir() {
return this.settings && this.settings.language === 'ar'
? 'rtl'
: 'ltr';
},
isPublicBoard() {
return this.$route.meta && this.$route.meta.public;
},
},
mounted() {
this.init();
},
methods: {
init() {
if (this.isPublicBoard) {
return;
}
if (this.user) {
this.load();
} else if (this.$route.name !== 'auth') {
this.$router.replace({ name: 'auth' });
}
},
loadWallpapers() {
this.$store.dispatch('LOAD_WALLPAPERS')
.catch(() => {
this.$bvToast.toast('There was an error loading wallpapers', { title: 'Error', variant: 'danger' });
});
},
load() {
// TODO: move logic to actions
this.$store.dispatch('LOAD_RELEASES')
.then((releases) => {
const [latestRelease] = releases;
const latestReleaseVersion = latestRelease && latestRelease.tag_name;
const lastReleaseSeenByUser = (this.settings && this.settings.release) || null;
if (latestReleaseVersion !== lastReleaseSeenByUser) {
this.$store.commit('SET_NOTIFICATION', true);
}
});
this.loadWallpapers();
// TODO: remove onSnapshot? May get costly $$$
// TODO: track progresses as well
// TODO: move to actions
db.collection('lists').doc(this.userId)
.onSnapshot((doc) => {
if (doc.exists) {
const gameLists = doc.data();
this.$store.commit('SET_GAME_LISTS_LEGACY', gameLists);
}
});
// TODO: move to actions
db.collection('settings').doc(this.userId)
.onSnapshot((doc) => {
if (doc.exists) {
const settings = doc.data();
this.$store.commit('SET_SETTINGS', settings);
}
});
// TODO: move to actions
db.collection('tags').doc(this.userId)
.onSnapshot((doc) => {
if (doc.exists) {
const tags = doc.data();
this.$store.commit('SET_TAGS', tags);
}
});
// TODO: move to actions
db.collection('notes').doc(this.userId)
.onSnapshot((doc) => {
if (doc.exists) {
const notes = doc.data();
this.$store.commit('SET_NOTES', notes);
}
});
// TODO: move to actions
db.collection('progresses').doc(this.userId)
.onSnapshot((doc) => {
if (doc.exists) {
const progresses = doc.data();
this.$store.commit('SET_PROGRESSES', progresses);
}
});
},
},
};
</script>
<style lang="scss" rel="stylesheet/scss">
@import "~styles/styles";
</style>
<style lang="scss" rel="stylesheet/scss" scoped>
#app {
}
main {
position: fixed;
left: 50px;
height: 100vh;
width: calc(100vw - 50px);
overflow-y: auto;
&.authorizing {
width: 100%;
left: 0;
}
}
</style>