Files
jitsi-meet/react/features/conference/components/AbstractInsecureRoomNameLabel.tsx
Saúl Ibarra Corretgé 6d3ff5a956 feat(unsafe-room-name) unify logic
Wrap the logic in a function that also checks the existence of a feature
flag on mobile in addition to the config value.

Ref: https://github.com/jitsi/jitsi-meet/issues/13603#issuecomment-1662086531
2023-08-03 11:05:04 +02:00

59 lines
1.4 KiB
TypeScript

import React, { PureComponent } from 'react';
import { WithTranslation } from 'react-i18next';
import { IReduxState } from '../../app/types';
import isInsecureRoomName from '../../base/util/isInsecureRoomName';
import { isUnsafeRoomWarningEnabled } from '../../prejoin/functions';
interface IProps extends WithTranslation {
/**
* True of the label should be visible.
*/
_visible: boolean;
}
/**
* Abstract class for the {@Code InsecureRoomNameLabel} component.
*/
export default class AbstractInsecureRoomNameLabel extends PureComponent<IProps> {
/**
* Implements {@code Component#render}.
*
* @inheritdoc
*/
render() {
if (!this.props._visible) {
return null;
}
return this._render();
}
/**
* Renders the platform dependent content.
*
* @returns {ReactElement}
*/
_render() {
return <></>;
}
}
/**
* Maps part of the Redux state to the props of this component.
*
* @param {Object} state - The Redux state.
* @returns {IProps}
*/
export function _mapStateToProps(state: IReduxState) {
const { locked, room } = state['features/base/conference'];
const { lobbyEnabled } = state['features/lobby'];
return {
_visible: Boolean(isUnsafeRoomWarningEnabled(state)
&& room && isInsecureRoomName(room)
&& !(lobbyEnabled || Boolean(locked)))
};
}