2020-07-07 00:42:46 +03:00
|
|
|
/*
|
|
|
|
Copyright 2017, 2018 New Vector Ltd
|
|
|
|
Copyright 2019, 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
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';
|
|
|
|
|
2020-07-18 00:55:30 +03:00
|
|
|
import CallView from "./CallView";
|
2020-07-07 00:42:46 +03:00
|
|
|
import RoomViewStore from '../../../stores/RoomViewStore';
|
|
|
|
import CallHandler from '../../../CallHandler';
|
|
|
|
import dis from '../../../dispatcher/dispatcher';
|
|
|
|
import { ActionPayload } from '../../../dispatcher/payloads';
|
|
|
|
import PersistentApp from "../elements/PersistentApp";
|
|
|
|
import SettingsStore from "../../../settings/SettingsStore";
|
|
|
|
|
|
|
|
interface IProps {
|
2020-07-07 17:11:08 +03:00
|
|
|
// A Conference Handler implementation
|
|
|
|
// Must have a function signature:
|
|
|
|
// getConferenceCallForRoom(roomId: string): MatrixCall
|
|
|
|
ConferenceHandler: any;
|
2020-07-07 00:42:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
interface IState {
|
|
|
|
roomId: string;
|
|
|
|
activeCall: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class CallPreview extends React.Component<IProps, IState> {
|
|
|
|
private roomStoreToken: any;
|
|
|
|
private dispatcherRef: string;
|
2020-07-07 17:11:08 +03:00
|
|
|
private settingsWatcherRef: string;
|
2020-07-07 00:42:46 +03:00
|
|
|
|
|
|
|
constructor(props: IProps) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
roomId: RoomViewStore.getRoomId(),
|
|
|
|
activeCall: CallHandler.getAnyActiveCall(),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public componentDidMount() {
|
|
|
|
this.roomStoreToken = RoomViewStore.addListener(this.onRoomViewStoreUpdate);
|
|
|
|
this.dispatcherRef = dis.register(this.onAction);
|
|
|
|
}
|
|
|
|
|
|
|
|
public componentWillUnmount() {
|
|
|
|
if (this.roomStoreToken) {
|
|
|
|
this.roomStoreToken.remove();
|
|
|
|
}
|
|
|
|
dis.unregister(this.dispatcherRef);
|
2020-07-07 17:40:05 +03:00
|
|
|
SettingsStore.unwatchSetting(this.settingsWatcherRef);
|
2020-07-07 00:42:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
private onRoomViewStoreUpdate = (payload) => {
|
|
|
|
if (RoomViewStore.getRoomId() === this.state.roomId) return;
|
|
|
|
this.setState({
|
|
|
|
roomId: RoomViewStore.getRoomId(),
|
|
|
|
});
|
2020-07-07 17:40:05 +03:00
|
|
|
};
|
2020-07-07 00:42:46 +03:00
|
|
|
|
|
|
|
private onAction = (payload: ActionPayload) => {
|
|
|
|
switch (payload.action) {
|
|
|
|
// listen for call state changes to prod the render method, which
|
|
|
|
// may hide the global CallView if the call it is tracking is dead
|
|
|
|
case 'call_state':
|
|
|
|
this.setState({
|
|
|
|
activeCall: CallHandler.getAnyActiveCall(),
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
2020-07-07 17:40:05 +03:00
|
|
|
};
|
2020-07-07 00:42:46 +03:00
|
|
|
|
|
|
|
private onCallViewClick = () => {
|
|
|
|
const call = CallHandler.getAnyActiveCall();
|
|
|
|
if (call) {
|
|
|
|
dis.dispatch({
|
|
|
|
action: 'view_room',
|
|
|
|
room_id: call.groupRoomId || call.roomId,
|
|
|
|
});
|
|
|
|
}
|
2020-07-07 17:40:05 +03:00
|
|
|
};
|
2020-07-07 00:42:46 +03:00
|
|
|
|
|
|
|
public render() {
|
2020-07-17 23:02:51 +03:00
|
|
|
const callForRoom = CallHandler.getCallForRoom(this.state.roomId);
|
|
|
|
const showCall = (
|
|
|
|
this.state.activeCall &&
|
|
|
|
this.state.activeCall.call_state === 'connected' &&
|
|
|
|
!callForRoom
|
|
|
|
);
|
|
|
|
|
|
|
|
if (showCall) {
|
|
|
|
return (
|
|
|
|
<CallView
|
|
|
|
className="mx_CallPreview" onClick={this.onCallViewClick}
|
|
|
|
ConferenceHandler={this.props.ConferenceHandler}
|
|
|
|
showHangup={true}
|
|
|
|
/>
|
2020-07-07 00:42:46 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-07-17 23:02:51 +03:00
|
|
|
return <PersistentApp />;
|
2020-07-07 00:42:46 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|