mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-18 15:13:21 +08:00
19 lines
530 B
JavaScript
19 lines
530 B
JavaScript
import { SET_CURRENT_TEAM, GET_LIST_OF_TEAMS } from "../../app/action_types";
|
|
|
|
const initialState = { name: "", id: 0, current_team: true };
|
|
export const setCurrentTeam = (state = initialState, action) => {
|
|
if (action.type === SET_CURRENT_TEAM) {
|
|
return Object.assign({}, state, action.team);
|
|
}
|
|
return state;
|
|
};
|
|
|
|
export const getListOfTeams = (state = { collection: [] }, action) => {
|
|
if (action.type === GET_LIST_OF_TEAMS) {
|
|
return {
|
|
...state,
|
|
collection: action.payload
|
|
};
|
|
}
|
|
return state;
|
|
};
|