diff options
Diffstat (limited to 'controllers/games')
-rw-r--r-- | controllers/games/gameId.js | 8 | ||||
-rw-r--r-- | controllers/games/root.js | 22 |
2 files changed, 15 insertions, 15 deletions
diff --git a/controllers/games/gameId.js b/controllers/games/gameId.js index d3363fd..9487743 100644 --- a/controllers/games/gameId.js +++ b/controllers/games/gameId.js @@ -1,8 +1,8 @@ -import { getGame } from "../../database/games.js"; +import { getGame } from '../../database/games.js'; function makePageData(user, game) { return { - title: "Jouer", + title: 'Jouer', user: user, data: game, }; @@ -18,7 +18,7 @@ export function gameId_get(req, res) { game.letters = game.player2.letters; delete game.player1.letters; } - return res.render("game", makePageData(req.session.user, game)); + return res.render('game', makePageData(req.session.user, game)); } - return res.redirect("/games"); + return res.redirect('/games'); } diff --git a/controllers/games/root.js b/controllers/games/root.js index 4a4e80d..8b6fc22 100644 --- a/controllers/games/root.js +++ b/controllers/games/root.js @@ -1,17 +1,17 @@ -import { validationResult } from "express-validator"; +import { validationResult } from 'express-validator'; -import { getUserByUsername } from "../../database/users.js"; -import { listGames, newGame } from "../../database/games.js"; -import { emptyBoard, Bag } from "../../utils/board.js"; +import { getUserByUsername } from '../../database/users.js'; +import { listGames, newGame } from '../../database/games.js'; +import { emptyBoard, Bag } from '../../utils/board.js'; function makePageData(user) { return { - title: "Parties", + title: 'Parties', user: user, games: listGames(user.id), formdata: { - name: "", - username: "", + name: '', + username: '', }, errors: {}, }; @@ -20,7 +20,7 @@ function makePageData(user) { export function root_get(req, res) { let page = makePageData(req.session.user); page.games.forEach(g => g.data = JSON.parse(g.data)); - return res.render("games", page); + return res.render('games', page); } function makeNewGameData(name, player1, player2) { @@ -54,11 +54,11 @@ export function root_post(req, res) { if (gameId) { return res.redirect(302, `/games/${gameId}`); } else { - page.errors.mismatch = "Erreur du serveur: la création de partie a échoué"; + page.errors.mismatch = 'Erreur du serveur: la création de partie a échoué'; } } else { - page.errors.username = { msg: "L'identifiant n'existe pas." }; + page.errors.username = { msg: 'L\'identifiant n\'existe pas.' }; } } - return res.render("games", page); + return res.render('games', page); } |