// @flow import React, { Component } from 'react'; import { SafeAreaView, Text, View } from 'react-native'; import LinearGradient from 'react-native-linear-gradient'; import { getConferenceName } from '../../../base/conference'; import { getFeatureFlag, MEETING_NAME_ENABLED } from '../../../base/flags'; import { connect } from '../../../base/redux'; import { PictureInPictureButton } from '../../../mobile/picture-in-picture'; import { isToolboxVisible } from '../../../toolbox'; import ConferenceTimer from '../ConferenceTimer'; import styles, { NAVBAR_GRADIENT_COLORS } from './styles'; type Props = { /** * Name of the meeting we're currently in. */ _meetingName: string, /** * Whether displaying the current meeting name is enabled or not. */ _meetingNameEnabled: boolean, /** * True if the navigation bar should be visible. */ _visible: boolean }; /** * Implements a navigation bar component that is rendered on top of the * conference screen. */ class NavigationBar extends Component { /** * Implements {@Component#render}. * * @inheritdoc */ render() { if (!this.props._visible) { return null; } return [ , { this.props._meetingNameEnabled && { this.props._meetingName } } ]; } } /** * Maps part of the Redux store to the props of this component. * * @param {Object} state - The Redux state. * @returns {Props} */ function _mapStateToProps(state) { return { _meetingName: getConferenceName(state), _meetingNameEnabled: getFeatureFlag(state, MEETING_NAME_ENABLED, true), _visible: isToolboxVisible(state) }; } export default connect(_mapStateToProps)(NavigationBar);