gamebrary/src/App.vue

175 lines
3.8 KiB
Vue
Raw Normal View History

2018-10-19 05:15:28 +00:00
<template>
2019-11-08 20:34:06 +00:00
<div
id="app"
:dir="dir"
>
2020-09-28 23:27:08 +00:00
<page-header v-if="user" />
<main :class="{ 'authorizing': !user }">
2020-09-26 00:09:20 +00:00
<router-view />
</main>
2020-09-28 23:27:08 +00:00
<session-expired v-if="user" />
2019-11-08 20:34:06 +00:00
</div>
2018-10-19 05:15:28 +00:00
</template>
<script>
2020-08-11 04:16:43 +00:00
import PageHeader from '@/components/PageHeader';
2020-09-23 23:01:39 +00:00
import SessionExpired from '@/components/SessionExpired';
2018-11-05 02:28:29 +00:00
import firebase from 'firebase/app';
2019-10-09 16:30:07 +00:00
import { mapState } from 'vuex';
2018-11-05 02:28:29 +00:00
import 'firebase/firestore';
2020-08-15 00:00:04 +00:00
// TODO: store in env vars
2018-11-05 02:28:29 +00:00
firebase.initializeApp({
2019-11-08 19:56:03 +00:00
apiKey: 'AIzaSyA6MsmnLtqT4b11r-j15wwreRypO3AodcA',
authDomain: 'gamebrary.com',
databaseURL: 'https://gamebrary-8c736.firebaseio.com',
projectId: 'gamebrary-8c736',
storageBucket: 'gamebrary-8c736.appspot.com',
messagingSenderId: '324529217902',
2018-11-05 02:28:29 +00:00
});
const db = firebase.firestore();
2018-10-19 05:15:28 +00:00
export default {
2019-11-08 19:56:03 +00:00
name: 'App',
2018-10-19 05:15:28 +00:00
2019-11-08 19:56:03 +00:00
components: {
2020-08-11 04:16:43 +00:00
PageHeader,
2020-09-23 23:01:39 +00:00
SessionExpired,
2019-11-08 19:56:03 +00:00
},
2020-08-11 04:16:43 +00:00
data() {
return {
debugUserId: null,
};
},
2019-11-08 19:56:03 +00:00
computed: {
2020-09-23 23:01:39 +00:00
...mapState(['user', 'wallpaperUrl', 'settings', 'sessionExpired']),
2018-11-21 02:43:10 +00:00
2020-08-11 04:16:43 +00:00
userId() {
return this.debugUserId || this.user.uid;
},
2019-11-08 19:56:03 +00:00
dir() {
return this.settings && this.settings.language === 'ar'
? 'rtl'
: 'ltr';
},
},
mounted() {
this.init();
},
methods: {
init() {
if (this.user) {
this.load();
2020-09-28 23:27:08 +00:00
} else if (this.$route.name !== 'auth') {
this.$router.replace({ name: 'auth' });
2019-11-08 19:56:03 +00:00
}
},
2020-09-28 23:27:08 +00:00
loadWallpapers() {
this.$store.dispatch('LOAD_WALLPAPERS')
.catch(() => {
this.$bvToast.toast('There was an error loading wallpapers', { title: 'Error', variant: 'danger' });
});
},
2019-11-08 19:56:03 +00:00
load() {
2020-09-28 23:30:49 +00:00
// 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;
2020-09-09 23:44:31 +00:00
if (latestReleaseVersion !== lastReleaseSeenByUser) {
this.$store.commit('SET_NOTIFICATION', true);
}
});
2020-08-28 21:57:28 +00:00
this.loadWallpapers();
2020-09-28 23:30:49 +00:00
// TODO: remove onSnapshot? May get costly $$$
2020-08-28 21:57:28 +00:00
// TODO: track progresses as well
2019-12-03 18:26:35 +00:00
// TODO: move to actions
2020-08-11 04:16:43 +00:00
db.collection('lists').doc(this.userId)
2019-11-08 19:56:03 +00:00
.onSnapshot((doc) => {
if (doc.exists) {
const gameLists = doc.data();
2020-08-18 22:01:16 +00:00
this.$store.commit('SET_GAME_LISTS_LEGACY', gameLists);
2019-11-08 19:56:03 +00:00
}
});
2019-12-03 18:26:35 +00:00
// TODO: move to actions
2020-08-11 04:16:43 +00:00
db.collection('settings').doc(this.userId)
2019-11-08 19:56:03 +00:00
.onSnapshot((doc) => {
if (doc.exists) {
const settings = doc.data();
this.$store.commit('SET_SETTINGS', settings);
}
});
2019-12-03 18:26:35 +00:00
// TODO: move to actions
2020-08-11 04:16:43 +00:00
db.collection('tags').doc(this.userId)
2019-11-08 19:56:03 +00:00
.onSnapshot((doc) => {
if (doc.exists) {
const tags = doc.data();
this.$store.commit('SET_TAGS', tags);
}
});
2019-12-03 18:26:35 +00:00
// TODO: move to actions
2020-08-11 04:16:43 +00:00
db.collection('notes').doc(this.userId)
2019-11-08 19:56:03 +00:00
.onSnapshot((doc) => {
if (doc.exists) {
const notes = doc.data();
this.$store.commit('SET_NOTES', notes);
}
});
// TODO: move to actions
2020-08-11 04:16:43 +00:00
db.collection('progresses').doc(this.userId)
.onSnapshot((doc) => {
if (doc.exists) {
const progresses = doc.data();
this.$store.commit('SET_PROGRESSES', progresses);
}
});
2019-11-08 19:56:03 +00:00
},
},
2018-10-19 05:15:28 +00:00
};
</script>
<style lang="scss" rel="stylesheet/scss">
2020-08-25 23:41:57 +00:00
@import "~styles/styles";
2018-10-19 05:15:28 +00:00
</style>
2019-02-15 22:58:32 +00:00
<style lang="scss" rel="stylesheet/scss" scoped>
2019-11-08 20:34:06 +00:00
#app {
2020-09-26 00:09:20 +00:00
}
main {
position: fixed;
left: 50px;
height: 100vh;
width: calc(100vw - 50px);
overflow-y: auto;
2020-09-28 23:27:08 +00:00
&.authorizing {
width: 100%;
left: 0;
}
2019-11-08 20:34:06 +00:00
}
2019-02-15 22:58:32 +00:00
</style>