scinote-web/app/javascript/packs/shared/reducers/TeamReducers.js
2017-08-07 13:51:22 +02:00

17 lines
491 B
JavaScript

import { SET_CURRENT_TEAM, GET_LIST_OF_TEAMS } from "../actions/types";
let initial_state = { name: "", id: 0, current_team:true }
export const setCurrentTeam = (state = initial_state, action) => {
if (action.type === SET_CURRENT_TEAM) {
return Object.assign({}, state, action.user);
}
return state;
};
export const getListOfTeams = (state = [initial_state], action) => {
if (action.type === GET_LIST_OF_TEAMS) {
return [...state, ...action.payload]
}
return state;
};