3868910dde
* actioncable needs puma not webrick * add framework * remove the old way * send events from server to client * get all events working * clean up receivable * map is polymorphic on message * add the moved event * make todo comments clear * verify before streaming from map channel * rubocop fixes * wasn't set up correctly for nodejs realtime
27 lines
905 B
JavaScript
27 lines
905 B
JavaScript
const {
|
|
// server sendable, client receivable
|
|
JUNTO_UPDATED,
|
|
|
|
// server receivable, client sendable
|
|
JOIN_CALL,
|
|
LEAVE_CALL,
|
|
JOIN_MAP,
|
|
LEAVE_MAP
|
|
} = require('../frontend/src/Metamaps/Realtime/events')
|
|
|
|
module.exports = function(io, store) {
|
|
store.subscribe(() => {
|
|
console.log(store.getState())
|
|
io.sockets.emit(JUNTO_UPDATED, store.getState())
|
|
})
|
|
|
|
io.on('connection', function(socket) {
|
|
io.sockets.emit(JUNTO_UPDATED, store.getState())
|
|
|
|
socket.on(JOIN_MAP, data => store.dispatch({ type: JOIN_MAP, payload: data }))
|
|
socket.on(LEAVE_MAP, () => store.dispatch({ type: LEAVE_MAP, payload: socket }))
|
|
socket.on(JOIN_CALL, data => store.dispatch({ type: JOIN_CALL, payload: data }))
|
|
socket.on(LEAVE_CALL, () => store.dispatch({ type: LEAVE_CALL, payload: socket }))
|
|
socket.on('disconnect', () => store.dispatch({ type: 'DISCONNECT', payload: socket }))
|
|
})
|
|
}
|