-
Notifications
You must be signed in to change notification settings - Fork 1
/
Nickname.js
241 lines (214 loc) · 6.37 KB
/
Nickname.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
import React, { useState } from "react";
import {
View,
Text,
StyleSheet,
TouchableOpacity,
TextInput,
Image,
Alert,
} from "react-native";
import { useNavigation } from "@react-navigation/native";
import AsyncStorage from "@react-native-async-storage/async-storage";
const Nickname = ({ route }) => {
const { userInfo, accessToken, jwtToken } = route.params || {};
const [nickname, setNickname] = useState(
userInfo?.kakao_account?.profile?.nickname || ""
);
const [error, setError] = useState("");
const navigation = useNavigation();
const updateNickname = async () => {
try {
const baseUrl =
process.env.SERVER_URL ||
"http://192.168.61.45:8080/api/member/nickname";
// AsyncStorage에서 토큰들을 가져옵니다
const kakaoToken = await AsyncStorage.getItem("kakaoToken");
const jwtToken = await AsyncStorage.getItem("jwtToken");
const userInfo = await AsyncStorage.getItem("userInfo");
if (!kakaoToken || !jwtToken) {
throw new Error("인증 토큰이 없습니다.");
}
const parsedUserInfo = userInfo ? JSON.parse(userInfo) : null;
// 요청 데이터 준비
const requestData = {
kakaoId: parsedUserInfo?.id,
nickname: nickname.trim(),
email: parsedUserInfo?.email,
profileImage: parsedUserInfo?.profileImage,
};
console.log("요청 URL:", baseUrl);
console.log("전송할 데이터:", requestData);
console.log("JWT 토큰:", jwtToken);
console.log("카카오 토큰:", kakaoToken);
const response = await fetch(baseUrl, {
method: "PUT",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${jwtToken}`,
"X-Kakao-Token": kakaoToken,
Accept: "application/json",
},
body: JSON.stringify(requestData),
});
console.log("서버 응답 상태:", response.status);
const responseText = await response.text();
console.log("서버 응답 내용:", responseText);
if (!response.ok) {
if (response.status === 401) {
throw new Error("인증이 만료되었습니다. 다시 로그인해주세요.");
}
// 응답 텍스트가 JSON 형식인 경우 파싱
let errorMessage;
try {
const errorData = JSON.parse(responseText);
errorMessage = errorData.message || "닉네임 업데이트에 실패했습니다.";
} catch (e) {
errorMessage = responseText || "닉네임 업데이트에 실패했습니다.";
}
throw new Error(errorMessage);
}
// 닉네임을 AsyncStorage에 저장
await AsyncStorage.setItem("userNickname", nickname.trim());
// userInfo 업데이트
if (parsedUserInfo) {
parsedUserInfo.nickname = nickname.trim();
await AsyncStorage.setItem("userInfo", JSON.stringify(parsedUserInfo));
}
return responseText ? JSON.parse(responseText) : null;
} catch (error) {
console.error("닉네임 업데이트 상세 오류:", error);
throw error;
}
};
const handleNext = async () => {
if (!nickname.trim()) {
setError("닉네임을 입력해주세요!");
return;
}
// 닉네임 유효성 검사
if (nickname.length < 2 || nickname.length > 10) {
setError("닉네임은 2자 이상 10자 이하로 입력해주세요.");
return;
}
if (!/^[가-힣a-zA-Z0-9]+$/.test(nickname)) {
setError("닉네임은 한글, 영문, 숫자만 사용 가능합니다.");
return;
}
try {
await updateNickname();
setError("");
Alert.alert("성공", "닉네임이 성공적으로 설정되었습니다.", [
{
text: "확인",
onPress: () => navigation.navigate("board"),
},
]);
} catch (error) {
console.error("처리 중 오류 발생:", error);
if (error.message.includes("인증이 만료")) {
Alert.alert("인증 만료", "다시 로그인해주세요.", [
{
text: "확인",
onPress: () => navigation.navigate("KakaoLogin"),
},
]);
} else {
setError(error.message);
Alert.alert("오류", error.message, [
{
text: "확인",
style: "cancel",
},
]);
}
}
};
return (
<View style={styles.container}>
<Text style={styles.NicknameText}>닉네임을 입력해주세요.</Text>
<Image source={require("../assets/logo2.png")} style={styles.logo2} />
<TextInput
style={[styles.input, error ? styles.inputError : null]}
maxLength={15}
value={nickname}
onChangeText={(text) => {
setNickname(text);
setError("");
}}
placeholder="닉네임을 입력하세요"
/>
{error ? <Text style={styles.errorText}>{error}</Text> : null}
<View style={styles.buttonContainer}>
<TouchableOpacity
onPress={() => navigation.navigate("KakaoLogin")}
style={styles.PreBottom}
>
<Text style={styles.BottomText}>이전</Text>
</TouchableOpacity>
<TouchableOpacity onPress={handleNext} style={styles.NextBottom}>
<Text style={styles.BottomText}>다음</Text>
</TouchableOpacity>
</View>
</View>
);
};
export default Nickname;
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
},
NicknameText: {
fontSize: 30,
marginTop: "40%",
textAlign: "center",
},
input: {
borderWidth: 1,
borderColor: "#ccc",
padding: 10,
margin: 10,
width: "80%",
alignSelf: "center",
},
logo2: {
width: 400,
height: 400,
alignSelf: "center",
},
PreBottom: {
backgroundColor: "#FFEDAE",
padding: 10,
marginTop: "10%",
width: "30%",
alignSelf: "center",
borderRadius: 10,
},
NextBottom: {
backgroundColor: "#FFEDAE",
padding: 10,
marginTop: "10%",
width: "30%",
alignSelf: "center",
borderRadius: 10,
},
BottomText: {
fontSize: 15,
color: "black",
textAlign: "center",
},
buttonContainer: {
flexDirection: "row",
justifyContent: "space-around",
marginTop: "20%",
},
inputError: {
borderColor: "red",
},
errorText: {
color: "red",
textAlign: "center",
marginTop: 5,
},
});