mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
Many of the events are not used at all or used only on one place. For the rest of them the listeners were added 2 times on promoted visitors and not cleaned at all.
63 lines
2.0 KiB
TypeScript
63 lines
2.0 KiB
TypeScript
import { CONFERENCE_JOIN_IN_PROGRESS } from '../base/conference/actionTypes';
|
|
import { getCurrentConference } from '../base/conference/functions';
|
|
import MiddlewareRegistry from '../base/redux/MiddlewareRegistry';
|
|
import StateListenerRegistry from '../base/redux/StateListenerRegistry';
|
|
import { sanitizeUrl } from '../base/util/uri';
|
|
|
|
import { TOGGLE_DOCUMENT_EDITING } from './actionTypes';
|
|
import { setDocumentUrl } from './actions';
|
|
|
|
const ETHERPAD_COMMAND = 'etherpad';
|
|
|
|
/**
|
|
* Middleware that captures actions related to collaborative document editing
|
|
* and notifies components not hooked into redux.
|
|
*
|
|
* @param {Store} store - The redux store.
|
|
* @returns {Function}
|
|
*/
|
|
// eslint-disable-next-line no-unused-vars
|
|
MiddlewareRegistry.register(({ dispatch, getState }) => next => action => {
|
|
switch (action.type) {
|
|
case CONFERENCE_JOIN_IN_PROGRESS: {
|
|
const { conference } = action;
|
|
|
|
conference.addCommandListener(ETHERPAD_COMMAND,
|
|
({ value }: { value: string; }) => {
|
|
let url;
|
|
const { etherpad_base: etherpadBase } = getState()['features/base/config'];
|
|
const etherpadBaseUrl = sanitizeUrl(etherpadBase);
|
|
|
|
if (etherpadBaseUrl) {
|
|
url = new URL(value, etherpadBaseUrl.toString()).toString();
|
|
}
|
|
|
|
dispatch(setDocumentUrl(url));
|
|
}
|
|
);
|
|
break;
|
|
}
|
|
case TOGGLE_DOCUMENT_EDITING: {
|
|
if (typeof APP !== 'undefined') {
|
|
APP.UI.onEtherpadClicked();
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
return next(action);
|
|
});
|
|
|
|
/**
|
|
* Set up state change listener to perform maintenance tasks when the conference
|
|
* is left or failed, e.g. Clear messages or close the chat modal if it's left
|
|
* open.
|
|
*/
|
|
StateListenerRegistry.register(
|
|
state => getCurrentConference(state),
|
|
(conference, { dispatch }, previousConference) => {
|
|
if (previousConference) {
|
|
dispatch(setDocumentUrl(undefined));
|
|
}
|
|
});
|