2018-10-30 05:02:23 +00:00
|
|
|
/* @flow */
|
|
|
|
|
2017-07-10 22:29:44 +00:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
2019-08-30 16:39:06 +00:00
|
|
|
import { IconMicDisabled } from '../../../base/icons';
|
2019-04-15 16:23:28 +00:00
|
|
|
import { BaseIndicator } from '../../../base/react';
|
2017-06-19 16:01:44 +00:00
|
|
|
|
|
|
|
/**
|
2018-10-30 05:02:23 +00:00
|
|
|
* The type of the React {@code Component} props of {@link AudioMutedIndicator}.
|
2017-06-19 16:01:44 +00:00
|
|
|
*/
|
2018-10-30 05:02:23 +00:00
|
|
|
type Props = {
|
|
|
|
|
2017-08-15 22:14:49 +00:00
|
|
|
/**
|
2018-10-30 05:02:23 +00:00
|
|
|
* From which side of the indicator the tooltip should appear from.
|
2017-08-15 22:14:49 +00:00
|
|
|
*/
|
2018-10-30 05:02:23 +00:00
|
|
|
tooltipPosition: string
|
|
|
|
};
|
2017-08-15 22:14:49 +00:00
|
|
|
|
2018-10-30 05:02:23 +00:00
|
|
|
/**
|
|
|
|
* React {@code Component} for showing an audio muted icon with a tooltip.
|
|
|
|
*
|
2021-11-04 21:10:43 +00:00
|
|
|
* @augments Component
|
2018-10-30 05:02:23 +00:00
|
|
|
*/
|
|
|
|
class AudioMutedIndicator extends Component<Props> {
|
2017-06-19 16:01:44 +00:00
|
|
|
/**
|
2017-07-10 22:29:44 +00:00
|
|
|
* Implements React's {@link Component#render()}.
|
2017-06-19 16:01:44 +00:00
|
|
|
*
|
2017-07-10 22:29:44 +00:00
|
|
|
* @inheritdoc
|
|
|
|
* @returns {ReactElement}
|
2017-06-19 16:01:44 +00:00
|
|
|
*/
|
2017-07-10 22:29:44 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<BaseIndicator
|
|
|
|
className = 'audioMuted toolbar-icon'
|
2019-08-30 16:39:06 +00:00
|
|
|
icon = { IconMicDisabled }
|
|
|
|
iconId = 'mic-disabled'
|
2020-01-24 16:28:47 +00:00
|
|
|
iconSize = { 13 }
|
2017-08-15 22:14:49 +00:00
|
|
|
tooltipKey = 'videothumbnail.mute'
|
|
|
|
tooltipPosition = { this.props.tooltipPosition } />
|
2017-07-10 22:29:44 +00:00
|
|
|
);
|
2017-06-19 16:01:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default AudioMutedIndicator;
|