diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2017-05-11 19:47:49 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2017-05-12 00:13:57 +0200 |
commit | b494d2d141a942b0905ac46a551ff42878f0f081 (patch) | |
tree | 18d94a3e86d0749f013075a110d6c43efaa782de /frontend/src/sagas | |
parent | Add time limit setting (diff) | |
download | seven-wonders-b494d2d141a942b0905ac46a551ff42878f0f081.tar.gz seven-wonders-b494d2d141a942b0905ac46a551ff42878f0f081.tar.bz2 seven-wonders-b494d2d141a942b0905ac46a551ff42878f0f081.zip |
First attempt at lobby joining
Diffstat (limited to 'frontend/src/sagas')
-rw-r--r-- | frontend/src/sagas/gameBrowser.js | 40 | ||||
-rw-r--r-- | frontend/src/sagas/usernameChoice.js | 4 |
2 files changed, 26 insertions, 18 deletions
diff --git a/frontend/src/sagas/gameBrowser.js b/frontend/src/sagas/gameBrowser.js index 2dbd4040..596da428 100644 --- a/frontend/src/sagas/gameBrowser.js +++ b/frontend/src/sagas/gameBrowser.js @@ -1,10 +1,10 @@ -import { call, put, take } from 'redux-saga/effects' -import { eventChannel } from 'redux-saga' +import { call, put, take, apply } from 'redux-saga/effects' +import { eventChannel} from 'redux-saga' import { fromJS } from 'immutable' import { push } from 'react-router-redux' import { normalize } from 'normalizr' -import gameSchema from '../schemas/games' +import { game, gameList } from '../schemas/games' import { actions as gameActions, types } from '../redux/games' import { actions as playerActions } from '../redux/players' @@ -13,12 +13,12 @@ function gameBrowserChannel(socket) { return eventChannel(emit => { const makeHandler = type => event => { - const response = fromJS(JSON.parse(event.body)) + const response = JSON.parse(event.body) emit({ type, response }) } - const newGame = socket.subscribe('/topic/games', makeHandler(types.CREATE_OR_UPDATE_GAMES)) - const joinGame = socket.subscribe('/user/queue/lobby/joined', makeHandler(types.JOIN_GAME)) + const newGame = socket.subscribe('/topic/games', makeHandler(types.UPDATE_GAMES)) + const joinGame = socket.subscribe('/user/queue/lobby/joined', makeHandler(types.ENTER_LOBBY)) return () => { newGame.unsubscribe() @@ -35,15 +35,16 @@ export function *watchGames({ socket }) { const { type, response } = yield take(socketChannel) switch (type) { - case types.CREATE_OR_UPDATE_GAMES: - const normalizedResponse = normalize(response.toJS(), gameSchema) - yield put(playerActions.setPlayers(fromJS(normalizedResponse.entities.players))) - yield put(gameActions.createOrUpdateGame(fromJS(normalizedResponse.entities.games))) + case types.UPDATE_GAMES: + const normGameList = normalize(response, gameList) + yield put(playerActions.updatePlayers(fromJS(normGameList.entities.players))) + yield put(gameActions.updateGames(fromJS(normGameList.entities.games))) break - case types.JOIN_GAME: - yield put(gameActions.joinGame(response)) + case types.ENTER_LOBBY: + const normGame = normalize(response, game) + yield put(gameActions.enterLobby(fromJS(normGame.entities.games[normGame.result]))) socketChannel.close() - yield put(push(`/lobby/${response.id}`)) + yield put(push('/lobby')) break default: console.error('Unknown type') @@ -55,15 +56,22 @@ export function *watchGames({ socket }) { } export function *createGame({ socket }) { - const { name } = yield take(types.CREATE_GAME) + const { name } = yield take(types.REQUEST_CREATE_GAME) - socket.send("/app/lobby/create", JSON.stringify({ gameName: name }), {}) + yield apply(socket, socket.send, ["/app/lobby/create", JSON.stringify({ gameName: name }), {}]) +} + +export function *joinGame({ socket }) { + const { id } = yield take(types.REQUEST_JOIN_GAME) + + yield apply(socket, socket.send, ["/app/lobby/join", JSON.stringify({ gameId: id }), {}]) } export function *gameBrowserSaga(socketConnection) { yield [ call(watchGames, socketConnection), - call(createGame, socketConnection) + call(createGame, socketConnection), + call(joinGame, socketConnection) ] } diff --git a/frontend/src/sagas/usernameChoice.js b/frontend/src/sagas/usernameChoice.js index da720e9f..ad5b5341 100644 --- a/frontend/src/sagas/usernameChoice.js +++ b/frontend/src/sagas/usernameChoice.js @@ -17,13 +17,13 @@ function usernameValidationChannel(socket) { function *usernameValidation({ socket }) { const usernameChannel = yield call(usernameValidationChannel, socket) const user = yield take(usernameChannel) - yield put(actions.setUsername(user.get('username'), user.get('displayName'), user.get('index'))) + yield put(actions.setCurrentPlayer(user)) usernameChannel.close() yield put(push('/games')) } function *sendUsername({ socket }) { - const { username } = yield take(types.CHOOSE_USERNAME) + const { username } = yield take(types.REQUEST_CHOOSE_USERNAME) yield socket.send('/app/chooseName', JSON.stringify({ playerName: username |