scinote-web/app/javascript/packs/shared/reducers/TeamReducers.js

17 lines
504 B
JavaScript
Raw Normal View History

2017-08-03 22:03:15 +08:00
import { SET_CURRENT_TEAM, GET_LIST_OF_TEAMS } from "../actions/types";
2017-08-02 23:27:05 +08:00
2017-08-03 22:03:15 +08:00
let initial_state = { name: "", id: 0, current_team:true }
export const setCurrentTeam = (state = initial_state, action) => {
2017-08-02 23:27:05 +08:00
if (action.type === SET_CURRENT_TEAM) {
2017-08-03 22:03:15 +08:00
return Object.assign({}, state, action.user);
}
return state;
};
export const getListOfTeams = (state = [initial_state], action) => {
if (action.type === GET_LIST_OF_TEAMS) {
return Object.assign([], state, action.payload);
2017-08-02 23:27:05 +08:00
}
return state;
};