Adjust for sidebar

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2021-06-12 08:15:26 +02:00
parent 5608e92885
commit 97b976b171
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
3 changed files with 53 additions and 73 deletions

View File

@ -32,33 +32,16 @@ limitations under the License.
} }
} }
.mx_VideoFeed_nonPrimary { .mx_VideoFeed_secondary {
max-width: 25%;
max-height: 25%;
position: absolute;
z-index: 100;
border-radius: 4px; border-radius: 4px;
width: 100%;
margin-bottom: 12px;
&.mx_VideoFeed_video { &.mx_VideoFeed_video {
background-color: transparent; background-color: transparent;
} }
} }
.mx_VideoFeed_secondary {
right: 10px;
top: 10px;
}
.mx_VideoFeed_tertiary {
right: 10px;
bottom: 10px;
}
.mx_VideoFeed_quaternary {
left: 10px;
top: 10px;
}
.mx_VideoFeed_mirror { .mx_VideoFeed_mirror {
transform: scale(-1, 1); transform: scale(-1, 1);
} }

View File

@ -35,13 +35,7 @@ import {replaceableComponent} from "../../../utils/replaceableComponent";
import DesktopCapturerSourcePicker from "../elements/DesktopCapturerSourcePicker"; import DesktopCapturerSourcePicker from "../elements/DesktopCapturerSourcePicker";
import Modal from '../../../Modal'; import Modal from '../../../Modal';
import { SDPStreamMetadataPurpose } from 'matrix-js-sdk/src/webrtc/callEventTypes'; import { SDPStreamMetadataPurpose } from 'matrix-js-sdk/src/webrtc/callEventTypes';
import CallViewSidebar from './CallViewSidebar';
const FEED_CLASS_NAMES = [
"mx_VideoFeed_primary",
"mx_VideoFeed_secondary",
"mx_VideoFeed_tertiary",
"mx_VideoFeed_quaternary",
];
interface IProps { interface IProps {
// The call for us to display // The call for us to display
@ -404,29 +398,6 @@ export default class CallView extends React.Component<IProps, IState> {
this.props.call.transferToCall(transfereeCall); this.props.call.transferToCall(transfereeCall);
} }
private renderFeeds(feeds: Array<CallFeed>, offset = 0) {
return feeds.map((feed, i) => {
i += offset;
// TODO: Later the CallView should probably be reworked to support
// any number of feeds but now we can't render more than 4 feeds
if (i >= 4) return;
// Here we check to hide any non-main audio feeds from the UI
// This is because we don't want them to obstruct the view
// But once again this might be subject to change
if (feed.isVideoMuted() && i > 0) return;
return (
<VideoFeed
key={feed.stream.id}
className={FEED_CLASS_NAMES[i]}
feed={feed}
call={this.props.call}
pipMode={this.props.pipMode}
onResize={this.props.onResize}
/>
);
});
}
public render() { public render() {
const client = MatrixClientPeg.get(); const client = MatrixClientPeg.get();
const callRoomId = CallHandler.sharedInstance().roomIdForCall(this.props.call); const callRoomId = CallHandler.sharedInstance().roomIdForCall(this.props.call);
@ -674,37 +645,63 @@ export default class CallView extends React.Component<IProps, IState> {
mx_CallView_voice: true, mx_CallView_voice: true,
}); });
// We pass offset of one to avoid a feed being rendered as primary
const feeds = this.renderFeeds(this.props.call.getLocalFeeds(), 1);
// Saying "Connecting" here isn't really true, but the best thing // Saying "Connecting" here isn't really true, but the best thing
// I can come up with, but this might be subject to change as well // I can come up with, but this might be subject to change as well
contentView = <div className={classes} onMouseMove={this.onMouseMove}> contentView = (
{feeds} <div
<div className="mx_CallView_voice_avatarsContainer"> className={classes}
<div className="mx_CallView_voice_avatarContainer" style={{width: avatarSize, height: avatarSize}}> onMouseMove={this.onMouseMove}
<RoomAvatar >
room={callRoom} <CallViewSidebar
height={avatarSize} feeds={this.state.feeds}
width={avatarSize} call={this.props.call}
/> />
<div className="mx_CallView_voice_avatarsContainer">
<div
className="mx_CallView_voice_avatarContainer"
style={{width: avatarSize, height: avatarSize}}
>
<RoomAvatar
room={callRoom}
height={avatarSize}
width={avatarSize}
/>
</div>
</div> </div>
<div className="mx_CallView_holdTransferContent">{_t("Connecting")}</div>
{callControls}
</div> </div>
<div className="mx_CallView_holdTransferContent">{_t("Connecting")}</div> );
{callControls}
</div>;
} else { } else {
const containerClasses = classNames({ const containerClasses = classNames({
mx_CallView_content: true, mx_CallView_content: true,
mx_CallView_video: true, mx_CallView_video: true,
}); });
const feeds = this.renderFeeds(this.state.feeds); // Don't show the primary feed in the sidebar
const feedsForSidebar = [...this.state.feeds];
feedsForSidebar.shift();
contentView = <div className={containerClasses} ref={this.contentRef} onMouseMove={this.onMouseMove}> contentView = (
{feeds} <div
{callControls} className={containerClasses}
</div>; ref={this.contentRef}
onMouseMove={this.onMouseMove}
>
<CallViewSidebar
feeds={feedsForSidebar}
call={this.props.call}
/>
<VideoFeed
feed={this.state.feeds[0]}
call={this.props.call}
pipMode={this.props.pipMode}
onResize={this.props.onResize}
primary={true}
/>
{ callControls }
</div>
);
} }
const callTypeText = this.props.call.type === CallType.Video ? _t("Video Call") : _t("Voice Call"); const callTypeText = this.props.call.type === CallType.Video ? _t("Video Call") : _t("Voice Call");

View File

@ -38,7 +38,7 @@ interface IProps {
// due to a change in video metadata // due to a change in video metadata
onResize?: (e: Event) => void, onResize?: (e: Event) => void,
className: string, primary: boolean,
} }
interface IState { interface IState {
@ -123,8 +123,8 @@ export default class VideoFeed extends React.Component<IProps, IState> {
render() { render() {
const videoClasses = { const videoClasses = {
mx_VideoFeed: true, mx_VideoFeed: true,
mx_VideoFeed_nonPrimary: this.props.className !== "mx_VideoFeed_primary", mx_VideoFeed_primary: this.props.primary,
[this.props.className]: true, mx_VideoFeed_secondary: !this.props.primary,
mx_VideoFeed_voice: this.state.videoMuted, mx_VideoFeed_voice: this.state.videoMuted,
mx_VideoFeed_video: !this.state.videoMuted, mx_VideoFeed_video: !this.state.videoMuted,
mx_VideoFeed_mirror: ( mx_VideoFeed_mirror: (