mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-22 20:17:47 +00:00
* ref: improve handling for room destroyed events * add missing translation * code review * implement kick handling * implement native handling * fix tests * code review changes * add dialog testId * fix end conf for react native * fix lobby test * add translation for lobby closing --------- Co-authored-by: Gabriel Borlea <gabriel.borlea@8x8.com>
57 lines
1.7 KiB
TypeScript
57 lines
1.7 KiB
TypeScript
import { IStore } from '../app/types';
|
|
import { configureInitialDevices } from '../base/devices/actions.web';
|
|
import { openDialog } from '../base/dialog/actions';
|
|
import { getBackendSafeRoomName } from '../base/util/uri';
|
|
|
|
import { DISMISS_CALENDAR_NOTIFICATION } from './actionTypes';
|
|
import LeaveReasonDialog from './components/web/LeaveReasonDialog.web';
|
|
import logger from './logger';
|
|
|
|
/**
|
|
* Opens {@code LeaveReasonDialog}.
|
|
*
|
|
* @param {string} [title] - The dialog title.
|
|
*
|
|
* @returns {Promise} Resolved when the dialog is closed.
|
|
*/
|
|
export function openLeaveReasonDialog(title?: string) {
|
|
return (dispatch: IStore['dispatch']): Promise<void> => new Promise(resolve => {
|
|
dispatch(openDialog(LeaveReasonDialog, {
|
|
onClose: resolve,
|
|
title
|
|
}));
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Dismisses calendar notification about next or ongoing event.
|
|
*
|
|
* @returns {Object}
|
|
*/
|
|
export function dismissCalendarNotification() {
|
|
return {
|
|
type: DISMISS_CALENDAR_NOTIFICATION
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Init.
|
|
*
|
|
* @returns {Promise<JitsiConnection>}
|
|
*/
|
|
export function init() {
|
|
return (dispatch: IStore['dispatch'], getState: IStore['getState']) => {
|
|
const room = getBackendSafeRoomName(getState()['features/base/conference'].room);
|
|
|
|
// 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: Error) => {
|
|
APP.API.notifyConferenceLeft(APP.conference.roomName);
|
|
logger.error(error);
|
|
}));
|
|
};
|
|
}
|