Listen for CallsChanged

This should avoid delays and such

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-06-01 15:31:46 +02:00
parent c03f0fb13d
commit 9db280bbe6
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
1 changed files with 17 additions and 7 deletions

View File

@ -18,7 +18,7 @@ limitations under the License.
import { EventType } from "matrix-js-sdk/src/@types/event";
import { MatrixEvent } from "matrix-js-sdk/src/models/event";
import { CallEvent, CallState, CallType, MatrixCall } from "matrix-js-sdk/src/webrtc/call";
import CallHandler from '../../CallHandler';
import CallHandler, { CallHandlerEvent } from '../../CallHandler';
import { EventEmitter } from 'events';
import { MatrixClientPeg } from "../../MatrixClientPeg";
import defaultDispatcher from "../../dispatcher/dispatcher";
@ -43,6 +43,12 @@ export default class CallEventGrouper extends EventEmitter {
call: MatrixCall;
state: CallState | CustomCallState;
constructor() {
super();
CallHandler.sharedInstance().addListener(CallHandlerEvent.CallsChanged, this.setCall)
}
private get invite(): MatrixEvent {
return this.events.find((event) => event.getType() === EventType.CallInvite);
}
@ -95,10 +101,10 @@ export default class CallEventGrouper extends EventEmitter {
private setCallListeners() {
if (!this.call) return;
this.call.addListener(CallEvent.State, this.setCallState);
this.call.addListener(CallEvent.State, this.setState);
}
private setCallState = () => {
private setState = () => {
if (SUPPORTED_STATES.includes(this.call?.state)) {
this.state = this.call.state;
} else {
@ -113,13 +119,17 @@ export default class CallEventGrouper extends EventEmitter {
this.emit(CallEventGrouperEvent.StateChanged, this.state);
}
public add(event: MatrixEvent) {
const callId = event.getContent().call_id;
this.events.push(event);
private setCall = () => {
const callId = this.events[0].getContent().call_id;
if (!this.call) {
this.call = CallHandler.sharedInstance().getCallById(callId);
this.setCallListeners();
}
this.setCallState();
this.setState();
}
public add(event: MatrixEvent) {
this.events.push(event);
this.setState();
}
}