about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/reducers/server.js
blob: 9775741483d7db2611f76d7669b015e0ea95f15a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { SERVER_FETCH_REQUEST, SERVER_FETCH_SUCCESS, SERVER_FETCH_FAIL } from 'flavours/glitch/actions/server';
import { Map as ImmutableMap, fromJS } from 'immutable';

const initialState = ImmutableMap({
  isLoading: true,
});

export default function server(state = initialState, action) {
  switch (action.type) {
  case SERVER_FETCH_REQUEST:
    return state.set('isLoading', true);
  case SERVER_FETCH_SUCCESS:
    return fromJS(action.server).set('isLoading', false);
  case SERVER_FETCH_FAIL:
    return state.set('isLoading', false);
  default:
    return state;
  }
}