vn-verdnaturachat/app/views/OnboardingView/index.js

171 lines
4.5 KiB
JavaScript
Raw Normal View History

import React from 'react';
import {
View, Text, Image, TouchableOpacity, BackHandler
} from 'react-native';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
2019-03-12 16:23:06 +00:00
import { SafeAreaView } from 'react-navigation';
import Orientation from 'react-native-orientation-locker';
import { selectServerRequest, serverInitAdd, serverFinishAdd } from '../../actions/server';
import { appStart as appStartAction } from '../../actions';
import I18n from '../../i18n';
import openLink from '../../utils/openLink';
import Button from './Button';
import styles from './styles';
2019-01-29 19:52:56 +00:00
import { isIOS, isNotch } from '../../utils/deviceInfo';
import EventEmitter from '../../utils/events';
import { CustomIcon } from '../../lib/Icons';
2019-03-12 16:23:06 +00:00
import StatusBar from '../../containers/StatusBar';
2019-03-29 19:36:07 +00:00
import { COLOR_PRIMARY, COLOR_WHITE } from '../../constants/colors';
@connect(state => ({
currentServer: state.server.server,
adding: state.server.adding
}), dispatch => ({
initAdd: () => dispatch(serverInitAdd()),
finishAdd: () => dispatch(serverFinishAdd()),
selectServer: server => dispatch(selectServerRequest(server)),
2019-03-12 16:23:06 +00:00
appStart: root => dispatch(appStartAction(root))
}))
export default class OnboardingView extends React.Component {
2019-03-12 16:23:06 +00:00
static navigationOptions = () => ({
header: null
})
static propTypes = {
2019-03-12 16:23:06 +00:00
navigation: PropTypes.object,
adding: PropTypes.bool,
selectServer: PropTypes.func.isRequired,
currentServer: PropTypes.string,
initAdd: PropTypes.func,
finishAdd: PropTypes.func,
appStart: PropTypes.func
}
constructor(props) {
super(props);
BackHandler.addEventListener('hardwareBackPress', this.handleBackPress);
2019-03-12 16:23:06 +00:00
this.previousServer = props.navigation.getParam('previousServer');
Orientation.lockToPortrait();
}
componentDidMount() {
2019-03-12 16:23:06 +00:00
const { initAdd } = this.props;
if (this.previousServer) {
initAdd();
}
EventEmitter.addEventListener('NewServer', this.handleNewServerEvent);
}
shouldComponentUpdate() {
return false;
}
componentWillUnmount() {
const {
2019-03-12 16:23:06 +00:00
selectServer, currentServer, adding, finishAdd
} = this.props;
if (adding) {
2019-03-12 16:23:06 +00:00
if (this.previousServer !== currentServer) {
selectServer(this.previousServer);
}
finishAdd();
}
EventEmitter.removeListener('NewServer', this.handleNewServerEvent);
BackHandler.removeEventListener('hardwareBackPress', this.handleBackPress);
}
handleBackPress = () => {
const { appStart } = this.props;
appStart('background');
return false;
}
close = () => {
2019-03-12 16:23:06 +00:00
const { appStart } = this.props;
appStart('inside');
}
newServer = (server) => {
2019-03-12 16:23:06 +00:00
const { navigation } = this.props;
navigation.navigate('NewServerView', { server });
}
handleNewServerEvent = (event) => {
const { server } = event;
this.newServer(server);
}
connectServer = () => {
this.newServer();
}
joinCommunity = () => {
this.newServer('https://open.rocket.chat');
}
createWorkspace = () => {
openLink('https://cloud.rocket.chat/trial');
}
renderClose = () => {
2019-03-12 16:23:06 +00:00
if (this.previousServer) {
let top = 15;
2019-01-29 19:52:56 +00:00
if (isIOS) {
top = isNotch ? 45 : 30;
}
return (
<TouchableOpacity
style={[styles.closeModal, { top }]}
onPress={this.close}
testID='onboarding-close'
>
<CustomIcon
name='cross'
size={30}
2019-03-29 19:36:07 +00:00
color={COLOR_PRIMARY}
/>
</TouchableOpacity>
);
}
return null;
}
render() {
return (
<SafeAreaView style={styles.container} testID='onboarding-view' forceInset={{ bottom: 'never' }}>
2019-03-12 16:23:06 +00:00
<StatusBar light />
<Image style={styles.onboarding} source={{ uri: 'onboarding' }} fadeDuration={0} />
<Text style={styles.title}>{I18n.t('Welcome_to_RocketChat')}</Text>
<Text style={styles.subtitle}>{I18n.t('Open_Source_Communication')}</Text>
<View style={styles.buttonsContainer}>
<Button
type='secondary'
title={I18n.t('Connect_to_a_server')}
2019-03-29 19:36:07 +00:00
icon={<CustomIcon name='permalink' size={30} color={COLOR_PRIMARY} />}
onPress={this.connectServer}
testID='connect-server-button'
/>
<Button
type='secondary'
title={I18n.t('Join_the_community')}
subtitle='open.rocket.chat'
icon={<Image source={{ uri: 'logo_onboarding' }} style={{ width: 32, height: 27 }} fadeDuration={0} />}
onPress={this.joinCommunity}
testID='join-community-button'
/>
<Button
type='primary'
title={I18n.t('Create_a_new_workspace')}
2019-03-29 19:36:07 +00:00
icon={<CustomIcon name='plus' size={30} color={COLOR_WHITE} />}
onPress={this.createWorkspace}
testID='create-workspace-button'
/>
</View>
{this.renderClose()}
</SafeAreaView>
);
}
}