jiti-meet/react/features/filmstrip/components/web/DominantSpeakerIndicator.js

52 lines
1.2 KiB
JavaScript
Raw Normal View History

/* @flow */
import React, { Component } from 'react';
2019-08-30 16:39:06 +00:00
import { IconDominantSpeaker } from '../../../base/icons';
2019-04-15 16:23:28 +00:00
import { BaseIndicator } from '../../../base/react';
/**
* The type of the React {@code Component} props of
* {@link DominantSpeakerIndicator}.
*/
type Props = {
/**
* The font-size for the icon.
*/
iconSize: number,
/**
* From which side of the indicator the tooltip should appear from.
*/
tooltipPosition: string
};
/**
* Thumbnail badge showing that the participant is the dominant speaker in
* the conference.
*
* @extends Component
*/
class DominantSpeakerIndicator extends Component<Props> {
/**
* Implements React's {@link Component#render()}.
*
* @inheritdoc
*/
render() {
return (
<BaseIndicator
className = 'indicator show-inline'
2019-08-30 16:39:06 +00:00
icon = { IconDominantSpeaker }
iconClassName = 'indicatoricon'
iconSize = { `${this.props.iconSize}px` }
id = 'dominantspeakerindicator'
tooltipKey = 'speaker'
tooltipPosition = { this.props.tooltipPosition } />
);
}
}
export default DominantSpeakerIndicator;