Skip to content

Commit

Permalink
[Edit] 스플래쉬뷰에서 유저 데이터 받도록 수정 #166
Browse files Browse the repository at this point in the history
처음 앱 시작 시, 유저 데이터 받는 코드
  • Loading branch information
Phangg committed Mar 20, 2024
1 parent b26d6c2 commit 0f5b705
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions JUDA_iOS/JUDA/View/Splash/SplashView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,13 @@ struct SplashView: View {
taskGroup.addTask { await mainViewModel.getHottestDrinks() }
// 인기 술상 미리 받아오기
taskGroup.addTask { await mainViewModel.getHottestPosts() }
// 앱 시작 시, 유저 데이터 받아오기
taskGroup.addTask {
if await authViewModel.signInStatus {
await authViewModel.getCurrentUser()
}
}
// 로그인 + 위치 정보 받았을 때, 날씨 & 음식 + 술 받아오기
// TODO: - 로그인 X -> 로그인 O 일때, 받아와야 함.
// TODO: - App 처음 시작 시, 위치 활용 동의 받은 후 받아오는 것 체크 필요.
taskGroup.addTask {
if await authViewModel.signInStatus,
let location = await appViewModel.locationManager.location {
Expand Down

0 comments on commit 0f5b705

Please sign in to comment.