Boxoffice mvi#13
Open
ChoiAnYong wants to merge 7 commits into
Open
Conversation
hooni0918
approved these changes
Jan 12, 2025
| //MARK: - Functions | ||
|
|
||
| extension BoxOfficeStore { | ||
| @MainActor |
There was a problem hiding this comment.
반복되는 MainActor의 사용이 좀더 개선할 부분이 있을것같은데,,,, 수정을 어떻게 해야하는지가 안보이네요 흠
추후에 같이 고민해보죠!
| .environmentObject(store) | ||
| } | ||
| } | ||
| .onAppear { |
|
추가적으로 네비게이션 로직과 관련한 부분은
하는 정도의 대체 방법이 있긴 합니다. 하지만 모두 MVI가 처음이다 보니 합숙기간동안의 스프린트동안에는 MVI가 이렇게 나누어지는구나 정도만 이해하고 이해가 안되는 부분들, 뭔가 사용하기에 이상한 부분들을 잘 기록해 두었다가 트러블 슈팅으로 2차 스프린트를 이어나가는게 제 생각에는 포트폴리오에 가장 이상적이라고 생각합니다. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🌱 작업한 내용
🌱 PR Point
대부분 바인딩을 사용해야 하는 것으로 보입니다. 이 경우 뷰에서 Intent를 거치지 않고 상태 값을 변경하는데
MVI의 흐름과는 다르다는 생각이 들어서 다른 시도를 해보았지만 결국 실패했습니다.. 이런 경우는 예외적으로
store 내부에 따로 @published를 사용하여 path를 관리하는 방법 뿐인지 궁금합니다..