Skip to content

Commit

Permalink
fix(highlight) set highlight button visibility based on record button…
Browse files Browse the repository at this point in the history
… props
  • Loading branch information
quitrk committed Mar 25, 2022
1 parent f8628df commit a2186e8
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 53 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import {
import { highlightMeetingMoment } from '../../actions.any';
import { StartRecordingDialog } from '../../components';
import { PROMPT_RECORDING_NOTIFICATION_ID } from '../../constants';
import { getRecordButtonProps } from '../../functions';

export type Props = {

Expand Down Expand Up @@ -106,9 +107,14 @@ export function _abstractMapStateToProps(state: Object) {
const isButtonDisabled = isHighlightMeetingMomentDisabled(state);
const { webhookProxyUrl } = state['features/base/config'];

const {
_disabled: isRecordButtonDisabled,
visible: isRecordButtonVisible
} = getRecordButtonProps(state);

return {
_disabled: !isRecordingRunning,
_isHighlightInProgress: isButtonDisabled,
_visible: Boolean(webhookProxyUrl)
_visible: isRecordButtonVisible && !isRecordButtonDisabled && Boolean(webhookProxyUrl)
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,10 @@ import {
} from '../../../analytics';
import { IconToggleRecording } 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 { isInBreakoutRoom } from '../../../breakout-rooms/functions';
import { maybeShowPremiumFeatureDialog } from '../../../jaas/actions';
import { FEATURES } from '../../../jaas/constants';
import { getActiveSession } from '../../functions';

import { getActiveSession, getRecordButtonProps } from '../../functions';

/**
* The type of the React {@code Component} props of
Expand Down Expand Up @@ -131,57 +125,20 @@ export default class AbstractRecordButton<P: Props> extends AbstractButton<P, *>
* {@code RecordButton} component.
*
* @param {Object} state - The Redux state.
* @param {Props} ownProps - The own props of the Component.
* @private
* @returns {{
* _disabled: boolean,
* _isRecordingRunning: boolean,
* _tooltip: string,
* visible: boolean
* }}
*/
export function _mapStateToProps(state: Object, ownProps: Props): Object {
let { visible } = ownProps;

// a button can be disabled/enabled if enableFeaturesBasedOnToken
// is on or if the livestreaming 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,
fileRecordingsEnabled
} = state['features/base/config'];
const { features = {} } = getLocalParticipant(state);

visible = isModerator && fileRecordingsEnabled;

if (enableFeaturesBasedOnToken) {
visible = visible && String(features.recording) === 'true';
_disabled = String(features.recording) === 'disabled';
if (!visible && !_disabled) {
_disabled = true;
visible = true;
_tooltip = 'dialog.recordingDisabledTooltip';
}
}
}

// disable the button if the livestreaming is running.
if (getActiveSession(state, JitsiRecordingConstants.mode.STREAM)) {
_disabled = true;
_tooltip = 'dialog.recordingDisabledBecauseOfActiveLiveStreamingTooltip';
}

// disable the button if we are in a breakout room.
if (isInBreakoutRoom(state)) {
_disabled = true;
visible = false;
}
export function _mapStateToProps(state: Object): Object {
const {
_disabled,
_tooltip,
visible
} = getRecordButtonProps(state);

return {
_disabled,
Expand Down
62 changes: 61 additions & 1 deletion react/features/recording/functions.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// @flow

import { JitsiRecordingConstants } from '../base/lib-jitsi-meet';
import { getLocalParticipant } from '../base/participants';
import { getLocalParticipant, isLocalParticipantModerator } from '../base/participants';
import { isInBreakoutRoom } from '../breakout-rooms/functions';
import { isEnabled as isDropboxEnabled } from '../dropbox';
import { extractFqnFromPath } from '../dynamic-branding';

Expand Down Expand Up @@ -119,6 +120,65 @@ export function getSessionStatusToShow(state: Object, mode: string): ?string {
return status;
}

/**
* Returns the recording button props.
*
* @param {Object} state - The redux state to search in.
*
* @returns {{
* _disabled: boolean,
* _tooltip: string,
* visible: boolean
* }}
*/
export function getRecordButtonProps(state: Object): ?string {
let visible;

// a button can be disabled/enabled if enableFeaturesBasedOnToken
// is on or if the livestreaming is running.
let _disabled;
let _tooltip = '';

// 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,
fileRecordingsEnabled
} = state['features/base/config'];
const { features = {} } = getLocalParticipant(state);

visible = isModerator && fileRecordingsEnabled;

if (enableFeaturesBasedOnToken) {
visible = visible && String(features.recording) === 'true';
_disabled = String(features.recording) === 'disabled';
if (!visible && !_disabled) {
_disabled = true;
visible = true;
_tooltip = 'dialog.recordingDisabledTooltip';
}
}

// disable the button if the livestreaming is running.
if (getActiveSession(state, JitsiRecordingConstants.mode.STREAM)) {
_disabled = true;
_tooltip = 'dialog.recordingDisabledBecauseOfActiveLiveStreamingTooltip';
}

// disable the button if we are in a breakout room.
if (isInBreakoutRoom(state)) {
_disabled = true;
visible = false;
}

return {
_disabled,
_tooltip,
visible
};
}

/**
* Returns the resource id.
Expand Down

0 comments on commit a2186e8

Please sign in to comment.