| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- import { View, Text, Image, StyleSheet, Pressable, Alert, Dimensions, ActivityIndicator } from 'react-native';
- import { Ionicons } from '@expo/vector-icons';
- import Logo from '../../../global/logo';
- import NormalButton from '../../../global/normal_button';
- import NormalInput from '../../../global/normal_input';
- import { useEffect, useState } from 'react';
- import { useAuth } from '../../../../context/AuthProvider';
- import { useSafeAreaInsets } from 'react-native-safe-area-context';
- import AsyncStorage from '@react-native-async-storage/async-storage';
- import Checkbox from 'expo-checkbox';
- type LoginPageProps = {
- goToNextPage: () => void;
- goToForgetPassWordPage: () => void;
- goToBindingPhoneNumberPage: () => void;
- };
- const screenHeight = Dimensions.get('window').height;
- const LoginPage: React.FC<LoginPageProps> = ({ goToNextPage, goToForgetPassWordPage, goToBindingPhoneNumberPage }) => {
- const [loginEmail, setLoginEmail] = useState('');
- const [loginPassword, setLoginPassword] = useState('');
- const [saveAccount, setSaveAccount] = useState(false);
- const [isLoading, setIsLoading] = useState(false);
- const { login } = useAuth();
- const [isChecked, setChecked] = useState(false);
- const [showPassword, setShowPassword] = useState(false);
- useEffect(() => {
- loadSavedCredentials();
- }, []);
- const loadSavedCredentials = async () => {
- try {
- const savedEmail = await AsyncStorage.getItem('savedEmail');
- const savedPassword = await AsyncStorage.getItem('savedPassword');
- if (savedEmail && savedPassword) {
- setLoginEmail(savedEmail);
- setLoginPassword(savedPassword);
- setSaveAccount(true);
- setChecked(true);
- }
- } catch (error) {
- console.error('Error loading saved credentials:', error);
- }
- };
- // const _login = async (username: string, password: string) => {
- // setIsLoading(true);
- // if (username === '' || password === '') {
- // Alert.alert('請輸入資料', '請輸入電子郵件和密碼');
- // } else {
- // const lowerCaseUsername = username.toLowerCase();
- // const success = await login(lowerCaseUsername, password);
- // if (!success) {
- // Alert.alert('登入失敗', '請檢查您的電子郵件和密碼');
- // }
- // }
- // setIsLoading(false);
- // };
- const _login = async (username: string, password: string) => {
- setIsLoading(true);
- if (username === '' || password === '') {
- Alert.alert('請輸入資料', '請輸入電子郵件和密碼');
- } else {
- // const lowerCaseUsername = username.toLowerCase();
- const success = await login(username, password);
- if (success) {
- if (saveAccount) {
- await AsyncStorage.setItem('savedEmail', username);
- await AsyncStorage.setItem('savedPassword', password);
- } else {
- await AsyncStorage.removeItem('savedEmail');
- await AsyncStorage.removeItem('savedPassword');
- }
- } else {
- Alert.alert('登入失敗', '請檢查您的電子郵件和密碼');
- }
- }
- setIsLoading(false);
- };
- const insets = useSafeAreaInsets();
- return (
- <View className={`flex-1 justify-center ${screenHeight < 750 ? 'h-screen' : 'h-[80vh] space-y-8'}`}>
- <View className="flex-3 items-center justify-end" style={{}}>
- <Image
- source={require('../../../../assets/ccLogo.png')}
- resizeMode="contain"
- style={{
- width: screenHeight > 750 ? 250 : 200,
- height: screenHeight > 750 ? 250 : 200
- }}
- />
- </View>
- <View
- style={{
- gap: 10
- // paddingBottom: Math.max(insets.bottom, 20)
- // marginTop: screenHeight > 750 ? 40 : 0
- }}
- className="mx-[5%] flex-2 "
- >
- <NormalInput
- placeholder="電子郵件"
- value={loginEmail}
- onChangeText={(email) => setLoginEmail(email)}
- extendedStyle={{ borderRadius: 12, padding: 20 }}
- textContentType="username"
- autoComplete="username"
- keyboardType="email-address"
- autoCapitalize="none"
- />
- <View className="relative">
- <NormalInput
- value={loginPassword}
- placeholder="密碼"
- onChangeText={(password) => setLoginPassword(password)}
- secureTextEntry={!showPassword}
- extendedStyle={{ borderRadius: 12, padding: 20, paddingRight: 50 }}
- textContentType="password"
- autoComplete="password"
- />
- <Pressable
- className="absolute right-4 top-0 bottom-0 justify-center"
- onPress={() => setShowPassword(!showPassword)}
- >
- <Ionicons name={showPassword ? 'eye-outline' : 'eye-off-outline'} size={24} color="#02677D" />
- </Pressable>
- </View>
- <View className="flex flex-row items-center ">
- <Checkbox
- style={styles.checkbox}
- value={saveAccount}
- color={saveAccount ? '#02677D' : '#02677D'}
- onValueChange={(newValue) => {
- setSaveAccount(newValue);
- console.log(newValue);
- }}
- />
- <Text style={styles.text}>記住我的帳號</Text>
- </View>
- <NormalButton
- extendedStyle={{ padding: 20 }}
- onPress={() => _login(loginEmail, loginPassword)}
- title={
- isLoading ? (
- <Text
- style={{
- fontWeight: '700',
- fontSize: 20,
- color: '#fff'
- }}
- >
- <ActivityIndicator />
- </Text>
- ) : (
- <Text
- style={{
- fontWeight: '700',
- fontSize: 20,
- color: '#fff'
- }}
- >
- 登入
- </Text>
- )
- }
- />
- <View className="flex flex-row justify-between relative">
- <Pressable className="self-start" onPress={goToNextPage}>
- <Text style={styles.text}>註冊會員</Text>
- </Pressable>
- <Pressable className="self-start" onPress={() => goToForgetPassWordPage()}>
- <Text style={styles.text}>忘記密碼</Text>
- </Pressable>
- <View className="flex flex-row justify-center absolute top-16 left-0 right-0 items-center">
- <View className="flex-1 h-[1px] bg-[#888888] mx-2" />
- <Pressable onPress={goToBindingPhoneNumberPage}>
- <Text className="text-[#888888] text-lg">舊用戶/已有用戶/手機號碼綁定</Text>
- </Pressable>
- <View className="flex-1 h-[1px] bg-[#888888] mx-2" />
- </View>
- </View>
- </View>
- </View>
- );
- };
- const styles = StyleSheet.create({
- container: {
- flex: 1,
- height: Dimensions.get('window').height,
- justifyContent: 'center',
- marginHorizontal: 20
- },
- topContainerForLogo: {},
- checkbox: {
- margin: 8
- },
- text: {
- color: '#02677D',
- fontSize: 16,
- paddingVertical: 5
- }
- });
- export default LoginPage;
|