2018-05-01 04:43:47 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import { openDialog } from '../base/dialog';
|
|
|
|
import { MiddlewareRegistry } from '../base/redux';
|
|
|
|
|
|
|
|
import { BEGIN_ADD_PEOPLE } from './actionTypes';
|
|
|
|
import { AddPeopleDialog } from './components';
|
|
|
|
import './middleware.any';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The middleware of the feature invite specific to Web/React.
|
|
|
|
*
|
|
|
|
* @param {Store} store - The redux store.
|
|
|
|
* @returns {Function}
|
|
|
|
*/
|
|
|
|
MiddlewareRegistry.register(store => next => action => {
|
|
|
|
switch (action.type) {
|
|
|
|
case BEGIN_ADD_PEOPLE:
|
|
|
|
return _beginAddPeople(store, next, action);
|
|
|
|
}
|
|
|
|
|
|
|
|
return next(action);
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notifies the feature invite that the action {@link BEGIN_ADD_PEOPLE} is being
|
|
|
|
* dispatched within a specific redux {@code store}.
|
|
|
|
*
|
|
|
|
* @param {Store} store - The redux store in which the specified {@code action}
|
|
|
|
* is being dispatched.
|
|
|
|
* @param {Dispatch} next - The redux {@code dispatch} function to dispatch the
|
|
|
|
* specified {@code action} to the specified {@code store}.
|
|
|
|
* @param {Action} action - The redux action {@code BEGIN_ADD_PEOPLE} which is
|
|
|
|
* being dispatched in the specified {@code store}.
|
|
|
|
* @private
|
|
|
|
* @returns {*} The value returned by {@code next(action)}.
|
|
|
|
*/
|
2019-02-26 10:41:57 +00:00
|
|
|
function _beginAddPeople({ dispatch }, next, action) {
|
2018-05-01 04:43:47 +00:00
|
|
|
const result = next(action);
|
|
|
|
|
2019-02-26 10:41:57 +00:00
|
|
|
dispatch(openDialog(AddPeopleDialog));
|
2018-05-01 04:43:47 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|