Rocket.Chat.ReactNative/app/views/NewServerView.js

204 lines
4.9 KiB
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
import {
Text, ScrollView, Keyboard, Image, Alert, StyleSheet, TouchableOpacity
} from 'react-native';
import { connect } from 'react-redux';
import Icon from 'react-native-vector-icons/Ionicons';
import { Navigation } from 'react-native-navigation';
import SafeAreaView from 'react-native-safe-area-view';
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 LoggedView from './View';
import I18n from '../i18n';
import { scale, verticalScale, moderateScale } from '../utils/scaling';
import KeyboardView from '../presentation/KeyboardView';
import DeviceInfo from '../utils/deviceInfo';
const styles = StyleSheet.create({
image: {
alignSelf: 'center',
marginVertical: verticalScale(20),
width: 210,
height: 171
},
title: {
alignSelf: 'center',
color: '#2F343D',
fontSize: moderateScale(22),
fontWeight: 'bold',
height: verticalScale(28),
lineHeight: verticalScale(28)
},
inputContainer: {
marginTop: scale(20),
marginBottom: scale(20)
},
input: {
color: '#9EA2A8',
fontSize: 17,
paddingTop: 14,
paddingBottom: 14,
paddingHorizontal: 16
},
backButton: {
position: 'absolute',
paddingHorizontal: 9,
left: 15
}
});
const defaultServer = 'https://open.rocket.chat';
@connect(state => ({
connecting: state.server.connecting,
failure: state.server.failure
}), dispatch => ({
connectServer: server => dispatch(serverRequest(server))
}))
/** @extends React.Component */
export default class NewServerView extends LoggedView {
static options() {
return {
topBar: {
visible: false,
drawBehind: true
}
};
}
static propTypes = {
componentId: PropTypes.string,
server: PropTypes.string,
connecting: PropTypes.bool.isRequired,
failure: PropTypes.bool.isRequired,
connectServer: PropTypes.func.isRequired
}
constructor(props) {
super('NewServerView', props);
this.state = {
text: ''
};
Navigation.events().bindComponent(this);
}
componentDidMount() {
const { server, connectServer } = this.props;
if (server) {
connectServer(server);
this.setState({ text: server });
} else {
setTimeout(() => {
this.input.focus();
}, 600);
}
}
componentWillReceiveProps(nextProps) {
const { failure } = this.props;
if (nextProps.failure && nextProps.failure !== failure) {
Alert.alert(I18n.t('Oops'), I18n.t('The_URL_is_invalid'));
}
}
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 { componentId } = this.props;
let top = 15;
if (DeviceInfo.getBrand() === 'Apple') {
top = DeviceInfo.isNotch() ? 45 : 30;
}
return (
<TouchableOpacity
style={[styles.backButton, { top }]}
onPress={() => Navigation.pop(componentId)}
>
<Icon
name='ios-arrow-back'
size={30}
color='#1D74F5'
/>
</TouchableOpacity>
);
}
render() {
const { connecting } = this.props;
const { text } = this.state;
return (
<KeyboardView
contentContainerStyle={sharedStyles.container}
keyboardVerticalOffset={128}
key='login-view'
>
<ScrollView {...scrollPersistTaps} contentContainerStyle={sharedStyles.containerScrollView}>
<SafeAreaView style={sharedStyles.container} testID='new-server-view' forceInset={{ bottom: 'never' }}>
<Image style={styles.image} source={{ uri: 'new_server' }} />
<Text style={styles.title}>{I18n.t('Sign_in_your_server')}</Text>
<TextInput
inputRef={e => this.input = e}
containerStyle={styles.inputContainer}
inputStyle={styles.input}
placeholder={defaultServer}
value={text}
returnKeyType='done'
onChangeText={this.onChangeText}
testID='new-server-view-input'
onSubmitEditing={this.submit}
clearButtonMode='while-editing'
/>
<Button
title={I18n.t('Connect')}
type='primary'
onPress={this.submit}
disabled={text.length === 0}
loading={connecting}
testID='new-server-view-button'
/>
</SafeAreaView>
</ScrollView>
{this.renderBack()}
</KeyboardView>
);
}
}