jiti-meet/react/features/lobby/actions.native.js

23 lines
516 B
JavaScript
Raw Normal View History

import { batch } from 'react-redux';
import { appNavigate } from '../app/actions';
2020-05-20 08:25:31 +00:00
import { hideLobbyScreen, setKnockingState } from './actions.any';
export * from './actions.any';
/**
* Cancels the ongoing knocking and abandons the join flow.
*
* @returns {Function}
*/
export function cancelKnocking() {
return dispatch => {
batch(() => {
dispatch(setKnockingState(false));
dispatch(hideLobbyScreen());
dispatch(appNavigate(undefined));
});
};
}