Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

로그인 - 온보딩 쪽 디자인 & 기능 완성 #91

Merged
merged 32 commits into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
3f522ff
refactor #87: 로그인 뷰 디자인 변경
enebin Aug 31, 2023
54d9dae
refactor #88: 개인정보 등록 뷰 디자인 변경
enebin Aug 31, 2023
2ce9cb2
refactor #87: 루트뷰 로직 개선
enebin Sep 1, 2023
873edaf
refactor #87: 루트뷰 로직 및 푸시토큰 등록 개선
enebin Sep 2, 2023
2a62396
refactor #87: 마이페이지 APi 호출 로직 개선
enebin Sep 2, 2023
8f2488f
refactor #87: 루트뷰 애니메이션 개선
enebin Sep 2, 2023
63c0c27
refactor #87: 햅틱 개선
enebin Sep 2, 2023
05dad48
fix #88: 닉네임 로직 버그 수정
enebin Sep 2, 2023
7f4977e
refactor #87: 약관 수정
enebin Sep 2, 2023
f499971
refactor #87: 카카오 로그인 세팅
enebin Sep 2, 2023
b3b93be
refactor #87: xcconfig 세팅
enebin Sep 2, 2023
e983ace
feature #89: 마이페이지에 포토/설정 버튼 추가
enebin Sep 2, 2023
a5a6e54
feature #89: 마이페이지에 설정 네비게이션 로직 추가
enebin Sep 2, 2023
1ad62f2
feature #89: 네비게이션 바 커스텀
enebin Sep 2, 2023
3ab0e46
fix #89: 홈 뷰 애니메이션 버그 수정
enebin Sep 3, 2023
3771f8a
fix #89: 웹뷰 헤더 토큰 추가
enebin Sep 3, 2023
0706617
fix #89: 스택 오버플로우 버그 수정
enebin Sep 3, 2023
07be2dd
feature #89: 루트뷰에서 로그아웃 액션 수신
enebin Sep 4, 2023
fa42493
refactor #89: 루트뷰를 스위치스토어로 변경
enebin Sep 4, 2023
c80e875
refactor #89: 백그라운드 블러 로직 변경
enebin Sep 4, 2023
e875ec1
Merge branch 'refactor/루트뷰-통한의-리팩토링' into feature/setting-view(#89)
enebin Sep 4, 2023
9197ccf
refactor #89: 파일 이름 변경
enebin Sep 4, 2023
9563edd
refactor #89: 액션 이름 변경
enebin Sep 4, 2023
88ddca0
feature #89: 푸시알림 관리를 위한 매니저 클래스 추가
enebin Sep 4, 2023
d0ae5d6
feature #89: 푸시알림 등록 로직 수정
enebin Sep 4, 2023
c5beda8
refactor #89: 설정 진입 네비게이션 로직 개선
enebin Sep 4, 2023
f133d2b
refactor #89: 코드 개선
enebin Sep 5, 2023
ea19516
refactor #89: 웹 뷰 로딩속도 개선
enebin Sep 5, 2023
6f15114
refactor #89: 홈에서 테스트 진입 UX 개선
enebin Sep 6, 2023
ae04e23
feature #89: 권한 관련 에러처리 및 `alert` 추가
enebin Sep 6, 2023
f750031
chore #89: 코드린트
enebin Sep 6, 2023
6662b61
Merge pull request #92 from Nexters/feature/setting-view(#89)
enebin Sep 6, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feature #89: 루트뷰에서 로그아웃 액션 수신
  • Loading branch information
enebin committed Sep 4, 2023
commit 07be2dd7b4f8789e0a3d29b998dfd7addaf141c6
Binary file modified Encrypted/Secrets/GoogleService-Info.plist.encrypted
Binary file not shown.
Binary file modified Encrypted/XCConfig/App/DEV.xcconfig.encrypted
Binary file not shown.
2 changes: 1 addition & 1 deletion Encrypted/XCConfig/App/PROD.xcconfig.encrypted
Original file line number Diff line number Diff line change
@@ -1 +1 @@
�d��BJؠ���LH�8�v2c�����mH �"?^F1Xn�o^� |�т�2x>�SFgtmz \���Ԍ����uQ&=O��pV��fa�zuc)�!����wW�0+SXl>7{�mD@���Z�]��增�o�_{�Z���Ex�6 l}�5`������W����.?��h��o>Hˈ4��: SѢ����C^7L�
�d��BJؠ���LH�8�v2c�����mH �"?^F1Xn�o^� |�т�2x>�SFgtmz \���Ԍ����uQ&uD�0�p>y�����|/�N&UcŞ�;RV��$�H�K����X6W]�nu.����i}�D�ş?��~Jod >�w���R
Expand Down
4 changes: 4 additions & 0 deletions Projects/Features/Sources/Root/RootFeature.swift
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@ public struct RootFeature: Reducer {

return .send(.updateState(.canUseApp(userId: userId, nickname: nickname)))

case .mainPage(.presented(.myPage(.settingViewAction(.logout)))):
print("logout from rootview")
return .none

default:
return .none
}
Expand Down