import React from 'react'; import { Text, View, TouchableOpacity, Image, StyleSheet } from 'react-native'; import PropTypes from 'prop-types'; import TextInput from '../../../presentation/TextInput'; import I18n from '../../../i18n'; import sharedStyles from '../../Styles'; import { themes } from '../../../constants/colors'; const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center' }, button: { flexDirection: 'row', alignItems: 'center', marginRight: 64 }, server: { fontSize: 20, ...sharedStyles.textRegular }, serverSmall: { fontSize: 16 }, updating: { fontSize: 14, ...sharedStyles.textRegular }, disclosure: { marginLeft: 9, marginTop: 1, width: 10, height: 5 }, upsideDown: { transform: [{ scaleY: -1 }] } }); const Header = React.memo(({ connecting, isFetching, serverName, showServerDropdown, showSearchHeader, theme, onSearchChangeText, onPress }) => { const titleColorStyle = { color: themes[theme].headerTitleColor }; const isLight = theme === 'light'; if (showSearchHeader) { return ( ); } return ( {connecting ? {I18n.t('Connecting')} : null} {isFetching ? {I18n.t('Updating')} : null} {serverName} ); }); Header.propTypes = { showServerDropdown: PropTypes.bool.isRequired, showSearchHeader: PropTypes.bool.isRequired, onPress: PropTypes.func.isRequired, onSearchChangeText: PropTypes.func.isRequired, connecting: PropTypes.bool, isFetching: PropTypes.bool, serverName: PropTypes.string, theme: PropTypes.string }; Header.defaultProps = { serverName: 'Rocket.Chat' }; export default Header;