87 lines
2.8 KiB
JavaScript
87 lines
2.8 KiB
JavaScript
import { Formik } from "formik";
|
|
import React from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { ActivityIndicator, Image, StyleSheet, View, Text } from "react-native";
|
|
import { connect } from "react-redux";
|
|
import { createStructuredSelector } from "reselect";
|
|
import Logo from "../../assets/logo192.png";
|
|
import { emailSignInStart } from "../../redux/user/user.actions";
|
|
import {
|
|
selectCurrentUser,
|
|
selectSigningIn,
|
|
} from "../../redux/user/user.selectors";
|
|
import SignInErrorAlertComponent from "../sign-in-error-alert/sign-in-error-alert.component";
|
|
import styles from "../styles";
|
|
import { TextInput, Button, Subheading } from "react-native-paper";
|
|
|
|
const mapStateToProps = createStructuredSelector({
|
|
currentUser: selectCurrentUser,
|
|
signingIn: selectSigningIn,
|
|
});
|
|
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
emailSignInStart: (email, password) =>
|
|
dispatch(emailSignInStart({ email, password })),
|
|
});
|
|
|
|
export function SignIn({ emailSignInStart, signingIn }) {
|
|
const { t } = useTranslation();
|
|
|
|
const formSubmit = (values) => {
|
|
const { email, password } = values;
|
|
emailSignInStart(email, password);
|
|
};
|
|
|
|
return (
|
|
<View
|
|
scrollEnabled={false}
|
|
contentContainerStyle={styles.contentContainer__centered}
|
|
style={localStyles.content}
|
|
>
|
|
<View style={styles.evenlySpacedRow}>
|
|
<Image style={localStyles.logo} source={Logo} />
|
|
<Text>{t("app.title")}</Text>
|
|
</View>
|
|
<Formik initialValues={{ email: "", password: "" }} onSubmit={formSubmit}>
|
|
{({ handleChange, handleBlur, handleSubmit, values }) => (
|
|
<View>
|
|
<View>
|
|
<Subheading>{t("signin.fields.email")}</Subheading>
|
|
<TextInput
|
|
autoCapitalize="none"
|
|
keyboardType="email-address"
|
|
onChangeText={handleChange("email")}
|
|
onBlur={handleBlur("email")}
|
|
value={values.email}
|
|
/>
|
|
</View>
|
|
<View>
|
|
<Subheading>{t("signin.fields.password")}</Subheading>
|
|
<TextInput
|
|
secureTextEntry={true}
|
|
onChangeText={handleChange("password")}
|
|
onBlur={handleBlur("password")}
|
|
value={values.password}
|
|
/>
|
|
</View>
|
|
<SignInErrorAlertComponent />
|
|
<Button full onPress={handleSubmit}>
|
|
<Text>{t("signin.actions.signin")}</Text>
|
|
{signingIn ? <ActivityIndicator size="large" /> : null}
|
|
</Button>
|
|
</View>
|
|
)}
|
|
</Formik>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const localStyles = StyleSheet.create({
|
|
content: {
|
|
paddingBottom: 200,
|
|
},
|
|
logo: { width: 100, height: 100 },
|
|
});
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(SignIn);
|