Closed YujinJI closed 11 months ago
/chat
useQuery
useInfiniteQuery
console에 아래와 같이 작성하면 됩니다.
// 현재 currentUser은 임의로 'userId1'로 할당되어있습니다. // userId: 'userId1' -> 'me' 채팅 스타일 // userId: !'userId1' -> 'other' 채팅 스타일 // publishEvent(roomId, newMessage) window.__LIVE_TEST__.publishEvent(2, { userId: 'userId1', nickName: 'name', profileUrl: 'https://picsum.photos/200', messageId: 'messageId', messageContent: '라이브 메세지 테스트입니다.', createdAt: '2023-11-14T10:10:10.100+09:00', isWelcome: false, })
PR 타입
변경 사항
/chat
경로로 진입 시 채팅 페이지가 렌더링됩니다.useQuery
를 통해 가져오고 있지만,useInfiniteQuery
를 사용해 무한 스크롤을 생각하고 있습니다.채팅 테스트 하는 방법console에 아래와 같이 작성하면 됩니다.
채팅을 보내는 테스트는 추가 commit에 포함되어있습니다.