jiti-meet/react/features/conference/components/web/Subject.js

70 lines
1.3 KiB
JavaScript
Raw Normal View History

2019-03-12 17:45:53 +00:00
/* @flow */
import React, { Component } from 'react';
import { connect } from 'react-redux';
import { isToolboxVisible } from '../../../toolbox';
/**
* The type of the React {@code Component} props of {@link Subject}.
*/
type Props = {
/**
* The subject of the conference.
*/
_subject: string,
/**
* Indicates whether the component should be visible or not.
*/
_visible: boolean
};
/**
* Subject react component.
*
* @class Subject
*/
class Subject extends Component<Props> {
/**
* Implements React's {@link Component#render()}.
*
* @inheritdoc
* @returns {ReactElement}
*/
render() {
const { _subject, _visible } = this.props;
return (
<div className = { `subject ${_visible ? 'visible' : ''}` }>
{ _subject }
</div>
);
}
}
/**
* Maps (parts of) the Redux state to the associated
* {@code Subject}'s props.
*
* @param {Object} state - The Redux state.
* @private
* @returns {{
* _subject: string,
* _visible: boolean
* }}
*/
function _mapStateToProps(state) {
const { subject } = state['features/base/conference'];
return {
_subject: subject,
_visible: isToolboxVisible(state)
};
}
2019-03-19 15:42:25 +00:00
// $FlowExpectedError
2019-03-12 17:45:53 +00:00
export default connect(_mapStateToProps)(Subject);