If there already is a Jitsi widget pin it
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>pull/21833/head
							parent
							
								
									e9ea3cad76
								
							
						
					
					
						commit
						314ab7a94d
					
				|  | @ -61,7 +61,6 @@ import Modal from './Modal'; | |||
| import { _t } from './languageHandler'; | ||||
| import dis from './dispatcher/dispatcher'; | ||||
| import WidgetUtils from './utils/WidgetUtils'; | ||||
| import WidgetEchoStore from './stores/WidgetEchoStore'; | ||||
| import SettingsStore from './settings/SettingsStore'; | ||||
| import {Jitsi} from "./widgets/Jitsi"; | ||||
| import {WidgetType} from "./widgets/WidgetType"; | ||||
|  | @ -88,6 +87,7 @@ import { randomUppercaseString, randomLowercaseString } from "matrix-js-sdk/src/ | |||
| import EventEmitter from 'events'; | ||||
| import SdkConfig from './SdkConfig'; | ||||
| import { ensureDMExists, findDMForUser } from './createRoom'; | ||||
| import { WidgetLayoutStore, Container } from './stores/widgets/WidgetLayoutStore'; | ||||
| 
 | ||||
| export const PROTOCOL_PSTN = 'm.protocol.pstn'; | ||||
| export const PROTOCOL_PSTN_PREFIXED = 'im.vector.protocol.pstn'; | ||||
|  | @ -940,14 +940,10 @@ export default class CallHandler extends EventEmitter { | |||
| 
 | ||||
|         // prevent double clicking the call button
 | ||||
|         const room = MatrixClientPeg.get().getRoom(roomId); | ||||
|         const currentJitsiWidgets = WidgetUtils.getRoomWidgetsOfType(room, WidgetType.JITSI); | ||||
|         const hasJitsi = currentJitsiWidgets.length > 0 | ||||
|             || WidgetEchoStore.roomHasPendingWidgetsOfType(roomId, currentJitsiWidgets, WidgetType.JITSI); | ||||
|         if (hasJitsi) { | ||||
|             Modal.createTrackedDialog('Call already in progress', '', ErrorDialog, { | ||||
|                 title: _t('Call in Progress'), | ||||
|                 description: _t('A call is currently being placed!'), | ||||
|             }); | ||||
|         const jitsiWidget = WidgetStore.instance.getApps(roomId).find((app) => WidgetType.JITSI.matches(app.type)); | ||||
|         if (jitsiWidget) { | ||||
|             // If there already is a Jitsi widget pin it
 | ||||
|             WidgetLayoutStore.instance.moveToContainer(room, jitsiWidget, Container.Top); | ||||
|             return; | ||||
|         } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Šimon Brandner
						Šimon Brandner