123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- // @flow
-
- import { openDialog } from '../../../base/dialog';
- import { IconLiveStreaming } from '../../../base/icons';
- import { JitsiRecordingConstants } from '../../../base/lib-jitsi-meet';
- import {
- getLocalParticipant,
- isLocalParticipantModerator
- } from '../../../base/participants';
- import { AbstractButton, type AbstractButtonProps } from '../../../base/toolbox/components';
- import { maybeShowPremiumFeatureDialog } from '../../../jaas/actions';
- import { FEATURES } from '../../../jaas/constants';
- import { getActiveSession } from '../../functions';
-
- import {
- StartLiveStreamDialog,
- StopLiveStreamDialog
- } from './_';
-
- /**
- * The type of the React {@code Component} props of
- * {@link AbstractLiveStreamButton}.
- */
- export type Props = AbstractButtonProps & {
-
- /**
- * True if there is a running active live stream, false otherwise.
- */
- _isLiveStreamRunning: boolean,
-
- /**
- * True if the button needs to be disabled.
- */
- _disabled: Boolean,
-
- /**
- * The tooltip to display when hovering over the button.
- */
- _tooltip: ?String,
-
- /**
- * The redux {@code dispatch} function.
- */
- dispatch: Function,
-
- /**
- * The i18n translate function.
- */
- t: Function
- };
-
- /**
- * An abstract class of a button for starting and stopping live streaming.
- */
- export default class AbstractLiveStreamButton<P: Props> extends AbstractButton<P, *> {
- accessibilityLabel = 'dialog.accessibilityLabel.liveStreaming';
- icon = IconLiveStreaming;
- label = 'dialog.startLiveStreaming';
- toggledLabel = 'dialog.stopLiveStreaming';
-
- /**
- * Returns the tooltip that should be displayed when the button is disabled.
- *
- * @private
- * @returns {string}
- */
- _getTooltip() {
- return this.props._tooltip || '';
- }
-
- /**
- * Handles clicking / pressing the button.
- *
- * @override
- * @protected
- * @returns {void}
- */
- async _handleClick() {
- const { _isLiveStreamRunning, dispatch } = this.props;
-
- const dialogShown = await dispatch(maybeShowPremiumFeatureDialog(FEATURES.RECORDING));
-
- if (!dialogShown) {
- dispatch(openDialog(
- _isLiveStreamRunning ? StopLiveStreamDialog : StartLiveStreamDialog
- ));
- }
- }
-
- /**
- * Returns a boolean value indicating if this button is disabled or not.
- *
- * @protected
- * @returns {boolean}
- */
- _isDisabled() {
- return this.props._disabled;
- }
-
- /**
- * Indicates whether this button is in toggled state or not.
- *
- * @override
- * @protected
- * @returns {boolean}
- */
- _isToggled() {
- return this.props._isLiveStreamRunning;
- }
- }
-
- /**
- * Maps (parts of) the redux state to the associated props for the
- * {@code AbstractLiveStreamButton} component.
- *
- * @param {Object} state - The Redux state.
- * @param {Props} ownProps - The own props of the Component.
- * @private
- * @returns {{
- * _disabled: boolean,
- * _isLiveStreamRunning: boolean,
- * visible: boolean
- * }}
- */
- export function _mapStateToProps(state: Object, ownProps: Props) {
- let { visible } = ownProps;
-
- // A button can be disabled/enabled only if enableFeaturesBasedOnToken
- // is on or if the recording is running.
- let _disabled;
- let _tooltip = '';
-
- if (typeof visible === 'undefined') {
- // If the containing component provides the visible prop, that is one
- // above all, but if not, the button should be autonomus and decide on
- // its own to be visible or not.
- const isModerator = isLocalParticipantModerator(state);
- const {
- enableFeaturesBasedOnToken,
- liveStreamingEnabled
- } = state['features/base/config'];
- const { features = {} } = getLocalParticipant(state);
-
- visible = isModerator && liveStreamingEnabled;
-
- if (enableFeaturesBasedOnToken) {
- visible = visible && String(features.livestreaming) === 'true';
- _disabled = String(features.livestreaming) === 'disabled';
-
- if (!visible && !_disabled) {
- _disabled = true;
- visible = true;
- _tooltip = 'dialog.liveStreamingDisabledTooltip';
- }
- }
- }
-
- // disable the button if the recording is running.
- if (getActiveSession(state, JitsiRecordingConstants.mode.FILE)) {
- _disabled = true;
- _tooltip = 'dialog.liveStreamingDisabledBecauseOfActiveRecordingTooltip';
- }
-
- return {
- _disabled,
- _isLiveStreamRunning: Boolean(
- getActiveSession(state, JitsiRecordingConstants.mode.STREAM)),
- _tooltip,
- visible
- };
- }
|