jiti-meet/react/features/base/known-domains/middleware.js

58 lines
1.3 KiB
JavaScript
Raw Normal View History

2018-05-11 15:27:37 +00:00
// @flow
import { getDefaultURL } from '../../app';
import { APP_WILL_MOUNT } from '../app';
2018-05-11 15:27:37 +00:00
import { SET_ROOM } from '../conference';
import { MiddlewareRegistry } from '../redux';
import { parseURIString } from '../util';
import { addKnownDomains } from './actions';
MiddlewareRegistry.register(store => next => action => {
const result = next(action);
switch (action.type) {
case APP_WILL_MOUNT:
2018-05-14 15:55:40 +00:00
_appWillMount(store);
2018-05-11 15:27:37 +00:00
break;
case SET_ROOM:
2018-05-14 15:55:40 +00:00
_setRoom(store);
2018-05-11 15:27:37 +00:00
break;
}
return result;
});
/**
2018-05-14 15:55:40 +00:00
* Adds the domain of the app's {@code defaultURL} to the list of domains known
* to the feature base/known-domains.
2018-05-11 15:27:37 +00:00
*
* @param {Object} store - The redux store.
* @private
* @returns {Promise}
*/
2018-05-14 15:55:40 +00:00
function _appWillMount({ dispatch, getState }) {
const defaultURL = parseURIString(getDefaultURL(getState));
2018-05-14 15:55:40 +00:00
dispatch(addKnownDomains(defaultURL.host));
2018-05-11 15:27:37 +00:00
}
/**
2018-05-14 15:55:40 +00:00
* Adds the domain of {@code locationURL} to the list of domains known to the
* feature base/known-domains.
2018-05-11 15:27:37 +00:00
*
* @param {Object} store - The redux store.
* @private
* @returns {Promise}
*/
2018-05-14 15:55:40 +00:00
function _setRoom({ dispatch, getState }) {
2018-05-11 15:27:37 +00:00
const { locationURL } = getState()['features/base/connection'];
2018-05-14 15:55:40 +00:00
let host;
2018-05-11 15:27:37 +00:00
locationURL
2018-05-14 15:55:40 +00:00
&& (host = locationURL.host)
&& dispatch(addKnownDomains(host));
2018-05-11 15:27:37 +00:00
}