| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- import { View, Text, ScrollView, Pressable, Button, Alert } from 'react-native';
- import React, { useContext } from 'react';
- import { SafeAreaView } from 'react-native-safe-area-context';
- import { router } from 'expo-router';
- import { CrossLogoSvg, RightArrowIconSvg } from '../global/SVG';
- import { AuthContext, useAuth } from '../../context/AuthProvider';
- const AccountSettingPageComponent = () => {
- const { user } = useContext(AuthContext);
- const { logout } = useAuth();
- const genderText = user?.gender === 'woman' ? '女' : user?.gender === 'man' ? '男' : user?.gender;
- const handleDeletionAccount = () => {
- Alert.alert('Delete Account', 'Are you sure you want to delete your account? This action cannot be undone.', [
- {
- text: 'Cancel',
- style: 'cancel'
- },
- {
- text: 'Delete',
- style: 'destructive',
- onPress: async () => {
- try {
- logout();
- // await walletService.deleteWallet(user.id);
- // Handle successful deletion (e.g., logout and redirect)
- // You might want to add additional logic here
- } catch (error) {
- console.error('Error deleting account:', error);
- Alert.alert('Error', 'Failed to delete account. Please try again.');
- }
- }
- }
- ]);
- };
- return (
- <SafeAreaView className="flex-1 bg-white" edges={['top', 'right', 'left']}>
- <ScrollView className="flex-1 mx-[5%]" showsVerticalScrollIndicator={false}>
- <View style={{ marginTop: 25 }}>
- <Pressable
- onPress={() => {
- router.replace('/accountMainPage');
- }}
- >
- <CrossLogoSvg />
- </Pressable>
- <Text style={{ fontSize: 45, marginVertical: 25 }}>帳戶管理</Text>
- </View>
- <View>
- <View className="flex-col">
- <Pressable onPress={() => router.push('changeEmailPage')}>
- <View className="flex-row items-center justify-between">
- <View className="flex-col py-4">
- <Text className="text-lg pb-1">電郵地址</Text>
- <Text style={{ color: '#555555' }}>{user?.email}</Text>
- </View>
- <RightArrowIconSvg />
- </View>
- </Pressable>
- <View className="h-0.5 bg-[#f4f4f4] " />
- </View>
- <View className="flex-col ">
- <Pressable onPress={() => router.push('changePasswordPage')}>
- <View className="flex-row items-center justify-between">
- <View className="flex-col py-4">
- <Text className="text-lg pb-1">帳戶密碼</Text>
- <Text style={{ color: '#555555' }}>********</Text>
- </View>
- <RightArrowIconSvg />
- </View>
- </Pressable>
- <View className="h-0.5 bg-[#f4f4f4] " />
- </View>
- <View className="flex-col ">
- <Pressable onPress={() => router.push('changeNamePage')}>
- <View className="flex-row items-center justify-between">
- <View className="flex-col py-4">
- <Text className="text-lg pb-1">暱稱</Text>
- <Text style={{ color: '#555555' }}>{user?.nickname}</Text>
- </View>
- <RightArrowIconSvg />
- </View>
- </Pressable>
- <View className="h-0.5 bg-[#f4f4f4]" />
- </View>
- <View className="flex-col ">
- <Pressable onPress={() => router.push('changeGenderPage')}>
- <View className="flex-row items-center justify-between">
- <View className="flex-col py-4">
- <Text className="text-lg pb-1">性別</Text>
- <Text style={{ color: '#555555' }}>{genderText}</Text>
- </View>
- <RightArrowIconSvg />
- </View>
- </Pressable>
- <View className="h-0.5 bg-[#f4f4f4]" />
- </View>
- <View className="flex-col ">
- <Pressable onPress={() => router.push('changeCarPage')}>
- <View className="flex-row items-center justify-between">
- <View className="flex-col py-4">
- <Text className="text-lg pb-1">車牌號碼</Text>
- <Text style={{ color: '#555555' }}>{user?.car}</Text>
- </View>
- <RightArrowIconSvg />
- </View>
- </Pressable>
- <View className="h-0.5 bg-[#f4f4f4]" />
- </View>
- <View className="flex-col ">
- {/* <Pressable onPress={() => router.push('changePhonePage')}>
- <View className="flex-row items-center justify-between">
- <View className="flex-co py-4">
- <Text className="text-lg pb-1">電話號碼</Text>
- <Text style={{ color: '#555555' }}>
- {user?.phone ? `+852 ${user.phone}` : 'No phone number provided'}
- </Text>
- </View>
- <RightArrowIconSvg />
- </View>
- </Pressable>
- <View className="h-0.5 bg-[#f4f4f4]" /> */}
- <Button onPress={handleDeletionAccount} title="刪除帳戶" color="red"></Button>
- </View>
- </View>
- </ScrollView>
- </SafeAreaView>
- );
- };
- export default AccountSettingPageComponent;
|