mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-04 22:00:42 +03:00
Delint
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
85399e8edf
commit
9383ecc46f
2 changed files with 12 additions and 12 deletions
|
@ -87,16 +87,16 @@ export default class CallEventGrouper extends EventEmitter {
|
||||||
|
|
||||||
private onSilencedCallsChanged = () => {
|
private onSilencedCallsChanged = () => {
|
||||||
const newState = CallHandler.sharedInstance().isCallSilenced(this.callId);
|
const newState = CallHandler.sharedInstance().isCallSilenced(this.callId);
|
||||||
this.emit(CallEventGrouperEvent.SilencedChanged, newState)
|
this.emit(CallEventGrouperEvent.SilencedChanged, newState);
|
||||||
}
|
};
|
||||||
|
|
||||||
public answerCall = () => {
|
public answerCall = () => {
|
||||||
this.call?.answer();
|
this.call?.answer();
|
||||||
}
|
};
|
||||||
|
|
||||||
public rejectCall = () => {
|
public rejectCall = () => {
|
||||||
this.call?.reject();
|
this.call?.reject();
|
||||||
}
|
};
|
||||||
|
|
||||||
public callBack = () => {
|
public callBack = () => {
|
||||||
defaultDispatcher.dispatch({
|
defaultDispatcher.dispatch({
|
||||||
|
@ -104,14 +104,14 @@ export default class CallEventGrouper extends EventEmitter {
|
||||||
type: this.isVoice ? CallType.Voice : CallType.Video,
|
type: this.isVoice ? CallType.Voice : CallType.Video,
|
||||||
room_id: [...this.events][0]?.getRoomId(),
|
room_id: [...this.events][0]?.getRoomId(),
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
public toggleSilenced = () => {
|
public toggleSilenced = () => {
|
||||||
const silenced = CallHandler.sharedInstance().isCallSilenced(this.callId);
|
const silenced = CallHandler.sharedInstance().isCallSilenced(this.callId);
|
||||||
silenced ?
|
silenced ?
|
||||||
CallHandler.sharedInstance().unSilenceCall(this.callId) :
|
CallHandler.sharedInstance().unSilenceCall(this.callId) :
|
||||||
CallHandler.sharedInstance().silenceCall(this.callId);
|
CallHandler.sharedInstance().silenceCall(this.callId);
|
||||||
}
|
};
|
||||||
|
|
||||||
private setCallListeners() {
|
private setCallListeners() {
|
||||||
if (!this.call) return;
|
if (!this.call) return;
|
||||||
|
@ -128,7 +128,7 @@ export default class CallEventGrouper extends EventEmitter {
|
||||||
else if (this.invite && this.call) this.state = CallState.Connecting;
|
else if (this.invite && this.call) this.state = CallState.Connecting;
|
||||||
}
|
}
|
||||||
this.emit(CallEventGrouperEvent.StateChanged, this.state);
|
this.emit(CallEventGrouperEvent.StateChanged, this.state);
|
||||||
}
|
};
|
||||||
|
|
||||||
private setCall = () => {
|
private setCall = () => {
|
||||||
if (this.call) return;
|
if (this.call) return;
|
||||||
|
@ -136,7 +136,7 @@ export default class CallEventGrouper extends EventEmitter {
|
||||||
this.call = CallHandler.sharedInstance().getCallById(this.callId);
|
this.call = CallHandler.sharedInstance().getCallById(this.callId);
|
||||||
this.setCallListeners();
|
this.setCallListeners();
|
||||||
this.setState();
|
this.setState();
|
||||||
}
|
};
|
||||||
|
|
||||||
public add(event: MatrixEvent) {
|
public add(event: MatrixEvent) {
|
||||||
this.events.add(event);
|
this.events.add(event);
|
||||||
|
|
|
@ -48,7 +48,7 @@ export default class CallEvent extends React.Component<IProps, IState> {
|
||||||
this.state = {
|
this.state = {
|
||||||
callState: this.props.callEventGrouper.state,
|
callState: this.props.callEventGrouper.state,
|
||||||
silenced: false,
|
silenced: false,
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
|
@ -191,7 +191,7 @@ export default class CallEvent extends React.Component<IProps, IState> {
|
||||||
mx_CallEvent_type_icon: true,
|
mx_CallEvent_type_icon: true,
|
||||||
mx_CallEvent_type_icon_voice: isVoice,
|
mx_CallEvent_type_icon_voice: isVoice,
|
||||||
mx_CallEvent_type_icon_video: !isVoice,
|
mx_CallEvent_type_icon_video: !isVoice,
|
||||||
})
|
});
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mx_CallEvent">
|
<div className="mx_CallEvent">
|
||||||
|
|
Loading…
Reference in a new issue