From cc3db2982dc22899a9ebea21e8a8dfbfd710f842 Mon Sep 17 00:00:00 2001 From: Victor Chabbert Date: Fri, 20 Jan 2017 23:18:57 +0100 Subject: DUCKS! Refactor front architecture --- frontend/src/redux/user.js | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 frontend/src/redux/user.js (limited to 'frontend/src/redux/user.js') diff --git a/frontend/src/redux/user.js b/frontend/src/redux/user.js new file mode 100644 index 00000000..0279b49c --- /dev/null +++ b/frontend/src/redux/user.js @@ -0,0 +1,29 @@ +import { fromJS } from 'immutable' + +export const types = { + SET_USERNAME: 'USER/SET_USERNAME', +} + +export const setUsername = (userName, displayName, index) => ({ + type: types.SET_USERNAME, + userName, + index, + displayName +}) + +const initialState = fromJS({ + username: '', + displayName: '', + id: null +}) + +export default (state = initialState, action) => { + switch (action.type) { + case types.SET_USERNAME: + return state.set('username', action.userName) + .set('displayName', action.displayName) + .set('id', action.index) + default: + return state + } +} -- cgit