2018-10-19 05:15:28 +00:00
|
|
|
<template>
|
2019-11-08 20:34:06 +00:00
|
|
|
<div
|
|
|
|
id="app"
|
2020-01-28 16:41:50 +00:00
|
|
|
:class="[theme, headerPosition, borderRadius]"
|
2019-11-08 20:34:06 +00:00
|
|
|
:style="style"
|
|
|
|
:dir="dir"
|
|
|
|
>
|
|
|
|
<nav-header />
|
2019-11-22 19:08:04 +00:00
|
|
|
<router-view v-if="user" />
|
2019-11-22 19:07:32 +00:00
|
|
|
<authorizing v-else />
|
2019-11-08 20:34:06 +00:00
|
|
|
<toast />
|
|
|
|
</div>
|
2018-10-19 05:15:28 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2019-08-06 22:45:59 +00:00
|
|
|
import NavHeader from '@/components/NavHeader';
|
2019-11-22 19:07:32 +00:00
|
|
|
import Authorizing from '@/pages/Authorizing';
|
2019-08-06 22:45:59 +00:00
|
|
|
import Toast from '@/components/Toast';
|
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/auth';
|
|
|
|
import 'firebase/firestore';
|
2019-04-09 04:17:26 +00:00
|
|
|
import 'firebase/storage';
|
2018-10-25 06:33:15 +00:00
|
|
|
|
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
|
|
|
});
|
|
|
|
|
2019-04-09 04:17:26 +00:00
|
|
|
const storage = firebase.storage().ref();
|
2018-10-25 06:33:15 +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: {
|
|
|
|
NavHeader,
|
2019-11-22 19:07:32 +00:00
|
|
|
Authorizing,
|
2019-11-08 19:56:03 +00:00
|
|
|
Toast,
|
|
|
|
},
|
2018-10-25 06:33:15 +00:00
|
|
|
|
2019-11-08 19:56:03 +00:00
|
|
|
computed: {
|
|
|
|
...mapState(['user', 'platform', 'wallpaperUrl', 'settings']),
|
2018-11-21 02:43:10 +00:00
|
|
|
|
2019-11-08 19:56:03 +00:00
|
|
|
dir() {
|
|
|
|
return this.settings && this.settings.language === 'ar'
|
|
|
|
? 'rtl'
|
|
|
|
: 'ltr';
|
|
|
|
},
|
2019-06-19 14:58:31 +00:00
|
|
|
|
2019-11-08 19:56:03 +00:00
|
|
|
style() {
|
2020-01-22 16:39:16 +00:00
|
|
|
return {
|
|
|
|
'background-image':
|
|
|
|
this.$route.name === 'game-board' &&
|
|
|
|
this.wallpaperUrl
|
|
|
|
? `url('${this.wallpaperUrl}')`
|
|
|
|
: null,
|
|
|
|
};
|
2019-11-08 19:56:03 +00:00
|
|
|
},
|
2019-04-09 04:17:26 +00:00
|
|
|
|
2019-11-08 19:56:03 +00:00
|
|
|
customWallpaper() {
|
|
|
|
// eslint-disable-next-line
|
2019-11-08 20:34:06 +00:00
|
|
|
return this.settings && this.settings.wallpapers && this.platform && this.settings.wallpapers[this.platform.code]
|
2019-11-08 19:56:03 +00:00
|
|
|
? this.settings.wallpapers[this.platform.code].url
|
|
|
|
: '';
|
|
|
|
},
|
2019-10-09 16:30:07 +00:00
|
|
|
|
2019-11-08 19:56:03 +00:00
|
|
|
theme() {
|
|
|
|
const hasPlatform = this.platform && this.platform.code;
|
|
|
|
const hasTheme = hasPlatform
|
2019-11-08 20:34:06 +00:00
|
|
|
&& this.settings
|
|
|
|
&& this.settings[this.platform.code]
|
|
|
|
&& this.settings[this.platform.code].theme;
|
2019-10-09 18:55:34 +00:00
|
|
|
|
2019-11-08 19:56:03 +00:00
|
|
|
const isGameBoard = this.$route.name === 'game-board';
|
|
|
|
|
|
|
|
const hasPlatformTheme = hasPlatform && hasTheme;
|
|
|
|
|
|
|
|
return isGameBoard && hasPlatformTheme
|
|
|
|
? `theme-${this.settings[this.platform.code].theme}`
|
|
|
|
: 'theme-default';
|
|
|
|
},
|
2020-01-22 16:39:16 +00:00
|
|
|
|
|
|
|
headerPosition() {
|
|
|
|
const hasPlatform = this.platform && this.platform.code;
|
|
|
|
const hasPosition = hasPlatform
|
|
|
|
&& this.settings
|
|
|
|
&& this.settings[this.platform.code]
|
|
|
|
&& this.settings[this.platform.code].position;
|
|
|
|
|
|
|
|
const isGameBoard = this.$route.name === 'game-board';
|
|
|
|
|
|
|
|
const hasPlatformPosition = hasPlatform && hasPosition;
|
|
|
|
|
|
|
|
return isGameBoard && hasPlatformPosition
|
|
|
|
? `${this.settings[this.platform.code].position}`
|
|
|
|
: 'top';
|
|
|
|
},
|
2020-01-28 16:41:50 +00:00
|
|
|
|
|
|
|
borderRadius() {
|
|
|
|
const hasPlatform = this.platform && this.platform.code;
|
|
|
|
const hasBorderRadius = hasPlatform
|
|
|
|
&& this.settings
|
|
|
|
&& this.settings[this.platform.code]
|
|
|
|
&& this.settings[this.platform.code].borderRadius;
|
|
|
|
|
|
|
|
const isGameBoard = this.$route.name === 'game-board';
|
|
|
|
|
|
|
|
const hasPlatformBorderRadius = hasPlatform && hasBorderRadius;
|
|
|
|
|
|
|
|
return isGameBoard && hasPlatformBorderRadius
|
|
|
|
? ''
|
|
|
|
: 'no-border-radius';
|
|
|
|
},
|
2019-11-08 19:56:03 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
customWallpaper(value) {
|
|
|
|
if (value) {
|
|
|
|
if (this.platform) {
|
|
|
|
this.loadWallpaper();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.$store.commit('SET_WALLPAPER_URL', '');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
this.init();
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
init() {
|
|
|
|
if (this.user) {
|
|
|
|
this.syncData();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.customWallpaper) {
|
|
|
|
this.loadWallpaper();
|
|
|
|
}
|
|
|
|
|
|
|
|
firebase.auth().getRedirectResult().then(({ additionalUserInfo, user }) => {
|
|
|
|
if (additionalUserInfo && additionalUserInfo.isNewUser) {
|
|
|
|
this.$store.dispatch('SEND_WELCOME_EMAIL', additionalUserInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (user) {
|
|
|
|
return this.initUser(user);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.handleAuthRedirect();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
handleAuthRedirect() {
|
|
|
|
const authProvider = this.$route.params.authProvider || 'google';
|
|
|
|
|
|
|
|
const firebaseAuthProvider = authProvider === 'twitter'
|
|
|
|
? new firebase.auth.TwitterAuthProvider()
|
|
|
|
: new firebase.auth.GoogleAuthProvider();
|
|
|
|
|
|
|
|
firebase.auth().signInWithRedirect(firebaseAuthProvider)
|
|
|
|
.catch((message) => {
|
|
|
|
this.$bus.$emit('TOAST', {
|
|
|
|
message,
|
|
|
|
type: 'error',
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
loadWallpaper() {
|
|
|
|
const wallpaperRef = this.customWallpaper;
|
|
|
|
this.$store.commit('SET_WALLPAPER_URL', '');
|
|
|
|
|
|
|
|
storage.child(wallpaperRef).getDownloadURL().then((url) => {
|
|
|
|
this.$store.commit('SET_WALLPAPER_URL', url);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
syncData() {
|
2019-12-18 23:03:57 +00:00
|
|
|
// TODO: track progresses as well
|
2019-12-03 18:26:35 +00:00
|
|
|
// TODO: move to actions
|
2019-11-08 19:56:03 +00:00
|
|
|
db.collection('lists').doc(this.user.uid)
|
|
|
|
.onSnapshot((doc) => {
|
|
|
|
if (doc.exists) {
|
|
|
|
const gameLists = doc.data();
|
|
|
|
this.$store.commit('SET_GAME_LISTS', gameLists);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2019-12-03 18:26:35 +00:00
|
|
|
// TODO: move to actions
|
2019-11-08 19:56:03 +00:00
|
|
|
db.collection('settings').doc(this.user.uid)
|
|
|
|
.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
|
2019-11-08 19:56:03 +00:00
|
|
|
db.collection('tags').doc(this.user.uid)
|
|
|
|
.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
|
2019-11-08 19:56:03 +00:00
|
|
|
db.collection('notes').doc(this.user.uid)
|
|
|
|
.onSnapshot((doc) => {
|
|
|
|
if (doc.exists) {
|
|
|
|
const notes = doc.data();
|
|
|
|
|
|
|
|
this.$store.commit('SET_NOTES', notes);
|
|
|
|
}
|
|
|
|
});
|
2019-12-17 05:05:35 +00:00
|
|
|
|
|
|
|
// TODO: move to actions
|
|
|
|
db.collection('progresses').doc(this.user.uid)
|
|
|
|
.onSnapshot((doc) => {
|
|
|
|
if (doc.exists) {
|
|
|
|
const progresses = doc.data();
|
|
|
|
|
|
|
|
this.$store.commit('SET_PROGRESSES', progresses);
|
|
|
|
}
|
|
|
|
});
|
2019-11-08 19:56:03 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
initUser(user) {
|
|
|
|
this.$store.commit('SET_USER', user);
|
|
|
|
this.loadSettings();
|
|
|
|
this.loadTags();
|
|
|
|
this.loadLists();
|
|
|
|
this.syncData();
|
|
|
|
},
|
|
|
|
|
|
|
|
loadSettings() {
|
2019-12-03 18:26:35 +00:00
|
|
|
// TODO: move to actions
|
2019-11-08 19:56:03 +00:00
|
|
|
const docRef = db.collection('settings').doc(this.user.uid);
|
2019-10-09 18:55:34 +00:00
|
|
|
|
2019-11-08 19:56:03 +00:00
|
|
|
docRef.get().then((doc) => {
|
|
|
|
const hasData = doc && doc.exists;
|
2019-10-09 16:30:07 +00:00
|
|
|
|
2019-11-08 19:56:03 +00:00
|
|
|
return hasData
|
|
|
|
? this.$store.commit('SET_SETTINGS', doc.data())
|
|
|
|
: this.initSettings();
|
|
|
|
}).catch(() => {
|
|
|
|
this.$bus.$emit('TOAST', { message: 'Authentication error', type: 'error' });
|
|
|
|
this.$router.push({ name: 'sessionExpired' });
|
|
|
|
});
|
2019-04-09 04:17:26 +00:00
|
|
|
},
|
|
|
|
|
2019-11-08 19:56:03 +00:00
|
|
|
loadLists() {
|
2019-12-03 18:26:35 +00:00
|
|
|
// TODO: move to actions
|
2019-11-08 19:56:03 +00:00
|
|
|
db.collection('lists').doc(this.user.uid).get()
|
|
|
|
.then((doc) => {
|
|
|
|
if (doc.exists) {
|
|
|
|
const data = doc.data();
|
|
|
|
this.$store.commit('SET_GAME_LISTS', data);
|
|
|
|
} else {
|
|
|
|
this.initList();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
this.$bus.$emit('TOAST', { message: 'Authentication error', type: 'error' });
|
|
|
|
this.$router.push({ name: 'sessionExpired' });
|
|
|
|
});
|
2018-10-25 06:33:15 +00:00
|
|
|
},
|
|
|
|
|
2019-11-08 19:56:03 +00:00
|
|
|
loadTags() {
|
2019-12-03 18:26:35 +00:00
|
|
|
// TODO: move to actions
|
2019-11-08 19:56:03 +00:00
|
|
|
db.collection('tags').doc(this.user.uid).get()
|
|
|
|
.then((doc) => {
|
|
|
|
if (doc.exists) {
|
|
|
|
const data = doc.data();
|
|
|
|
this.$store.commit('SET_TAGS', data);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
this.$bus.$emit('TOAST', { message: 'Authentication error', type: 'error' });
|
|
|
|
this.$router.push({ name: 'sessionExpired' });
|
|
|
|
});
|
2018-10-25 06:33:15 +00:00
|
|
|
},
|
|
|
|
|
2019-11-08 19:56:03 +00:00
|
|
|
initList() {
|
2019-12-03 18:26:35 +00:00
|
|
|
// TODO: move to actions
|
2019-11-08 19:56:03 +00:00
|
|
|
db.collection('lists').doc(this.user.uid).set({}, { merge: true })
|
|
|
|
.then(() => {
|
|
|
|
this.loadLists();
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
this.$bus.$emit('TOAST', { message: 'Authentication error', type: 'error' });
|
|
|
|
this.$router.push({ name: 'sessionExpired' });
|
|
|
|
});
|
2019-02-05 07:33:06 +00:00
|
|
|
},
|
|
|
|
|
2019-11-08 19:56:03 +00:00
|
|
|
initSettings() {
|
2019-12-03 18:26:35 +00:00
|
|
|
// TODO: move to actions
|
2019-11-08 19:56:03 +00:00
|
|
|
db.collection('settings').doc(this.user.uid).set({}, { merge: true })
|
|
|
|
.then(() => {
|
|
|
|
this.loadSettings();
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
this.$bus.$emit('TOAST', { message: 'Authentication error', type: 'error' });
|
|
|
|
this.$router.push({ name: 'sessionExpired' });
|
|
|
|
});
|
2018-10-25 06:33:15 +00:00
|
|
|
},
|
2019-11-08 19:56:03 +00:00
|
|
|
},
|
2018-10-19 05:15:28 +00:00
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" rel="stylesheet/scss">
|
2019-11-08 20:34:06 +00:00
|
|
|
@import url(https://fonts.googleapis.com/css?family=Fira+Sans:700|Roboto:400,400italic,700);
|
|
|
|
@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
|
|
|
@import "~styles/styles";
|
|
|
|
|
|
|
|
#app {
|
2020-01-22 16:39:16 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-11-08 20:34:06 +00:00
|
|
|
background: var(--body-background);
|
|
|
|
background-size: cover;
|
2019-12-13 17:35:57 +00:00
|
|
|
overflow-x: hidden;
|
2020-01-22 16:39:16 +00:00
|
|
|
|
2020-01-28 16:41:50 +00:00
|
|
|
&.no-border-radius {
|
|
|
|
--border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2020-01-22 16:39:16 +00:00
|
|
|
@media($small) {
|
|
|
|
&.bottom {
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
}
|
|
|
|
}
|
2019-11-08 20:34:06 +00:00
|
|
|
}
|
2019-02-15 22:58:32 +00:00
|
|
|
</style>
|