gamebrary/src/main.js

75 lines
1.8 KiB
JavaScript
Raw Normal View History

2018-10-19 05:15:28 +00:00
import Vue from 'vue';
import VueAxios from 'vue-axios';
import VueFire from 'vuefire';
2018-10-19 05:15:28 +00:00
import VueI18n from 'vue-i18n';
import axios from 'axios';
2018-11-05 02:28:29 +00:00
import VueAnalytics from 'vue-analytics';
2018-11-08 03:41:27 +00:00
import Raven from 'raven-js';
import RavenVue from 'raven-js/plugins/vue';
2018-10-19 05:15:28 +00:00
import App from './App';
2018-12-19 16:30:09 +00:00
import messages from './i18n/';
import store from './store/';
import router from './router';
2018-10-19 05:15:28 +00:00
const EventBus = new Vue();
Object.defineProperties(Vue.prototype, {
$bus: {
get() {
return EventBus;
},
},
});
2019-06-18 21:15:14 +00:00
Vue.use(VueAnalytics, { id: 'UA-120053966-1', router });
Vue.use(VueAxios, axios);
Vue.use(VueFire);
Vue.use(VueI18n);
2018-10-19 05:15:28 +00:00
2018-11-08 03:41:27 +00:00
if (process.env.NODE_ENV !== 'development') {
Raven
.config('https://15928bc58e7b45ac93878da6d8146064@sentry.io/1315568')
.addPlugin(RavenVue, Vue)
.install();
}
2018-10-19 05:15:28 +00:00
Vue.config.productionTip = false;
router.beforeEach((to, from, next) => {
if (to.meta.requiresAuth && !store.getters.auth) {
next('/');
} else {
2018-11-05 02:27:14 +00:00
if (to.meta && to.meta.title) {
document.title = `${to.meta.title} - Gamebrary`;
}
2018-10-19 05:15:28 +00:00
next();
}
});
2019-06-22 12:43:51 +00:00
const vuexStorage = localStorage && localStorage.vuex
? JSON.parse(localStorage.vuex)
: null;
2019-06-25 17:58:06 +00:00
if (vuexStorage && vuexStorage.user && window.FS && window.location.origin.indexOf('localhost') === -1) {
const { displayName, email, dateJoined } = vuexStorage.user;
window.FS.identify(vuexStorage.user.uid, { displayName, email, dateJoined });
}
2019-06-22 12:58:38 +00:00
const locale = vuexStorage && vuexStorage.settings && vuexStorage.settings.language
2019-06-22 12:43:51 +00:00
? vuexStorage.settings.language
2019-06-22 12:41:05 +00:00
: 'en';
2019-05-18 14:21:40 +00:00
const i18n = new VueI18n({ locale, messages });
2018-10-19 05:15:28 +00:00
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
i18n,
store,
components: { App },
template: '<App/>',
});