67 lines
2.3 KiB
TypeScript
67 lines
2.3 KiB
TypeScript
import { AnyAction } from 'redux';
|
|
|
|
import { IStore } from '../app/types';
|
|
import { hideDialog, openDialog } from '../base/dialog/actions';
|
|
import MiddlewareRegistry from '../base/redux/MiddlewareRegistry';
|
|
|
|
import { BEGIN_ADD_PEOPLE, HIDE_ADD_PEOPLE_DIALOG } from './actionTypes';
|
|
import AddPeopleDialog from './components/add-people-dialog/web/AddPeopleDialog';
|
|
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);
|
|
case HIDE_ADD_PEOPLE_DIALOG:
|
|
return _hideAddPeopleDialog(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)}.
|
|
*/
|
|
function _beginAddPeople({ dispatch }: IStore, next: Function, action: AnyAction) {
|
|
const result = next(action);
|
|
|
|
dispatch(openDialog(AddPeopleDialog));
|
|
|
|
return result;
|
|
}
|
|
|
|
/**
|
|
* Notifies the feature invite that the action {@link HIDE_ADD_PEOPLE_DIALOG} 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 HIDE_ADD_PEOPLE_DIALOG} which is
|
|
* being dispatched in the specified {@code store}.
|
|
* @private
|
|
* @returns {*} The value returned by {@code next(action)}.
|
|
*/
|
|
function _hideAddPeopleDialog({ dispatch }: IStore, next: Function, action: AnyAction) {
|
|
dispatch(hideDialog(AddPeopleDialog));
|
|
|
|
return next(action);
|
|
}
|