jitsi-meet/react/features/conference/components/AbstractInsecureRoomNameLabel.tsx
theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08: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
*/
override 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)))
};
}