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.
issue
구현 목적
환경에 따라 다양한 버그가 발생합니다.
IOS, AN 두 운영체제에서 다르게 동작하는 버그도 존재하고,
focus, blur, isComposing, defaultEvent 등 다양한 문제가 엮여있는 상황입니다.
멤버 추가 시 Input 입력 후 엔터를 누를 경우 위의 다양한 이유들로 인해 예상대로 작동되지 않았습니다.
이를 정상적으로 작동하게 하도록 구현합니다.
구현 사항
기존의
LabelInput
component는Input
component를 사용하는데, 이 내부에 기초적으로 Enter를 위한 핸들러를 적용하고 있었습니다.사용처에서 부터 LabelInput, Input, input에 이르기까지 너무 많은 불필요한 상태를 컨트롤하고, ref를 전달하며 중복되는 이벤트 핸들링이 존재하여
이미 사용하지 않게된
Input
component를 현재LabelInput
으로 통일성 있게 구현하고 적용하였습니다.또한
isIOS
함수를 이용하여 환경 별로 동작 방식을 다르게 하여, os 별 텍스트 및 input 처리에 대해서 효과적으로 작동할 수 있도록 처리해 주었습니다.