Add presenting text
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
176fb9baae
commit
0c55a6c5bf
3 changed files with 37 additions and 0 deletions
|
@ -708,12 +708,28 @@ export default class CallView extends React.Component<IProps, IState> {
|
|||
mx_CallView_video: true,
|
||||
});
|
||||
|
||||
let presenting;
|
||||
if (this.state.primaryFeed?.purpose === SDPStreamMetadataPurpose.Screenshare) {
|
||||
const presentingClasses = classNames({
|
||||
mx_CallView_presenting: true,
|
||||
mx_CallView_presenting_hidden: !this.state.controlsVisible,
|
||||
});
|
||||
const sharerName = this.state.primaryFeed.getMember().name;
|
||||
|
||||
presenting = (
|
||||
<div className={presentingClasses}>
|
||||
{ _t('%(sharerName)s is presenting', {sharerName}) }
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
contentView = (
|
||||
<div
|
||||
className={containerClasses}
|
||||
ref={this.contentRef}
|
||||
onMouseMove={this.onMouseMove}
|
||||
>
|
||||
{ presenting }
|
||||
{ sidebar }
|
||||
<VideoFeed
|
||||
feed={this.state.primaryFeed}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue