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

65 lines
1.6 KiB
TypeScript

import React, { Component } from 'react';
import { connect } from 'react-redux';
import { IReduxState } from '../../../app/types';
import CalleeInfo from './CalleeInfo';
/**
* The type of the React {@code Component} props of {@code CalleeInfoContainer}.
*/
interface IProps {
/**
* The indicator which determines whether {@code CalleeInfo} is to be
* rendered.
*
* @private
*/
_calleeInfoVisible: boolean;
}
/**
* Implements a React {@link Component} which depicts the establishment of a
* call with a specific remote callee if there is such a remote callee.
*
* @augments Component
*/
class CalleeInfoContainer extends Component<IProps> {
/**
* Implements React's {@link Component#render()}.
*
* @inheritdoc
* @returns {ReactElement}
*/
override render() {
return this.props._calleeInfoVisible ? <CalleeInfo /> : null;
}
}
/**
* Maps parts of the redux state to {@link CalleeInfoContainer} (React
* {@code Component}) props.
*
* @param {Object} state - The redux state of which parts are to be mapped to
* {@code CalleeInfoContainer} props.
* @private
* @returns {{
* _calleeInfoVisible: boolean
* }}
*/
function _mapStateToProps(state: IReduxState) {
return {
/**
* The indicator which determines whether {@code CalleeInfo} is to be
* rendered.
*
* @private
* @type {boolean}
*/
_calleeInfoVisible: Boolean(state['features/invite'].calleeInfoVisible)
};
}
export default connect(_mapStateToProps)(CalleeInfoContainer);