client/src/reducers/miscReducer.js
author Alexandre Segura <mex.zktk@gmail.com>
Thu, 29 Jun 2017 17:02:21 +0200
changeset 107 e6f85e26b08c
parent 72 7634b424f426
child 129 d48946d164c6
permissions -rw-r--r--
Confirm logout when pending requests, try to purge offline.outbox

import * as types from '../constants/actionTypes';

export const autoSubmit = (state = false, action) => {
  switch (action.type) {
    case types.USER_TOGGLE_AUTO_SUBMIT:
      return action.value;
    default:
      return state;
  }
}

export const outbox = (state = [], action) => {
  switch (action.type) {
    case types.OFFLINE_PURGE_OUTBOX:
      // FIXME Does not work
      // Need to find a way to purge outbox
      // @see https://github.com/jevakallio/redux-offline/issues/68
      return state;
    default:
      return state;
  }
}