mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-03-06 11:40:21 +00:00
109 lines
2.7 KiB
JavaScript
109 lines
2.7 KiB
JavaScript
// @flow
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { translate } from '../../base/i18n';
|
|
import { JitsiRecordingConstants } from '../../base/lib-jitsi-meet';
|
|
import {
|
|
ExpandedLabel,
|
|
type Props as AbstractProps
|
|
} from '../../base/label';
|
|
|
|
import { getSessionStatusToShow } from '../functions';
|
|
|
|
import { LIVE_LABEL_COLOR, REC_LABEL_COLOR } from './styles';
|
|
|
|
type Props = AbstractProps & {
|
|
|
|
/**
|
|
* The status of the highermost priority session.
|
|
*/
|
|
_status: ?string,
|
|
|
|
/**
|
|
* The recording mode this indicator should display.
|
|
*/
|
|
mode: string,
|
|
|
|
/**
|
|
* Function to be used to translate i18n labels.
|
|
*/
|
|
t: Function
|
|
}
|
|
|
|
/**
|
|
* A react {@code Component} that implements an expanded label as tooltip-like
|
|
* component to explain the meaning of the {@code RecordingLabel}.
|
|
*/
|
|
class RecordingExpandedLabel extends ExpandedLabel<Props> {
|
|
/**
|
|
* Returns the color this expanded label should be rendered with.
|
|
*
|
|
* @returns {string}
|
|
*/
|
|
_getColor() {
|
|
switch (this.props.mode) {
|
|
case JitsiRecordingConstants.mode.STREAM:
|
|
return LIVE_LABEL_COLOR;
|
|
case JitsiRecordingConstants.mode.FILE:
|
|
return REC_LABEL_COLOR;
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns the label specific text of this {@code ExpandedLabel}.
|
|
*
|
|
* @returns {string}
|
|
*/
|
|
_getLabel() {
|
|
const { _status, mode, t } = this.props;
|
|
let postfix = 'recording', prefix = 'expandedOn'; // Default values.
|
|
|
|
switch (mode) {
|
|
case JitsiRecordingConstants.mode.STREAM:
|
|
prefix = 'liveStreaming';
|
|
break;
|
|
case JitsiRecordingConstants.mode.FILE:
|
|
prefix = 'recording';
|
|
break;
|
|
}
|
|
|
|
switch (_status) {
|
|
case JitsiRecordingConstants.status.OFF:
|
|
postfix = 'expandedOff';
|
|
break;
|
|
case JitsiRecordingConstants.status.PENDING:
|
|
postfix = 'expandedPending';
|
|
break;
|
|
case JitsiRecordingConstants.status.ON:
|
|
postfix = 'expandedOn';
|
|
break;
|
|
}
|
|
|
|
return t(`${prefix}.${postfix}`);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Maps (parts of) the Redux state to the associated
|
|
* {@code RecordingExpandedLabel}'s props.
|
|
*
|
|
* @param {Object} state - The Redux state.
|
|
* @param {Props} ownProps - The component's own props.
|
|
* @private
|
|
* @returns {{
|
|
* _status: ?string
|
|
* }}
|
|
*/
|
|
function _mapStateToProps(state: Object, ownProps: Props) {
|
|
const { mode } = ownProps;
|
|
|
|
return {
|
|
_status: getSessionStatusToShow(state, mode)
|
|
};
|
|
}
|
|
|
|
export default translate(connect(_mapStateToProps)(RecordingExpandedLabel));
|