-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#419.2 채팅 페이지 typescript 전환 / #540 채팅 UI/UX 개선 #594
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 tasks
Open
2 tasks
헉 제 PR인줄 알았습니다! 죄송합니다ㅜㅠ |
14KGun
changed the title
#419.2 채팅 페이지 typescript 전환
#419.2 채팅 페이지 typescript 전환 / #540 채팅 UI/UX 개선
Aug 2, 2023
Gdakgdak22
approved these changes
Aug 3, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
It closes #419 , #540
1. 채팅 관련 component, hook의 typescript 마이그레이션
채팅과 관련된 component와 hook 들을 typescript로 마이그레이션 하였습니다.
2. 채팅 코드 Refactoring
채팅 코드를 기능별로 여러개의 hook으로 모듈화하고 필요없는 자식 컴포넌트로의 props의 전달을 최소화하였습니다.
taxi-front/src/pages/Chatting/index.jsx
Lines 1 to 332 in df1d35e
taxi-front/src/components/Chat/index.tsx
Lines 1 to 85 in bc14689
3. 다른 방 채팅 메시지도 수신 버그 해결
#595 에서 발견된 다른 채팅 방의 메시지도 채팅창에 표시되는 버그를 해결하였습니다.
다른 방의 채팅메시지는 @withSang 님이 제시하였던
filter
로 거릅니다.taxi-front/src/hooks/chat/useSocketChatEffect.tsx
Line 70 in bc14689
4. UI 개선
@imYourChoi 의 디자인 수정안을 반영하였습니다.
SideMenu
추가 (기존 | 수정후)ToolSheet
추가 (기존 | 수정후)5. 이미지 채팅 메시지 미리보기 이후 전송
기존에 이미지 채팅 메시지를 운영체제의 파일 탐색기에서 선택 이후 바로 보냈다면,
파일 탐색기에서 선택 이후 미리보기 후 전송 버튼을 눌러야 전송됩니다.
메시지 전송과 이미지 압축 빛 확장자 변환은 비동기적으로 이루어 지며 이 동안 애니메이션 효과를 주었습니다.
2023-07-30.12.55.17.mov
6. 내방리스트 실시간 업데이트
in
,out
,settlement
,payment
타입의 채팅 메시지 수신시 글로벌 내방리스트를 업데이트 합니다.2023-08-02.4.56.12.mov
Further Works
Lazy Load
적용하기 #600SideMenu
에서 정산 현황 확인가능하도록 수정Chat
+ChatTemp
(채팅을 전송할 시 수신 때까지Temporarily Chat
메시지를 띄웁니다)