2021-07-24 19:05:14 +08:00
|
|
|
/*
|
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
|
|
|
Copyright 2018 New Vector Ltd
|
|
|
|
Copyright 2019, 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
Copyright 2021 Šimon Brandner <simon.bra.ag@gmail.com>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import { CallType, MatrixCall } from 'matrix-js-sdk/src/webrtc/call';
|
|
|
|
import classNames from 'classnames';
|
|
|
|
import { replaceableComponent } from '../utils/replaceableComponent';
|
|
|
|
import CallHandler, { CallHandlerEvent } from '../CallHandler';
|
|
|
|
import dis from '../dispatcher/dispatcher';
|
|
|
|
import { MatrixClientPeg } from '../MatrixClientPeg';
|
|
|
|
import { _t } from '../languageHandler';
|
|
|
|
import RoomAvatar from '../components/views/avatars/RoomAvatar';
|
|
|
|
import AccessibleTooltipButton from '../components/views/elements/AccessibleTooltipButton';
|
|
|
|
import AccessibleButton from '../components/views/elements/AccessibleButton';
|
|
|
|
|
|
|
|
export const getIncomingCallToastKey = (callId: string) => `call_${callId}`;
|
|
|
|
|
|
|
|
interface IProps {
|
|
|
|
call: MatrixCall;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface IState {
|
|
|
|
silenced: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
@replaceableComponent("views.voip.IncomingCallToast")
|
|
|
|
export default class IncomingCallToast extends React.Component<IProps, IState> {
|
|
|
|
constructor(props: IProps) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
silenced: false,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount = () => {
|
|
|
|
CallHandler.sharedInstance().addListener(CallHandlerEvent.SilencedCallsChanged, this.onSilencedCallsChanged);
|
|
|
|
};
|
|
|
|
|
2021-07-25 14:06:11 +08:00
|
|
|
public componentWillUnmount(): void {
|
2021-07-24 19:05:14 +08:00
|
|
|
CallHandler.sharedInstance().removeListener(CallHandlerEvent.SilencedCallsChanged, this.onSilencedCallsChanged);
|
|
|
|
}
|
|
|
|
|
2021-07-25 14:06:11 +08:00
|
|
|
private onSilencedCallsChanged = (): void => {
|
2021-07-24 19:05:14 +08:00
|
|
|
this.setState({ silenced: CallHandler.sharedInstance().isCallSilenced(this.props.call.callId) });
|
|
|
|
};
|
|
|
|
|
2021-07-25 14:06:11 +08:00
|
|
|
private onAnswerClick= (e: React.MouseEvent): void => {
|
2021-07-24 19:05:14 +08:00
|
|
|
e.stopPropagation();
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'answer',
|
|
|
|
room_id: CallHandler.sharedInstance().roomIdForCall(this.props.call),
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2021-07-25 14:06:11 +08:00
|
|
|
private onRejectClick= (e: React.MouseEvent): void => {
|
2021-07-24 19:05:14 +08:00
|
|
|
e.stopPropagation();
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'reject',
|
|
|
|
room_id: CallHandler.sharedInstance().roomIdForCall(this.props.call),
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2021-07-25 14:06:11 +08:00
|
|
|
private onSilenceClick = (e: React.MouseEvent): void => {
|
2021-07-24 19:05:14 +08:00
|
|
|
e.stopPropagation();
|
|
|
|
const callId = this.props.call.callId;
|
|
|
|
this.state.silenced ?
|
|
|
|
CallHandler.sharedInstance().unSilenceCall(callId) :
|
|
|
|
CallHandler.sharedInstance().silenceCall(callId);
|
|
|
|
};
|
|
|
|
|
|
|
|
public render() {
|
|
|
|
const call = this.props.call;
|
2021-07-24 20:04:22 +08:00
|
|
|
const room = MatrixClientPeg.get().getRoom(CallHandler.sharedInstance().roomIdForCall(call));
|
2021-07-25 01:12:12 +08:00
|
|
|
const isVoice = call.type === CallType.Voice;
|
2021-07-24 19:05:14 +08:00
|
|
|
|
2021-07-25 01:12:12 +08:00
|
|
|
const contentClass = classNames("mx_IncomingCallToast_content", {
|
|
|
|
"mx_IncomingCallToast_content_voice": isVoice,
|
|
|
|
"mx_IncomingCallToast_content_video": !isVoice,
|
|
|
|
});
|
|
|
|
const silenceClass = classNames("mx_IncomingCallToast_iconButton", {
|
2021-07-24 19:05:14 +08:00
|
|
|
"mx_IncomingCallToast_unSilence": this.state.silenced,
|
|
|
|
"mx_IncomingCallToast_silence": !this.state.silenced,
|
|
|
|
});
|
|
|
|
|
|
|
|
return <React.Fragment>
|
2021-07-24 20:04:22 +08:00
|
|
|
<RoomAvatar
|
|
|
|
room={room}
|
|
|
|
height={32}
|
|
|
|
width={32}
|
|
|
|
/>
|
2021-07-25 01:12:12 +08:00
|
|
|
<div className={contentClass}>
|
2021-07-25 02:59:15 +08:00
|
|
|
<span className="mx_CallEvent_caller">
|
2021-07-24 20:04:22 +08:00
|
|
|
{ room ? room.name : _t("Unknown caller") }
|
2021-07-25 02:59:15 +08:00
|
|
|
</span>
|
2021-07-25 01:30:37 +08:00
|
|
|
<div className="mx_CallEvent_type">
|
|
|
|
<div className="mx_CallEvent_type_icon" />
|
|
|
|
{ isVoice ? _t("Voice call") : _t("Video call") }
|
|
|
|
</div>
|
2021-07-24 20:04:22 +08:00
|
|
|
<div className="mx_IncomingCallToast_buttons">
|
|
|
|
<AccessibleButton
|
2021-07-25 01:12:12 +08:00
|
|
|
className="mx_IncomingCallToast_button mx_IncomingCallToast_button_decline"
|
2021-07-24 20:04:22 +08:00
|
|
|
onClick={this.onRejectClick}
|
|
|
|
kind="danger"
|
|
|
|
>
|
2021-07-25 01:12:12 +08:00
|
|
|
<span> { _t("Decline") } </span>
|
2021-07-24 20:04:22 +08:00
|
|
|
</AccessibleButton>
|
|
|
|
<AccessibleButton
|
2021-07-25 01:12:12 +08:00
|
|
|
className="mx_IncomingCallToast_button mx_IncomingCallToast_button_accept"
|
2021-07-24 20:04:22 +08:00
|
|
|
onClick={this.onAnswerClick}
|
|
|
|
kind="primary"
|
|
|
|
>
|
2021-07-25 01:12:12 +08:00
|
|
|
<span> { _t("Accept") } </span>
|
2021-07-24 20:04:22 +08:00
|
|
|
</AccessibleButton>
|
|
|
|
</div>
|
2021-07-24 19:05:14 +08:00
|
|
|
</div>
|
2021-07-25 02:39:44 +08:00
|
|
|
<AccessibleTooltipButton
|
|
|
|
className={silenceClass}
|
|
|
|
onClick={this.onSilenceClick}
|
|
|
|
title={this.state.silenced ? _t("Sound on") : _t("Silence call")}
|
|
|
|
/>
|
2021-07-24 19:05:14 +08:00
|
|
|
</React.Fragment>;
|
|
|
|
}
|
|
|
|
}
|