// @flow import * as React from 'react'; import { Alert, Keyboard, KeyboardAvoidingView, ScrollView, StyleSheet, TouchableWithoutFeedback, View } from "react-native"; import {Avatar, Button, Card, HelperText, Text, TextInput, withTheme} from 'react-native-paper'; import ConnectionManager, {ERROR_TYPE} from "../../managers/ConnectionManager"; import {openBrowser} from "../../utils/WebBrowser"; type Props = { navigation: Object, } type State = { email: string, password: string, isEmailValidated: boolean, isPasswordValidated: boolean, loading: boolean, } const ICON_AMICALE = require('../../assets/amicale.png'); const RESET_PASSWORD_LINK = "https://www.amicale-insat.fr/password/reset"; const emailRegex = /^.+@.+\..+$/; class LoginScreen extends React.Component { state = { email: '', password: '', isEmailValidated: false, isPasswordValidated: false, loading: false, }; colors: Object; onEmailChange: Function; onPasswordChange: Function; validateEmail: Function; validatePassword: Function; onSubmit: Function; onEmailSubmit: Function; onResetPasswordClick: Function; passwordInputRef: Object; constructor(props) { super(props); this.onEmailChange = this.onInputChange.bind(this, true); this.onPasswordChange = this.onInputChange.bind(this, false); this.validateEmail = this.validateEmail.bind(this); this.validatePassword = this.validatePassword.bind(this); this.onSubmit = this.onSubmit.bind(this); this.onEmailSubmit = this.onEmailSubmit.bind(this); this.onResetPasswordClick = this.onResetPasswordClick.bind(this); this.colors = props.theme.colors; } onResetPasswordClick() { openBrowser(RESET_PASSWORD_LINK, this.colors.primary); } validateEmail() { this.setState({isEmailValidated: true}); } isEmailValid() { return emailRegex.test(this.state.email); } shouldShowEmailError() { return this.state.isEmailValidated && !this.isEmailValid(); } validatePassword() { this.setState({isPasswordValidated: true}); } isPasswordValid() { return this.state.password !== ''; } shouldShowPasswordError() { return this.state.isPasswordValidated && !this.isPasswordValid(); } shouldEnableLogin() { return this.isEmailValid() && this.isPasswordValid(); } onInputChange(isEmail: boolean, value: string) { if (isEmail) { this.setState({ email: value, isEmailValidated: false, }); } else { this.setState({ password: value, isPasswordValidated: false, }); } } onEmailSubmit() { this.passwordInputRef.focus(); } onSubmit() { if (this.shouldEnableLogin()) { this.setState({loading: true}); ConnectionManager.getInstance().connect(this.state.email, this.state.password) .then((data) => { this.handleSuccess(); }) .catch((error) => { this.handleErrors(error); }) .finally(() => { this.setState({loading: false}); }); } } handleSuccess() { this.props.navigation.navigate('ProfileScreen'); } handleErrors(error: number) { switch (error) { case ERROR_TYPE.CONNECTION_ERROR: Alert.alert('ERREUR', 'PB DE CONNEXION'); break; case ERROR_TYPE.BAD_CREDENTIALS: Alert.alert('ERREUR', 'MDP OU MAIL INVALIDE'); break; case ERROR_TYPE.SAVE_TOKEN: Alert.alert('ERREUR', 'IMPOSSIBLE DE SAUVEGARDER INFOS CONNEXION'); break; default: Alert.alert('ERREUR', 'ERREUR INCONNUE. CONTACTER ARNAUD'); break; } } getFormInput() { return ( EMAIL INVALID { this.passwordInputRef = ref; }} label='Password' mode='outlined' value={this.state.password} onChangeText={this.onPasswordChange} onBlur={this.validatePassword} onSubmitEditing={this.onSubmit} error={this.shouldShowPasswordError()} textContentType={'password'} autoCapitalize={'none'} autoCompleteType={'password'} autoCorrect={false} keyboardType={'default'} returnKeyType={'done'} secureTextEntry={true} /> PLS ENTER PASSWORD ); } getMainCard() { return ( } /> {this.getFormInput()} ); } getSecondaryCard() { return ( MDP OUBLIÉ ? t'es pas doué PAS DE COMPTE ? DOMMAGE PASSE À L'AMICALE ); } render() { return ( {this.getMainCard()} {this.getSecondaryCard()} ); } } const styles = StyleSheet.create({ container: { flex: 1, flexDirection: 'column', justifyContent: 'center', }, card: { margin: 10, }, header: { fontSize: 36, marginBottom: 48 }, textInput: {}, btnContainer: { marginTop: 5, marginBottom: 10, } }); export default withTheme(LoginScreen);