-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop' into release
* origin/develop: fix: SplashViewReactor 화면 전환 issue 수정 (#702) fix: MyUserDefaults memberId, userName Type Annotation String으로 수정 (#700) fix: 로그인 버튼 클릭시 touch event cancel 현상 수정해요 (#695) fix: QA issue를 수정합니다(#696) feat: AlertService 구현 (#692) refactor: Calendar 관련 뷰 컨트롤러, 리액터 등 부가 코드 리팩토링 (#682)
- Loading branch information
Showing
81 changed files
with
2,303 additions
and
2,036 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
14th-team5-iOS/App/Sources/Presentation/Calendar/Config/CalendarImageCell+Type.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// CalendarType.swift | ||
// App | ||
// | ||
// Created by 김건우 on 10/16/24. | ||
// | ||
|
||
import Foundation | ||
|
||
public enum MomoriesCalendarType { | ||
case daily | ||
case month | ||
} |
File renamed without changes.
File renamed without changes.
12 changes: 12 additions & 0 deletions
12
...ntation/Calendar/Reactive/DelegateProxy/Delegate/MemoriesCalendarPostHeaderDelegate.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// | ||
// File.swift | ||
// App | ||
// | ||
// Created by 김건우 on 10/18/24. | ||
// | ||
|
||
import UIKit | ||
|
||
@objc protocol MemoriesCalendarPostHeaderDelegate: AnyObject { | ||
@objc optional func didTapProfileImageButton(_ button: UIButton, event: UIButton.Event) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
...es/Presentation/Calendar/Reactive/DelegateProxy/RxMemoriesCalendarPostDelegateProxy.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// | ||
// RxMemoriesCalendarPostDelegate.swift | ||
// App | ||
// | ||
// Created by 김건우 on 10/18/24. | ||
// | ||
|
||
import Foundation | ||
|
||
import RxCocoa | ||
import RxSwift | ||
|
||
final class RxMemoriesCalendarPostDelegateProxy: DelegateProxy<MemoriesCalendarPostHeaderView, MemoriesCalendarPostHeaderDelegate>, DelegateProxyType, MemoriesCalendarPostHeaderDelegate { | ||
|
||
public static func registerKnownImplementations() { | ||
self.register { RxMemoriesCalendarPostDelegateProxy(parentObject: $0, delegateProxy: self) } | ||
} | ||
|
||
} | ||
|
||
extension MemoriesCalendarPostHeaderView: HasDelegate { | ||
public typealias Delegate = MemoriesCalendarPostHeaderDelegate | ||
} | ||
|
||
extension Reactive where Base: MemoriesCalendarPostHeaderView { | ||
|
||
var delegate: DelegateProxy<MemoriesCalendarPostHeaderView, MemoriesCalendarPostHeaderDelegate> { | ||
return RxMemoriesCalendarPostDelegateProxy.proxy(for: self.base) | ||
} | ||
|
||
/// 프로필 버튼을 클릭하면 빈 항목이 담긴 스트림이 흐릅니다. | ||
var didTapProfileImageButton: ControlEvent<Void> { | ||
let source = delegate.methodInvoked(#selector(MemoriesCalendarPostHeaderDelegate.didTapProfileImageButton(_:event:))) | ||
.map { _ in () } | ||
return ControlEvent(events: source) | ||
} | ||
|
||
} |
104 changes: 0 additions & 104 deletions
104
14th-team5-iOS/App/Sources/Presentation/Calendar/Reactor/CalendarImageCellReactor.swift
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.