import React from 'react'; import PropTypes from 'prop-types'; import { Text, ScrollView, Keyboard, Image, StyleSheet, TouchableOpacity } from 'react-native'; import { connect } from 'react-redux'; import { SafeAreaView } from 'react-navigation'; import { serverRequest } from '../actions/server'; import sharedStyles from './Styles'; import scrollPersistTaps from '../utils/scrollPersistTaps'; import Button from '../containers/Button'; import TextInput from '../containers/TextInput'; import I18n from '../i18n'; import { verticalScale, moderateScale } from '../utils/scaling'; import KeyboardView from '../presentation/KeyboardView'; import { isIOS, isNotch } from '../utils/deviceInfo'; import { CustomIcon } from '../lib/Icons'; import StatusBar from '../containers/StatusBar'; import { COLOR_PRIMARY } from '../constants/colors'; const styles = StyleSheet.create({ image: { alignSelf: 'center', marginVertical: verticalScale(20), width: 210, height: 171 }, title: { ...sharedStyles.textBold, ...sharedStyles.textColorNormal, fontSize: moderateScale(22), letterSpacing: 0, alignSelf: 'center' }, inputContainer: { marginTop: 25, marginBottom: 15 }, backButton: { position: 'absolute', paddingHorizontal: 9, left: 15 } }); const defaultServer = 'https://open.rocket.chat'; class NewServerView extends React.Component { static navigationOptions = () => ({ header: null }) static propTypes = { navigation: PropTypes.object, server: PropTypes.string, connecting: PropTypes.bool.isRequired, connectServer: PropTypes.func.isRequired } constructor(props) { super(props); const server = props.navigation.getParam('server'); this.state = { text: server || '', autoFocus: !server }; } componentDidMount() { const { text } = this.state; const { connectServer } = this.props; if (text) { connectServer(text); } } shouldComponentUpdate(nextProps, nextState) { const { text } = this.state; const { connecting } = this.props; if (nextState.text !== text) { return true; } if (nextProps.connecting !== connecting) { return true; } return false; } onChangeText = (text) => { this.setState({ text }); } submit = () => { const { text } = this.state; const { connectServer } = this.props; if (text) { Keyboard.dismiss(); connectServer(this.completeUrl(text)); } } completeUrl = (url) => { url = url && url.trim(); if (/^(\w|[0-9-_]){3,}$/.test(url) && /^(htt(ps?)?)|(loca((l)?|(lh)?|(lho)?|(lhos)?|(lhost:?\d*)?)$)/.test(url) === false) { url = `${ url }.rocket.chat`; } if (/^(https?:\/\/)?(((\w|[0-9])+(\.(\w|[0-9-_])+)+)|localhost)(:\d+)?$/.test(url)) { if (/^localhost(:\d+)?/.test(url)) { url = `http://${ url }`; } else if (/^https?:\/\//.test(url) === false) { url = `https://${ url }`; } } return url.replace(/\/+$/, ''); } renderBack = () => { const { navigation } = this.props; let top = 15; if (isIOS) { top = isNotch ? 45 : 30; } return ( navigation.pop()} > ); } render() { const { connecting } = this.props; const { text, autoFocus } = this.state; return ( {I18n.t('Sign_in_your_server')}