Commit 5ee521d2 authored by quentin.vrel's avatar quentin.vrel

lobby handles actual data

parent c45159f1
<template> <template>
<div class="lobby"> <div class="lobby">
<user-ribbon class="lobby-ribbon" username="Josie Péritel"/> <user-ribbon class="lobby-ribbon" :username="this.user.login" :pathToImage="this.user.avatar"/>
<div class="lobby-content"> <div class="lobby-content">
<div class="lobby-column"> <div class="lobby-column">
<page-title pagetitle="Parties"/> <page-title pagetitle="Parties"/>
...@@ -33,7 +33,7 @@ import UserRibbon from '@/components/UserRibbon.vue' ...@@ -33,7 +33,7 @@ import UserRibbon from '@/components/UserRibbon.vue'
import PageTitle from '@/components/PageTitle.vue' import PageTitle from '@/components/PageTitle.vue'
import ButtonText from '@/components/ButtonText.vue' import ButtonText from '@/components/ButtonText.vue'
import TextInput from '@/components/form/TextInput.vue' import TextInput from '@/components/form/TextInput.vue'
import User from '@/model/user.js'
export default { export default {
name: 'lobby', name: 'lobby',
...@@ -44,12 +44,24 @@ export default { ...@@ -44,12 +44,24 @@ export default {
TextInput TextInput
}, },
methods: { methods: {
getUserInfo: async function(){
let userJson = JSON.parse(localStorage.getItem('user'));
let user = new User(userJson.id_user, userJson.id_role, userJson.login, userJson.avatar, userJson.lastname, userJson.firstname, userJson.mail);
let token = userJson.jwt_token;
this.user = user;
this.token = token;
},
updateGames: async function(){ updateGames: async function(){
let response = await fetch(this.$apiRoot+'/game/public', {method: 'GET'}); const head = new Headers();
if (response.ok){ head.append('Authorization', 'bearer '+this.token);
let json = await response.json(); await fetch(this.$apiRoot+'/game/public', {method: 'GET', headers: head})
this.games=json; .then(response => response.json())
} .then(json => this.games = json)
.catch(() => {
alert("Votre session a expiré");
this.$router.push("/");
});
}, },
/* /*
* using the id of the hovered button, highlight (id>0) or set back to default style (id=0) the relevant button * using the id of the hovered button, highlight (id>0) or set back to default style (id=0) the relevant button
...@@ -75,7 +87,7 @@ export default { ...@@ -75,7 +87,7 @@ export default {
onSubmitMenu: function(){ onSubmitMenu: function(){
if (event.submitter.id=='profile') { if (event.submitter.id=='profile') {
this.$router.push('profile'); this.$router.push('profile/'+this.user.id_user);
} }
if (event.submitter.id=='new') { if (event.submitter.id=='new') {
this.$router.push('new'); this.$router.push('new');
...@@ -92,19 +104,28 @@ export default { ...@@ -92,19 +104,28 @@ export default {
}, },
data () { data () {
return { return {
games: [ user: [],
{ token: '',
"ID_GAME": "2", games: []
"NB_PLAYER": "1",
"LOGIN": "admin"
}
]
} }
}, },
mounted () { beforeCreate () {
if (localStorage.getItem('user') == null) {
alert('Vous devez être connecté');
this.$router.push('/');
}
},
created () {
this.getUserInfo();
this.handle = setInterval(this.updateGames, 1000) this.handle = setInterval(this.updateGames, 1000)
},
destroyed () {
clearInterval(this.handle);
} }
} }
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment