summaryrefslogtreecommitdiff
path: root/frontend/src/containers/HomePage/saga.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/containers/HomePage/saga.js')
-rw-r--r--frontend/src/containers/HomePage/saga.js56
1 files changed, 2 insertions, 54 deletions
diff --git a/frontend/src/containers/HomePage/saga.js b/frontend/src/containers/HomePage/saga.js
index 349a1d15..24f385c9 100644
--- a/frontend/src/containers/HomePage/saga.js
+++ b/frontend/src/containers/HomePage/saga.js
@@ -1,57 +1,5 @@
-import { call, put, take } from 'redux-saga/effects'
-import { eventChannel } from 'redux-saga'
-import { ENTER_GAME } from './actions'
-import { setUsername } from '../UserRepo/actions'
-
-import gameBrowserSaga from '../GameBrowser/saga'
-
-function* sendUsername(socketConnection) {
- const { username: playerName } = yield take(ENTER_GAME)
- const { socket } = socketConnection
-
- socket.send("/app/chooseName", JSON.stringify({
- playerName
- }), {})
-}
-
-function createSocketChannel(socket) {
- return eventChannel(emit => {
- const receiveUsername = socket.subscribe('/user/queue/nameChoice', event => {
- emit(JSON.parse(event.body))
- })
-
- const unsubscribe = () => {
- receiveUsername.unsubscribe()
- }
-
- return unsubscribe
- })
-}
-
-function* validateUsername(socketConnection) {
- const { socket } = socketConnection
- const socketChannel = createSocketChannel(socket)
-
- const response = yield take(socketChannel)
-
- if (response.error) {
- return false
- }
-
- yield put(setUsername(response.userName, response.displayName, response.index))
- return true
-}
-
-function* homeSaga(socketConnection) {
- console.log('here')
- let validated = false
- do {
- const [, usernameValid] = yield [
- call(sendUsername, socketConnection),
- call(validateUsername, socketConnection)
- ]
- validated = usernameValid
- } while (!validated)
+function *homeSaga(wsConnection) {
+ yield console.log('home saga')
}
export default homeSaga
bgstack15