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.
한국어 crdt 구현
PR 설명
✅ 완료한 기능 명세
📸 스크린샷
고민과 해결과정
기존의 문제점은 한글이 한글자씩 입력되는 경우 ytext에 자모음이 하나씩 입력되어 한글이 깨진다는 것이었다.
이를 해결하기 위해 compositionEnd 이벤트를 사용했다.
한글이 완성되었을 때 발생하는 이벤트인데, 이때 ytext에 추가시키는 형태로 구현했다.
또한, 기존의 onChange함수에서 한 글자에 한글인 경우에 대해서는 ytext에 처리하지 않는 형태로 구현하여 해결했다.
한글을 한글자씩 입력받는 경우 처리