theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

83 lines
2.2 KiB
TypeScript

import * as React from 'react';
import { Text, TextStyle, View, ViewStyle } from 'react-native';
import { connect } from 'react-redux';
import { IReduxState } from '../../../app/types';
import {
getParticipantById,
getParticipantDisplayName,
isScreenShareParticipant
} from '../../../base/participants/functions';
import styles from './styles';
interface IProps {
/**
* The name of the participant to render.
*/
_participantName: string;
/**
* True of the label needs to be rendered. False otherwise.
*/
_render: boolean;
/**
* Whether or not the name is in a container.
*/
contained?: boolean;
/**
* The ID of the participant to render the label for.
*/
participantId: string;
}
/**
* Renders a label with the display name of the on-stage participant.
*/
class DisplayNameLabel extends React.Component<IProps> {
/**
* Implements {@code Component#render}.
*
* @inheritdoc
*/
override render() {
if (!this.props._render) {
return null;
}
return (
<View
style = { (this.props.contained ? styles.displayNamePadding : styles.displayNameBackdrop
) as ViewStyle }>
<Text
numberOfLines = { 1 }
style = { styles.displayNameText as TextStyle }>
{ this.props._participantName }
</Text>
</View>
);
}
}
/**
* Maps part of the Redux state to the props of this component.
*
* @param {any} state - The Redux state.
* @param {IProps} ownProps - The own props of the component.
* @returns {IProps}
*/
function _mapStateToProps(state: IReduxState, ownProps: Partial<IProps>) {
const participant = getParticipantById(state, ownProps.participantId ?? '');
return {
_participantName: getParticipantDisplayName(state, ownProps.participantId ?? ''),
_render: Boolean(participant && (!participant?.local || ownProps.contained)
&& (!participant?.fakeParticipant || isScreenShareParticipant(participant)))
};
}
export default connect(_mapStateToProps)(DisplayNameLabel);