Files
ThreadNet-Web/src/components/views/voip/CallView/CallViewHeader.tsx
T

106 lines
3.5 KiB
TypeScript
Raw Normal View History

/*
Copyright 2021 New Vector Ltd
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 { Room } from 'matrix-js-sdk/src/models/room';
import React from 'react';
2021-12-09 09:10:23 +00:00
import { _t } from '../../../../languageHandler';
import RoomAvatar from '../../avatars/RoomAvatar';
2021-08-06 13:28:53 +02:00
import AccessibleTooltipButton from '../../elements/AccessibleTooltipButton';
interface CallControlsProps {
onExpand?: () => void;
onPin?: () => void;
onMaximize?: () => void;
}
const CallViewHeaderControls: React.FC<CallControlsProps> = ({ onExpand, onPin, onMaximize }) => {
2021-08-06 14:17:39 +02:00
return <div className="mx_CallViewHeader_controls">
{ onMaximize && <AccessibleTooltipButton
2021-08-07 09:38:26 +02:00
className="mx_CallViewHeader_button mx_CallViewHeader_button_fullscreen"
onClick={onMaximize}
2021-08-07 09:38:26 +02:00
title={_t("Fill Screen")}
/> }
{ onPin && <AccessibleTooltipButton
className="mx_CallViewHeader_button mx_CallViewHeader_button_pin"
onClick={onPin}
title={_t("Pin")}
/> }
{ onExpand && <AccessibleTooltipButton
2021-08-07 09:38:26 +02:00
className="mx_CallViewHeader_button mx_CallViewHeader_button_expand"
onClick={onExpand}
title={_t("Return to call")}
/> }
</div>;
2021-08-03 15:20:55 +02:00
};
interface ISecondaryCallInfoProps {
callRoom: Room;
}
const SecondaryCallInfo: React.FC<ISecondaryCallInfoProps> = ({ callRoom }) => {
2021-08-06 14:17:39 +02:00
return <span className="mx_CallViewHeader_secondaryCallInfo">
<RoomAvatar room={callRoom} height={16} width={16} />
<span className="mx_CallView_secondaryCall_roomName">
{ _t("%(name)s on hold", { name: callRoom.name }) }
</span>
</span>;
2021-08-03 15:20:55 +02:00
};
interface CallViewHeaderProps {
pipMode: boolean;
callRooms?: Room[];
onPipMouseDown: (event: React.MouseEvent<Element, MouseEvent>) => void;
onExpand?: () => void;
onPin?: () => void;
onMaximize?: () => void;
}
2021-08-07 08:54:40 +02:00
const CallViewHeader: React.FC<CallViewHeaderProps> = ({
2021-08-03 14:03:35 +02:00
pipMode = false,
callRooms = [],
onPipMouseDown,
onExpand,
onPin,
onMaximize,
2021-08-03 14:03:35 +02:00
}) => {
const [callRoom, onHoldCallRoom] = callRooms;
const callRoomName = callRoom.name;
2021-08-06 17:47:59 +02:00
if (!pipMode) {
2021-08-06 14:17:39 +02:00
return <div className="mx_CallViewHeader">
<div className="mx_CallViewHeader_icon" />
<span className="mx_CallViewHeader_text">{ _t("Call") }</span>
<CallViewHeaderControls onMaximize={onMaximize} />
</div>;
}
2021-08-03 14:15:14 +02:00
return (
<div
className="mx_CallViewHeader mx_CallViewHeader_pip"
2021-08-03 14:15:14 +02:00
onMouseDown={onPipMouseDown}
>
<RoomAvatar room={callRoom} height={32} width={32} />
2021-08-06 14:17:39 +02:00
<div className="mx_CallViewHeader_callInfo">
<div className="mx_CallViewHeader_roomName">{ callRoomName }</div>
{ onHoldCallRoom && <SecondaryCallInfo callRoom={onHoldCallRoom} /> }
</div>
<CallViewHeaderControls onExpand={onExpand} onPin={onPin} onMaximize={onMaximize} />
</div>
);
2021-08-03 14:03:35 +02:00
};
2021-08-07 08:54:40 +02:00
export default CallViewHeader;