12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- // @flow
-
- import React, { Component } from 'react';
- import { View } from 'react-native';
- import { connect } from 'react-redux';
-
- import { getLocalParticipant } from '../../../base/participants';
-
- import styles from '../styles';
- import Thumbnail from './Thumbnail';
-
- type Props = {
-
- /**
- * The local participant.
- */
- _localParticipant: Object
- };
-
- /**
- * Component to render a local thumbnail that can be separated from the
- * remote thumbnails later.
- */
- class LocalThumbnail extends Component<Props> {
- /**
- * Implements React Component's render.
- *
- * @inheritdoc
- */
- render() {
- const { _localParticipant } = this.props;
-
- return (
- <View style = { styles.localThumbnail }>
- <Thumbnail participant = { _localParticipant } />
- </View>
- );
- }
- }
-
- /**
- * Maps (parts of) the redux state to the associated {@code LocalThumbnail}'s
- * props.
- *
- * @param {Object} state - The redux state.
- * @private
- * @returns {{
- * _localParticipant: Participant
- * }}
- */
- function _mapStateToProps(state) {
- return {
- /**
- * The local participant.
- *
- * @private
- * @type {Participant}
- */
- _localParticipant: getLocalParticipant(state)
- };
- }
-
- // $FlowExpectedError
- export default connect(_mapStateToProps)(LocalThumbnail);
|