/* @flow */ import { makeStyles } from '@material-ui/styles'; import React from 'react'; import { useSelector } from 'react-redux'; import { IconPinParticipant } from '../../../base/icons'; import { getParticipantById } from '../../../base/participants'; import { BaseIndicator } from '../../../base/react'; import { getPinnedActiveParticipants, isStageFilmstripEnabled } from '../../functions.web'; /** * The type of the React {@code Component} props of {@link PinnedIndicator}. */ type Props = { /** * The font-size for the icon. */ iconSize: number, /** * The participant id who we want to render the raised hand indicator * for. */ participantId: string, /** * From which side of the indicator the tooltip should appear from. */ tooltipPosition: string }; const useStyles = makeStyles(() => { return { pinnedIndicator: { backgroundColor: 'rgba(0, 0, 0, .7)', padding: '2px', zIndex: 3, display: 'inline-block', borderRadius: '4px', boxSizing: 'border-box' } }; }); /** * Thumbnail badge showing that the participant would like to speak. * * @returns {ReactElement} */ const PinnedIndicator = ({ iconSize, participantId, tooltipPosition }: Props) => { const stageFilmstrip = useSelector(isStageFilmstripEnabled); const pinned = useSelector(state => getParticipantById(state, participantId))?.pinned; const isPinned = useSelector(getPinnedActiveParticipants).find(p => p.participantId === participantId); const styles = useStyles(); if ((stageFilmstrip && !isPinned) || (!stageFilmstrip && !pinned)) { return null; } return (
); }; export default PinnedIndicator;