123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- /* @flow */
-
- import React from 'react';
-
- import { getConferenceName } from '../../../base/conference/functions';
- import { JitsiRecordingConstants } from '../../../base/lib-jitsi-meet';
- import { getParticipantCount } from '../../../base/participants/functions';
- import { connect } from '../../../base/redux';
- import { E2EELabel } from '../../../e2ee';
- import { LocalRecordingLabel } from '../../../local-recording';
- import { getSessionStatusToShow, RecordingLabel } from '../../../recording';
- import { isToolboxVisible } from '../../../toolbox/functions.web';
- import { TranscribingLabel } from '../../../transcribing';
- import { VideoQualityLabel } from '../../../video-quality';
- import ConferenceTimer from '../ConferenceTimer';
-
- import ParticipantsCount from './ParticipantsCount';
-
- import { InsecureRoomNameLabel } from '.';
-
- /**
- * The type of the React {@code Component} props of {@link Subject}.
- */
- type Props = {
-
- /**
- * Whether the info should span across the full width.
- */
- _fullWidth: boolean,
-
- /**
- * Whether the conference name and timer should be displayed or not.
- */
- _hideConferenceNameAndTimer: boolean,
-
- /**
- * Whether the conference timer should be shown or not.
- */
- _hideConferenceTimer: boolean,
-
- /**
- * Whether the recording label should be shown or not.
- */
- _hideRecordingLabel: boolean,
-
- /**
- * Whether the participant count should be shown or not.
- */
- _showParticipantCount: boolean,
-
- /**
- * The subject or the of the conference.
- * Falls back to conference name.
- */
- _subject: string,
-
- /**
- * Indicates whether the component should be visible or not.
- */
- _visible: boolean,
-
- /**
- * Whether or not the recording label is visible.
- */
- _recordingLabel: boolean
- };
-
- const getLeftMargin = () => {
- const subjectContainerWidth = document.getElementById('subject-container')?.clientWidth ?? 0;
- const recContainerWidth = document.getElementById('rec-container')?.clientWidth ?? 0;
- const subjectDetailsContainer = document.getElementById('subject-details-container')?.clientWidth ?? 0;
-
- return (subjectContainerWidth - recContainerWidth - subjectDetailsContainer) / 2;
- };
-
- /**
- * The upper band of the meeing containing the conference name, timer and labels.
- *
- * @param {Object} props - The props of the component.
- * @returns {React$None}
- */
- function ConferenceInfo(props: Props) {
- const {
- _hideConferenceNameAndTimer,
- _hideConferenceTimer,
- _showParticipantCount,
- _hideRecordingLabel,
- _subject,
- _fullWidth,
- _visible,
- _recordingLabel
- } = props;
-
- return (
- <div className = { `subject ${_recordingLabel ? 'recording' : ''} ${_visible ? 'visible' : ''}` }>
- <div
- className = { `subject-info-container${_fullWidth ? ' subject-info-container--full-width' : ''}` }
- id = 'subject-container'>
- {!_hideRecordingLabel && <div
- className = 'show-always'
- id = 'rec-container'
- // eslint-disable-next-line react-native/no-inline-styles
- style = {{
- marginLeft: !_recordingLabel || _visible ? 0 : getLeftMargin()
- }}>
- <RecordingLabel mode = { JitsiRecordingConstants.mode.FILE } />
- <RecordingLabel mode = { JitsiRecordingConstants.mode.STREAM } />
- <LocalRecordingLabel />
- </div>
- }
- <div
- className = 'subject-details-container'
- id = 'subject-details-container'>
- {
- !_hideConferenceNameAndTimer
- && <div className = 'subject-info'>
- { _subject && <span className = 'subject-text'>{ _subject }</span>}
- { !_hideConferenceTimer && <ConferenceTimer /> }
- </div>
- }
- { _showParticipantCount && <ParticipantsCount /> }
- <E2EELabel />
- {_hideRecordingLabel && (
- <>
- <RecordingLabel mode = { JitsiRecordingConstants.mode.FILE } />
- <RecordingLabel mode = { JitsiRecordingConstants.mode.STREAM } />
- <LocalRecordingLabel />
- </>
- )}
- <TranscribingLabel />
- <VideoQualityLabel />
- <InsecureRoomNameLabel />
- </div>
- </div>
- </div>
- );
- }
-
- /**
- * Maps (parts of) the Redux state to the associated
- * {@code Subject}'s props.
- *
- * @param {Object} state - The Redux state.
- * @private
- * @returns {{
- * _hideConferenceTimer: boolean,
- * _showParticipantCount: boolean,
- * _subject: string,
- * _visible: boolean
- * }}
- */
- function _mapStateToProps(state) {
- const participantCount = getParticipantCount(state);
- const {
- hideConferenceTimer,
- hideConferenceSubject,
- hideParticipantsStats,
- hideRecordingLabel,
- iAmRecorder
- } = state['features/base/config'];
- const { clientWidth } = state['features/base/responsive-ui'];
-
- const shouldHideRecordingLabel = hideRecordingLabel || iAmRecorder;
- const fileRecordingStatus = getSessionStatusToShow(state, JitsiRecordingConstants.mode.FILE);
- const streamRecordingStatus = getSessionStatusToShow(state, JitsiRecordingConstants.mode.STREAM);
- const isFileRecording = fileRecordingStatus ? fileRecordingStatus !== JitsiRecordingConstants.status.OFF : false;
- const isStreamRecording = streamRecordingStatus
- ? streamRecordingStatus !== JitsiRecordingConstants.status.OFF : false;
- const { isEngaged } = state['features/local-recording'];
-
- return {
- _hideConferenceNameAndTimer: clientWidth < 300,
- _hideConferenceTimer: Boolean(hideConferenceTimer),
- _hideRecordingLabel: shouldHideRecordingLabel,
- _fullWidth: state['features/video-layout'].tileViewEnabled,
- _showParticipantCount: participantCount > 2 && !hideParticipantsStats,
- _subject: hideConferenceSubject ? '' : getConferenceName(state),
- _visible: isToolboxVisible(state),
- _recordingLabel: (isFileRecording || isStreamRecording || isEngaged) && !shouldHideRecordingLabel
- };
- }
-
- export default connect(_mapStateToProps)(ConferenceInfo);
|