/* @flow */ import PropTypes from 'prop-types'; import React, { Component } from 'react'; import { Watermarks } from '../../base/react'; import Labels from './Labels'; declare var interfaceConfig: Object; /** * Implements a React {@link Component} which represents the large video (a.k.a. * the conference participant who is on the local stage) on Web/React. * * @extends Component */ export default class LargeVideo extends Component<*> { static propTypes = { /** * True if the {@code VideoQualityLabel} should not be displayed. */ hideVideoQualityLabel: PropTypes.bool }; /** * Implements React's {@link Component#render()}. * * @inheritdoc * @returns {ReactElement} */ render() { return (
{ /** * FIXME: the architecture of elements related to the * large video and the naming. The background is not * part of largeVideoWrapper because we are controlling * the size of the video through largeVideoWrapper. * That's why we need another container for the the * background and the largeVideoWrapper in order to * hide/show them. */ }
{ this.props.hideVideoQualityLabel ? null : }
); } }