/* eslint-disable lines-around-comment */ import React from 'react'; import { useSelector } from 'react-redux'; import { makeStyles } from 'tss-react/mui'; import { IReduxState } from '../../../app/types'; import { isDisplayNameVisible, isNameReadOnly } from '../../../base/config/functions.any'; import { isScreenShareParticipantById } from '../../../base/participants/functions'; import DisplayName from '../../../display-name/components/web/DisplayName'; // @ts-ignore import StatusIndicators from './StatusIndicators'; interface IProps { /** * Class name for indicators container. */ className: string; /** * Whether or not the indicators are for the local participant. */ local: boolean; /** * Id of the participant for which the component is displayed. */ participantId: string; /** * Whether or not to show the status indicators. */ showStatusIndicators?: boolean; /** * The type of thumbnail. */ thumbnailType: string; } const useStyles = makeStyles()(() => { return { nameContainer: { display: 'flex', overflow: 'hidden', '&>div': { display: 'flex', overflow: 'hidden' }, '&:first-child': { marginLeft: '6px' } } }; }); const ThumbnailBottomIndicators = ({ className, local, participantId, showStatusIndicators = true, thumbnailType }: IProps) => { const { classes: styles } = useStyles(); const _allowEditing = !useSelector(isNameReadOnly); const _defaultLocalDisplayName = interfaceConfig.DEFAULT_LOCAL_DISPLAY_NAME; const _showDisplayName = useSelector(isDisplayNameVisible); const isVirtualScreenshareParticipant = useSelector( (state: IReduxState) => isScreenShareParticipantById(state, participantId) ); return (
{ showStatusIndicators && } { _showDisplayName && ( ) }
); }; export default ThumbnailBottomIndicators;