Commit 356da694 authored by Robin Borgogno's avatar Robin Borgogno

enlevage des console.log

parent 05588046
...@@ -29,10 +29,6 @@ export default { ...@@ -29,10 +29,6 @@ export default {
}, },
} }
console.log(user.id);
</script> </script>
<style scoped> <style scoped>
......
...@@ -4,7 +4,7 @@ import router from './router' ...@@ -4,7 +4,7 @@ import router from './router'
Vue.config.productionTip = false Vue.config.productionTip = false
sessionStorage.setItem('APIURL', 'http://localhost/projet-cdaw/backend/MVC/api.php') sessionStorage.setItem('APIURL', 'http://localhost/felten/projet-cdaw/backend/MVC/api.php')
new Vue({ new Vue({
router, router,
......
...@@ -67,7 +67,6 @@ export default { ...@@ -67,7 +67,6 @@ export default {
let response = await fetch(url, params) let response = await fetch(url, params)
let result = await response.json() let result = await response.json()
console.log(result)
document.getElementById("codeGame").innerHTML = result[0].id; document.getElementById("codeGame").innerHTML = result[0].id;
game.id = result[0].id; game.id = result[0].id;
// console.log(game.id) // console.log(game.id)
...@@ -88,7 +87,6 @@ export default { ...@@ -88,7 +87,6 @@ export default {
}, },
ajoutAdminGame: async function(){ ajoutAdminGame: async function(){
const url = sessionStorage.getItem('APIURL') + "/gameuser" const url = sessionStorage.getItem('APIURL') + "/gameuser"
console.log(game.id)
let data = { let data = {
"GAME_ID": game.id, "GAME_ID": game.id,
"USER_ID": user.id, "USER_ID": user.id,
...@@ -102,7 +100,6 @@ export default { ...@@ -102,7 +100,6 @@ export default {
}, },
JoueurPresent: async function(){ JoueurPresent: async function(){
let url = sessionStorage.getItem('APIURL') + "/gameuser/game" let url = sessionStorage.getItem('APIURL') + "/gameuser/game"
console.log(game.id)
url += "/" + game.id; url += "/" + game.id;
var params = { var params = {
method: "GET" method: "GET"
...@@ -119,7 +116,6 @@ export default { ...@@ -119,7 +116,6 @@ export default {
return return
} }
setTimeout(() => {if(game.id){this.JoueurPresent()}}, 3000) setTimeout(() => {if(game.id){this.JoueurPresent()}}, 3000)
// setInterval(() => {if(game.id){this.JoueurPresent()}}, 3000)
}, },
retour: async function() { retour: async function() {
......
...@@ -148,9 +148,6 @@ export default { ...@@ -148,9 +148,6 @@ export default {
let rock = this.rock let rock = this.rock
let paper = this.paper let paper = this.paper
let scissors = this.scissors let scissors = this.scissors
console.log("ID : " + user.id)
console.log("TOKEN : " + user.token)
await fetch( await fetch(
sessionStorage.getItem('APIURL') + `/user/${user.id}`, sessionStorage.getItem('APIURL') + `/user/${user.id}`,
{ {
......
...@@ -143,9 +143,7 @@ export default { ...@@ -143,9 +143,7 @@ export default {
var params = { var params = {
method: 'POST', method: 'POST',
body : JSON.stringify(data) }; body : JSON.stringify(data) };
console.log(params.body.lastname)
fetch(url, params) fetch(url, params)
.then(response=>response.json()) .then(response=>response.json())
.then(response=> { .then(response=> {
......
...@@ -77,7 +77,6 @@ export default { ...@@ -77,7 +77,6 @@ export default {
body : JSON.stringify(data) }; body : JSON.stringify(data) };
game.id=this.idgame; game.id=this.idgame;
let response = await fetch(url, params) let response = await fetch(url, params)
console.log(response)
this.$router.push("/playerPrivate") this.$router.push("/playerPrivate")
} }
}, },
......
...@@ -61,24 +61,20 @@ export default { ...@@ -61,24 +61,20 @@ export default {
{ {
method: "GET" method: "GET"
} }
) )
console.log(res) const result = await res.json()
const result = await res.json() if (result.length >= 1) {
console.log(result) game.id = result
if (result.length >= 1) { this.goGame(result)
game.id = result return
console.log(result) }
this.goGame(result) setTimeout(async () => {
return
}
setTimeout(async () => {
await this.findGame() await this.findGame()
}, 1000) }, 1000)
}, },
goGame: async function(gameID) { goGame: async function(gameID) {
let url = sessionStorage.getItem('APIURL') + "/gameuser/game" let url = sessionStorage.getItem('APIURL') + "/gameuser/game"
console.log(gameID)
url += "/" + gameID; url += "/" + gameID;
var params = { var params = {
method: "GET" method: "GET"
......
...@@ -38,19 +38,16 @@ export default { ...@@ -38,19 +38,16 @@ export default {
}, },
JoueurPresent: async function(){ JoueurPresent: async function(){
let url = sessionStorage.getItem('APIURL') + "/gameuser/game" let url = sessionStorage.getItem('APIURL') + "/gameuser/game"
console.log(game.id)
url += "/" + game.id; url += "/" + game.id;
var params = { var params = {
method: "GET" method: "GET"
} }
let response = await fetch(url,params) let response = await fetch(url,params)
let result = await response.json() let result = await response.json()
console.log(result)
let text = ""; let text = "";
result.forEach(user => { result.forEach(user => {
text += `<tr><h2 class='joueur' id='joueur'>${user.USER_ID}</h2></tr>` text += `<tr><h2 class='joueur' id='joueur'>${user.USER_ID}</h2></tr>`
}); });
console.log(text)
document.getElementById("joueurs").innerHTML = text document.getElementById("joueurs").innerHTML = text
if(result.length >= 2){ if(result.length >= 2){
this.$router.push(`/game/${game.id}`) this.$router.push(`/game/${game.id}`)
......
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