mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-04-03 09:20:22 +00:00
26 lines
590 B
JavaScript
26 lines
590 B
JavaScript
import { SET_ROOM } from '../base/conference';
|
|
import { MiddlewareRegistry } from '../base/redux';
|
|
|
|
import { initAnalytics } from './functions';
|
|
|
|
/**
|
|
* Middleware which intercepts config actions to handle evaluating analytics
|
|
* config based on the config stored in the store.
|
|
*
|
|
* @param {Store} store - The redux store.
|
|
* @returns {Function}
|
|
*/
|
|
MiddlewareRegistry.register(store => next => action => {
|
|
switch (action.type) {
|
|
case SET_ROOM: {
|
|
const result = next(action);
|
|
|
|
initAnalytics(store);
|
|
|
|
return result;
|
|
}
|
|
}
|
|
|
|
return next(action);
|
|
});
|