[IDLE-72] 사업자 번호 조회및 아이디 패스워드 검증 기능 구현 #15
Merged
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.
변경사항
센터장 회원가입 기능을 사용할 수 있습니다.
초기에는 모든 입력 스트림을 CombineLatest로 합쳐 데이터를 종합한 후 회원가입을 진행하려고 하였습니다.
하지만, 각자다른 타입이 추상화된 Observable들을 한곳에 뭉치는 것은 IDE가 컴파일도 전인 타입 추적단계에서 부터 딜레이가 발생하였습니다.
제네릭은 컴파일 타임에 구체타입이 결정되기는 하지만, IDE를 사용한 원할한 진행을 위해 상태를 관리하는 개체를 Entity모듈에 생성하였습니다.
헤당 객체는 뷰모델에서 관리됩니다.
마지막 버튼 클릭시 회원가입이 진행되며 해당 매서드의 매개변수로 객체가 전달됩니다.
뷰모델이 재사용될 수 있음으로 회원가입 시도후 해당 객체의 프로퍼티를 초기화 합니다.