import React, { Component } from 'react'; import { connect } from 'react-redux'; import { Avatar, getAvatarURL, getLocalParticipant } from '../../base/participants'; import OverlayFrame from './OverlayFrame'; /** * Implements a React Component for the frame of the overlays in filmstrip only * mode. */ class FilmstripOnlyOverlayFrame extends Component { /** * FilmstripOnlyOverlayFrame component's property types. * * @static */ static propTypes = { /** * The source (e.g. URI, URL) of the avatar image of the local * participant. * * @private */ _avatar: React.PropTypes.string, /** * The children components to be displayed into the overlay frame for * filmstrip only mode. * * @type {ReactElement} */ children: React.PropTypes.node.isRequired, /** * The css class name for the icon that will be displayed over the * avatar. * * @type {string} */ icon: React.PropTypes.string, /** * Indicates the css style of the overlay. If true, then lighter; * darker, otherwise. * * @type {boolean} */ isLightOverlay: React.PropTypes.bool }; /** * Renders content related to the icon. * * @returns {ReactElement|null} * @private */ _renderIcon() { if (!this.props.icon) { return null; } const iconClass = `inlay-filmstrip-only__icon ${this.props.icon}`; const iconBGClass = 'inlay-filmstrip-only__icon-background'; return (