-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_main.js
406 lines (378 loc) · 12.4 KB
/
admin_main.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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
import React, { useState, useEffect } from "react";
import {
View,
Text,
StyleSheet,
TouchableOpacity,
Image,
FlatList,
Dimensions,
ScrollView,
SafeAreaView,
} from "react-native";
import AsyncStorage from "@react-native-async-storage/async-storage";
import axios from "axios";
import {
Entypo,
MaterialIcons,
MaterialCommunityIcons,
FontAwesome,
} from "@expo/vector-icons";
import { useNavigation, useFocusEffect } from "@react-navigation/native";
// 각 이미지 아이템의 예상 높이 설정
const ITEM_HEIGHT = 150; // 이 값은 실제 이미지 높이와 패딩 등을 고려한 것임
const NUM_COLUMNS = 2; // 한 줄에 표시할 아이템의 수
const { width } = Dimensions.get("window");
const containerPadding = 10; // FlatList 컨테이너의 좌우 패딩
const imageMargin = 5; // 이미지 사이의 마진
const imageWidth = (width - containerPadding * 2 - imageMargin * 4) / 2; // 이미지 너비 조정
const App = () => {
const navigation = useNavigation();
const [listHeight, setListHeight] = useState(0);
const [stores, setStores] = useState([]); // 초기 상태를 빈 배열로 설정
const [images, setImages] = useState([]); // images 상태 추가
const [storeSeq, setstoreSeq] = useState([]);
const [userId, setUserId] = useState(null); // userId 상태 초기화
useFocusEffect(
React.useCallback(() => {
const fetchStores = async () => {
try {
const userInfoString = await AsyncStorage.getItem("userInfo");
const userInfo = userInfoString ? JSON.parse(userInfoString) : null;
if (!userInfo || !userInfo.user_id) {
console.error("User ID not found");
return;
}
setUserId(userInfo.user_id); // userId 상태 업데이트
const response = await axios.post(
`http://121.147.52.59:8090/botbuddies/storelist`,
{ userId: userInfo.user_id }
);
if (response.data) {
setStores(response.data);
const newImages = response.data.map((store) => ({
id: store.store_seq.toString(),
uri: { uri: store.img_filename },
text: store.store_name,
}));
setImages(newImages);
}
} catch (error) {
console.error("Error fetching stores:", error);
}
};
// 즉시 실행 함수로 fetchStores 호출
(async () => await fetchStores())();
}, [])
);
console.log("store", stores);
const go_store = async (store) => {
console.log(" 뭔데 ", store.id);
try {
const response = await axios.post(
`http://121.147.52.59:8090/botbuddies/selectStore`,
{
store_seq: store.id,
}
);
console.log("무슨 매장", response.data);
// 서버로부터 받은 데이터를 review_managent 화면으로 전달
navigation.navigate("management", { reviewData: response.data });
} catch (error) {
console.error("Error fetching reviews:", error);
}
};
const go_reivew = async () => {
try {
const userInfoString = await AsyncStorage.getItem("userInfo");
const userInfo = userInfoString ? JSON.parse(userInfoString) : null;
const response = await axios.post(
`http://121.147.52.59:8090/botbuddies/review`,
{
userId: userInfo.user_id,
}
);
console.log("뭘받지?", response.data);
// 서버로부터 받은 데이터에서 store_seq만 추출하여 새로운 배열 생성
const storeSeqs = response.data.map((item) => item.store_seq);
console.log("storeSeqs:", storeSeqs); // 콘솔에 store_seq만 출력
// 서버로부터 받은 데이터를 review_managent 화면으로 전달
navigation.navigate("review_managent", {
reviewData: response.data,
userInfo: userInfo,
});
} catch (error) {
console.error("Error fetching reviews:", error);
}
};
const go_mypage = async () => {
try {
const userInfoString = await AsyncStorage.getItem("userInfo");
const userInfo = userInfoString ? JSON.parse(userInfoString) : null;
const response = await axios.post(
`http://121.147.52.59:8090/botbuddies/review`,
{
userId: userInfo.user_id,
}
);
// 서버로부터 받은 데이터를 review_managent 화면으로 전달
navigation.navigate("mypage_managent", { reviewData: response.data });
} catch (error) {
console.error("Error fetching reviews:", error);
}
};
return (
<SafeAreaView style={styles.safeArea}>
{/* 헤더 부분 */}
<View style={styles.header}>
<Image source={require("./assets/logo.png")} style={styles.icon} />
<TouchableOpacity>
<FontAwesome
name="bell"
size={24}
color="#ff3b30"
style={styles.bellIcon}
/>
</TouchableOpacity>
</View>
<View style={styles.headerDivider} />
{/* 바디 부분 - 해당 부분에 컨텐츠가 들어가야 합니다 */}
<FlatList
ListHeaderComponent={
<>
<Text style={styles.management}>설정</Text>
<View style={styles.menuContainer}>
<TouchableOpacity
style={styles.menuItem}
onPress={() => navigation.navigate("store_registraion")}
>
<MaterialIcons name="store" size={42} color="#ff3b30" />
<Text style={styles.text}>매장등록</Text>
</TouchableOpacity>
<TouchableOpacity
style={styles.menuItem}
onPress={() => navigation.navigate("menu_management")}
>
<MaterialCommunityIcons
name="silverware-fork-knife"
size={40}
color="#ff3b30"
/>
<Text style={styles.text}>메뉴관리</Text>
</TouchableOpacity>
<TouchableOpacity style={styles.menuItem} onPress={go_reivew}>
<MaterialIcons name="rate-review" size={40} color="#ff3b30" />
<Text style={styles.text}>리뷰관리</Text>
</TouchableOpacity>
<TouchableOpacity
style={styles.menuItem}
onPress={() => navigation.navigate("owner_inquiry")}
>
<MaterialIcons
name="question-answer"
size={40}
color="#ff3b30"
/>
<Text style={styles.text}>문의하기</Text>
</TouchableOpacity>
</View>
<Text style={styles.management}>매장 관리</Text>
</>
}
data={images}
renderItem={({ item }) => (
<TouchableOpacity onPress={() => go_store(item)} style={styles.card}>
<Image source={item.uri} style={styles.cardImage} />
<Text style={styles.cardText}>{item.text}</Text>
</TouchableOpacity>
)}
keyExtractor={(item, index) => item.id.toString()}
numColumns={1}
contentContainerStyle={styles.listContainer}
ListFooterComponent={<View style={{ height: 10 }} />}
/>
{/* 탭 바 부분 */}
<View style={styles.tabBar}>
<TouchableOpacity style={styles.tabItem}>
<Entypo name="home" size={24} color="#ff3b30" />
</TouchableOpacity>
<TouchableOpacity style={styles.tabItem} onPress={go_mypage}>
<FontAwesome name="user" size={24} color="#ff3b30" />
</TouchableOpacity>
</View>
</SafeAreaView>
);
};
const styles = StyleSheet.create({
safeArea: {
flex: 1,
backgroundColor: "#fff",
},
header: {
flexDirection: "row", // 항목들을 가로로 배열합니다.
alignItems: "center", // 세로 축 기준으로 중앙 정렬합니다.
justifyContent: "center", // 항목들을 컨테이너의 시작 부분에 정렬합니다.
paddingHorizontal: 15, // 좌우 여백을 추가합니다.
height: 60, // 헤더의 높이를 지정합니다.
},
imageListContainer: {
flex: 1,
justifyContent: "flex-start",
alignItems: "center",
},
body: {
flex: 1,
justifyContent: "flex-start",
alignItems: "center",
},
tabBar: {
height: 60,
flexDirection: "row",
borderTopColor: "#ccc",
borderTopWidth: 1,
},
tabItem: {
flex: 1,
alignItems: "center",
justifyContent: "center",
},
icon: {
width: 300,
height: 300,
resizeMode: "contain",
alignItems: "center",
justifyContent: "center",
},
bellIcon: {
marginLeft: 5,
marginRight: -30, // 로고 이미지와 아이콘 사이의 간격을 지정합니다.
},
listContainer: {
paddingVertical: 20,
paddingHorizontal: containerPadding, // 여기를 조정하여 FlatList의 양쪽 패딩을 줄임
marginBottom: 30,
},
management: {
fontSize: 25,
fontWeight: "bold",
textAlign: "left",
alignSelf: "flex-start",
marginTop: 5, // 텍스트 아래 여백 추가
marginLeft: 20, // 왼쪽 여백 추가
},
imageWrapper: {
width: "50%", // 화면 너비의 절반만큼
aspectRatio: 1, // 1:1 비율 유지
padding: 10, // 각 이미지 주위에 간격 추가
},
image: {
flex: 1,
borderRadius: 10, // 모서리를 라운드 처리
width: 150, // 화면 너비의 절반만큼
height: 150,
},
text: {
fontSize: 16,
fontWeight: "bold",
color: "#000",
},
imageContainer: {
margin: imageMargin, // 이미지 사이의 마진
width: imageWidth, // 동적으로 계산된 너비 사용
aspectRatio: 1, // 유지하고 싶은 경우
justifyContent: "center",
alignItems: "center",
},
image: {
flex: 1,
borderRadius: 10,
width: "100%",
height: "100%",
},
overlayText: {
fontSize: 16,
fontWeight: "bold",
textAlign: "center", // 텍스트를 가운데로 정렬
marginTop: 10,
},
container: {
flex: 1,
justifyContent: "center",
alignItems: "center",
backgroundColor: "#fff",
},
menuContainer: {
flexDirection: "row",
justifyContent: "center",
width: "100%",
paddingTop: 20, // 상단 패딩
paddingBottom: 20, // 하단 패딩
paddingHorizontal: 5, // 좌우 패딩을 줄임
},
menuItem: {
alignItems: "center",
justifyContent: "center",
borderWidth: 1,
borderColor: "#ff3b30",
borderRadius: 25,
paddingVertical: 10, // 아이콘 주위의 상하 패딩
paddingHorizontal: 10, // 아이콘 주위의 좌우 패딩
marginHorizontal: 7, // 아이템 간의 가로 마진 증가
backgroundColor: "#fff",
height: 80, // 높이 지정
width: (width - 80) / 4, // 아이템의 너비 계산을 수정
shadowColor: "#000", // 그림자 색상
shadowOffset: { width: 0, height: 2 }, // 그림자 위치
shadowOpacity: 0.25, // 그림자 투명도
shadowRadius: 2, // 그림자 블러 반경
elevation: 5, // 안드로이드에서 그림자를 위한 높이
},
menuItemText: {
color: "#ff3b30",
marginTop: 5, // 텍스트와 아이콘 사이의 간격
fontSize: 14, // 텍스트 크기 조정
textAlign: "center", // 텍스트를 가운데 정렬
},
text: {
fontSize: 12,
color: "black",
},
headerDivider: {
height: 1, // 구분선의 두께
backgroundColor: "#e0e0e0", // 구분선 색상
marginVertical: 10, // 위 아래 마진
},
card: {
backgroundColor: "#fff",
borderRadius: 8,
padding: 10,
marginHorizontal: 10,
marginVertical: 5,
borderWidth: 1,
borderColor: "#f1f3f5",
width: Dimensions.get("window").width - 20, // 카드의 너비를 화면의 너비에서 양쪽 여백을 뺀 값으로 설정
shadowColor: "#000", // 그림자 색상
shadowOffset: { width: 0, height: 2 }, // 그림자 위치
shadowOpacity: 0.25, // 그림자 투명도
shadowRadius: 2, // 그림자 블러 반경
elevation: 5, // 안드로이드에서 그림자를 위한 높이
justifyContent: "center",
alignItems: "center",
marginTop: 10,
marginLeft: 1,
marginBottom: 10,
},
cardImage: {
width: "100%", // 카드 너비에 맞춤
height: 150, // 원하는 높이 설정
borderRadius: 8, // 카드와 같은 둥근 모서리 반경 적용
},
cardText: {
marginTop: 10,
fontSize: 16,
fontWeight: "bold",
color: "#000",
textAlign: "center", // 가운데 정렬
},
});
export default App;