import React, { useEffect } from 'react'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import * as List from '../containers/List'; import StatusBar from '../containers/StatusBar'; import { useTheme } from '../theme'; import * as HeaderButton from '../containers/HeaderButton'; import SafeAreaView from '../containers/SafeAreaView'; import I18n from '../i18n'; const setHeader = (navigation, isMasterDetail) => { const options = { headerTitle: I18n.t('Add_Channel_to_Team') }; if (isMasterDetail) { options.headerLeft = () => ; } navigation.setOptions(options); }; const AddChannelTeamView = ({ navigation, route, isMasterDetail }) => { const { teamId, teamChannels } = route.params; const { theme } = useTheme(); useEffect(() => { setHeader(navigation, isMasterDetail); }, []); return ( navigation.navigate('NewMessageStackNavigator', { screen: 'SelectedUsersViewCreateChannel', params: { nextAction: () => navigation.navigate('CreateChannelView', { teamId }) } })} testID='add-channel-team-view-create-channel' left={() => } right={() => } theme={theme} /> navigation.navigate('AddExistingChannelView', { teamId, teamChannels })} testID='add-channel-team-view-create-channel' left={() => } right={() => } theme={theme} /> ); }; AddChannelTeamView.propTypes = { route: PropTypes.object, navigation: PropTypes.object, isMasterDetail: PropTypes.bool }; const mapStateToProps = state => ({ isMasterDetail: state.app.isMasterDetail }); export default connect(mapStateToProps)(AddChannelTeamView);