| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- // @flow
-
- import React from 'react';
- import { View } from 'react-native';
- import { connect } from 'react-redux';
-
- import { JitsiRecordingConstants } from '../../base/lib-jitsi-meet';
- import {
- isNarrowAspectRatio,
- makeAspectRatioAware
- } from '../../base/responsive-ui';
-
- import AbstractLabels, {
- _abstractMapStateToProps,
- type Props as AbstractLabelsProps
- } from './AbstractLabels';
- import styles from './styles';
-
- /**
- * The type of the React {@code Component} props of {@link Labels}.
- */
- type Props = AbstractLabelsProps & {
-
- /**
- * The indicator which determines whether the UI is reduced (to accommodate
- * smaller display areas).
- *
- * @private
- */
- _reducedUI: boolean
- };
-
- /**
- * A container that renders the conference indicators, if any.
- */
- class Labels extends AbstractLabels<Props, *> {
- /**
- * Implements React {@code Component}'s render.
- *
- * @inheritdoc
- */
- render() {
- const wide = !isNarrowAspectRatio(this);
- const { _filmstripVisible, _reducedUI } = this.props;
-
- return (
- <View
- pointerEvents = 'box-none'
- style = { [
- styles.indicatorContainer,
- wide && _filmstripVisible && styles.indicatorContainerWide
- ] }>
- {
- this._renderRecordingLabel(
- JitsiRecordingConstants.mode.FILE)
- }
- {
- this._renderRecordingLabel(
- JitsiRecordingConstants.mode.STREAM)
- }
- {/*
- * Emil, Lyubomir, Nichole, and Zoli said that the Labels
- * should not be rendered in Picture-in-Picture. Saul argued
- * that the recording Labels should be rendered. As a temporary
- * compromise, don't render the VideoQualityLabel at least
- * because it's not that important.
- */
- _reducedUI || this._renderVideoQualityLabel()
- }
- </View>
- );
- }
-
- _renderRecordingLabel: string => React$Element<*>;
-
- _renderVideoQualityLabel: () => React$Element<*>;
- }
-
- /**
- * Maps (parts of) the redux state to the associated
- * {@code Labels}'s props.
- *
- * @param {Object} state - The redux state.
- * @private
- * @returns {{
- * _filmstripVisible: boolean,
- * _reducedUI: boolean
- * }}
- */
- function _mapStateToProps(state) {
- return {
- ..._abstractMapStateToProps(state),
- _reducedUI: state['features/base/responsive-ui'].reducedUI
- };
- }
-
- export default connect(_mapStateToProps)(makeAspectRatioAware(Labels));
|