jiti-meet/react/features/base/connection/actions.web.js

52 lines
1.4 KiB
JavaScript
Raw Normal View History

// @flow
2017-02-03 18:50:06 +00:00
import type { Dispatch } from 'redux';
2016-12-12 21:13:17 +00:00
2017-02-03 18:50:06 +00:00
declare var APP: Object;
2017-02-16 21:22:40 +00:00
declare var config: Object;
2017-02-03 18:50:06 +00:00
import { configureInitialDevices } from '../devices';
2019-10-04 07:31:22 +00:00
import { getBackendSafeRoomName } from '../util';
export {
connectionDisconnected,
connectionEstablished,
connectionFailed,
setLocationURL
} from './actions.native';
import logger from './logger';
2016-12-12 21:13:17 +00:00
/**
* Opens new connection.
*
* @returns {Promise<JitsiConnection>}
*/
export function connect() {
2019-03-19 15:42:25 +00:00
return (dispatch: Dispatch<any>, getState: Function) => {
2019-10-04 07:31:22 +00:00
const room = getBackendSafeRoomName(getState()['features/base/conference'].room);
2016-12-12 21:13:17 +00:00
// XXX For web based version we use conference initialization logic
// from the old app (at the moment of writing).
return dispatch(configureInitialDevices()).then(
() => APP.conference.init({
roomName: room
}).catch(error => {
APP.API.notifyConferenceLeft(APP.conference.roomName);
logger.error(error);
}));
2016-12-12 21:13:17 +00:00
};
}
/**
* Closes connection.
*
* @param {boolean} [requestFeedback] - Whether or not to attempt showing a
* request for call feedback.
2016-12-12 21:13:17 +00:00
* @returns {Function}
*/
export function disconnect(requestFeedback: boolean = false) {
// XXX For web based version we use conference hanging up logic from the old
// app.
return () => APP.conference.hangup(requestFeedback);
2016-12-12 21:13:17 +00:00
}