+124
−64
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.
Checklist
Description
zustand 추가 후 RoomContext에서 분리 가능한 부분만 일단 분리했습니다.
useRef를 쓰는 경우는 zustand store에 넣어서 useRef로 부르면 되는 것 같은데, 너무 복잡해져서 일단 contextAPI 채로 나뒀습니다.
참고링크
isHost, roomCode 는 서버 상태로 분리 할 예정이라 일단 원래 ussRoom 사용하는 RoomContext 상태로 나뒀습니다.
그리고 RoomContext에서 바로 내려지는 상태들도 있는데, 그 상태를 받아 다시 하위 컴포넌트에 props로 내리는 형태의 코딩이 많이 되어있습니다. 저희가 Context API를 사용하면서 필요없는 선언부를 줄이기 위해 사용한 방식인데, zustand를 쓰면 그것도 해결할 수 있지 않나 싶습니다.
Changes Made
Extra Comments
Demo