mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 18:07:46 +00:00
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
// @flow
|
|
|
|
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
|
|
import { CircularLabel } from '../../base/label';
|
|
import { JitsiRecordingConstants } from '../../base/lib-jitsi-meet';
|
|
import { translate } from '../../base/i18n';
|
|
|
|
import AbstractRecordingLabel, {
|
|
_mapStateToProps
|
|
} from './AbstractRecordingLabel';
|
|
|
|
/**
|
|
* Implements a React {@link Component} which displays the current state of
|
|
* conference recording.
|
|
*
|
|
* @extends {Component}
|
|
*/
|
|
class RecordingLabel extends AbstractRecordingLabel {
|
|
/**
|
|
* Renders the platform specific label component.
|
|
*
|
|
* @inheritdoc
|
|
*/
|
|
_renderLabel() {
|
|
if (this.props._status !== JitsiRecordingConstants.status.ON) {
|
|
// Since there are no expanded labels on web, we only render this
|
|
// label when the recording status is ON.
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
<CircularLabel
|
|
className = { this.props.mode }
|
|
label = { this.props.t(this._getLabelKey()) } />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
_getLabelKey: () => ?string
|
|
}
|
|
|
|
export default translate(connect(_mapStateToProps)(RecordingLabel));
|