1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
import { fromJS } from 'immutable'
export const types = {
SET_USERNAME: 'USER/SET_USERNAME',
SET_USERNAMES: 'USER/SET_USERNAMES',
CHOOSE_USERNAME: 'USER/CHOOSE_USERNAME'
}
export const actions = {
setUsername: (username, displayName, index) => ({
type: types.SET_USERNAME,
username,
index,
displayName
}),
setPlayers: (players) => ({ type: types.SET_USERNAMES, players }),
chooseUsername: (username) => ({ type: types.CHOOSE_USERNAME, username }),
}
const initialState = fromJS({
all: {},
current: null
})
export default (state = initialState, action) => {
switch (action.type) {
case types.SET_USERNAME:
const user = fromJS({
username: action.username,
displayName: action.displayName,
index: action.index,
})
return state.setIn(['all', user.get('username')], user).set('current', user.get('username'))
case types.SET_USERNAMES:
return state.setIn(['all'], state.get('all').mergeDeep(action.players))
default:
return state
}
}
|