mobilizon.chapril.org-mobil.../js/src/App.vue

94 lines
1.9 KiB
Vue
Raw Normal View History

<template>
<div id="mobilizon">
<NavBar />
<main>
<router-view />
</main>
<mobilizon-footer />
</div>
</template>
<script lang="ts">
2019-08-13 08:43:37 +02:00
import NavBar from '@/components/NavBar.vue';
import { Component, Vue } from 'vue-property-decorator';
import {
AUTH_ACCESS_TOKEN,
AUTH_USER_EMAIL,
AUTH_USER_ID,
AUTH_USER_ROLE,
} from '@/constants';
2019-08-13 08:43:37 +02:00
import { CURRENT_USER_CLIENT, UPDATE_CURRENT_USER_CLIENT } from '@/graphql/user';
import Footer from '@/components/Footer.vue';
import Logo from '@/components/Logo.vue';
import { initializeCurrentActor } from '@/utils/auth';
2019-08-13 08:43:37 +02:00
@Component({
2019-01-18 14:47:10 +01:00
apollo: {
currentUser: {
query: CURRENT_USER_CLIENT,
},
2019-01-18 14:47:10 +01:00
},
2018-12-21 17:10:39 +01:00
components: {
Logo,
NavBar,
'mobilizon-footer': Footer,
},
2018-12-21 17:10:39 +01:00
})
export default class App extends Vue {
async created() {
if (await this.initializeCurrentUser()) {
await initializeCurrentActor(this.$apollo.provider.defaultClient);
}
}
private async initializeCurrentUser() {
2019-01-18 14:47:10 +01:00
const userId = localStorage.getItem(AUTH_USER_ID);
const userEmail = localStorage.getItem(AUTH_USER_EMAIL);
2019-08-12 16:04:16 +02:00
const accessToken = localStorage.getItem(AUTH_ACCESS_TOKEN);
const role = localStorage.getItem(AUTH_USER_ROLE);
2019-01-18 14:47:10 +01:00
if (userId && userEmail && accessToken && role) {
return await this.$apollo.mutate({
2019-01-18 14:47:10 +01:00
mutation: UPDATE_CURRENT_USER_CLIENT,
variables: {
id: userId,
email: userEmail,
isLoggedIn: true,
role,
2019-01-18 14:47:10 +01:00
},
});
}
return false;
}
2018-12-21 17:10:39 +01:00
}
</script>
<style lang="scss">
2019-08-13 08:43:37 +02:00
@import "variables";
2019-08-13 08:43:37 +02:00
/* Bulma imports */
@import "~bulma/bulma";
2019-08-13 08:43:37 +02:00
/* Buefy imports */
@import "~buefy/src/scss/buefy";
.router-enter-active,
.router-leave-active {
transition-property: opacity;
transition-duration: 0.25s;
}
.router-enter-active {
transition-delay: 0.25s;
}
.router-enter,
.router-leave-active {
opacity: 0;
}
body {
// background: #f7f8fa;
background: #ebebeb;
}
</style>