debug room socket connect dispatch
This commit is contained in:
parent
a0d721ab9a
commit
6e0ec94676
3 changed files with 26 additions and 8 deletions
|
@ -1 +1,18 @@
|
|||
[Visit site](https://play-node-go.herokuapp.com/)
|
||||
# Node Go
|
||||
A browser application to play Go in real time.
|
||||
|
||||
## Development Demo
|
||||
[The project in it's current state](https://play-node-go.herokuapp.com/)
|
||||
|
||||
## Features
|
||||
- [ ] Realtime communications
|
||||
- [ ] Multiple game settings
|
||||
- [ ] Customizable board size
|
||||
|
||||
|
||||
## Built with
|
||||
- [Express](https://expressjs.com)
|
||||
- [React](https://reactjs.org)
|
||||
- [PostgreSQL](https://postgresql.org)
|
||||
- [Socket.io](https://socket.io)
|
||||
- [Sass](https://sass-lang.com)
|
||||
|
|
|
@ -15,12 +15,12 @@ const launch = (nsp, dispatch) => {
|
|||
});
|
||||
|
||||
socket.on('room_connected', (data) => {
|
||||
dispatch({ type: 'ROOM', message: 'CONNECT_ROOM', body: data });
|
||||
dispatch({ type: 'ROOMS', message: 'CONNECT_ROOM', body: data });
|
||||
});
|
||||
|
||||
socket.on('new_user', (data) => {
|
||||
console.log('new_user received')
|
||||
dispatch({ type: 'ROOM', message: 'NEW_USER', body: data })
|
||||
dispatch({ type: 'ROOMS', message: 'NEW_USER', body: data })
|
||||
})
|
||||
|
||||
return socket;
|
||||
|
|
|
@ -25,8 +25,9 @@ export const roomsReducer = (state: state, action: action):state => {
|
|||
}
|
||||
|
||||
case 'NEW_USER': {
|
||||
console.log('hey')
|
||||
console.log(action.data)
|
||||
if (!action.data) {
|
||||
return state;
|
||||
}
|
||||
return state;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue