1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // @flow
-
- import React, { Component } from 'react';
-
- import { translate } from '../../base/i18n';
- import { Label } from '../../base/label';
- import { connect } from '../../base/redux';
- import { Tooltip } from '../../base/tooltip';
-
- import { _mapStateToProps, type Props } from './AbstractTranscribingLabel';
-
- /**
- * React {@code Component} for displaying a label when a transcriber is in the
- * conference.
- *
- * @extends Component
- */
- class TranscribingLabel extends Component<Props> {
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- if (!this.props._showLabel) {
- return null;
- }
-
- return (
- <Tooltip
- content = { this.props.t('transcribing.labelToolTip') }
- position = { 'left' }>
- <Label
- className = 'recording-label'
- text = { this.props.t('transcribing.tr') } />
- </Tooltip>
- );
- }
-
- }
-
- export default translate(connect(_mapStateToProps)(TranscribingLabel));
|