Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
import { CONFERENCE_JOINED } from '../base/conference/actionTypes';
|
|
import MiddlewareRegistry from '../base/redux/MiddlewareRegistry';
|
|
import { REMOVE_POLL, SAVE_POLL } from '../polls/actionTypes';
|
|
import { savePoll } from '../polls/actions';
|
|
|
|
import { removePollFromHistory, savePollInHistory } from './actions';
|
|
|
|
MiddlewareRegistry.register(({ dispatch, getState }) => next => action => {
|
|
const result = next(action);
|
|
const { room: meetingId } = getState()['features/base/conference'];
|
|
|
|
switch (action.type) {
|
|
|
|
case CONFERENCE_JOINED: {
|
|
const state = getState();
|
|
const pollsHistory = meetingId && state['features/polls-history'].polls?.[meetingId];
|
|
|
|
if (!pollsHistory) {
|
|
return null;
|
|
}
|
|
|
|
for (const key in pollsHistory) {
|
|
if (pollsHistory.hasOwnProperty(key) && pollsHistory[key].saved) {
|
|
dispatch(savePoll(key, pollsHistory[key]));
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
|
|
case REMOVE_POLL: {
|
|
const { poll, pollId } = action;
|
|
|
|
dispatch(removePollFromHistory(meetingId, pollId, poll));
|
|
break;
|
|
}
|
|
|
|
case SAVE_POLL: {
|
|
const { poll, pollId } = action;
|
|
|
|
dispatch(savePollInHistory(meetingId, pollId, poll));
|
|
break;
|
|
}
|
|
}
|
|
|
|
return result;
|
|
});
|