-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 채팅 목록 불러오기 기반 작업 * 채팅 목록 불러오기 기반 작업 * 채팅 목록 불러오기 스웨거 작업 * 채팅 보내기 repository 함수 생성 * 일반 질문 지정 질문 route 분리 * 일반 질문 지정 질문 로직 작성 * 지정 질문 선택시에 선생님 한테 메시지 보내짐 * 일반 질문 숏과외 제안시 채팅 개시 * 일반 질문 숏과외 제안시 채팅 개시 * chatting list 반환할때 roomType 지정 * chatting list 반환할때 roomType 지정 * 학생 입장에서 일반질문 올리고 아무도 offer 없을때도 채팅 목록에서 보이게 수정 * 수업 시간 정하기 api 추가 * 수업 끝나면 question.status 도 finish로 바뀜 * 지정 질문 올릴때 question에 selectedteacherId 저장하도록 수정 * 튜터링 객체 만들때 startedAt, EndAt emptystring으로 해둔거 수정 * /tutoring/info 를 학생이 부를 때 선생님이 과외를 시작하지 않았으면 정보를 돌려주지 않고 success: false 가 됨. * 일반 질문 학생이 선생님 선택하면 다른 선생님한테 메시지 가도록 수정. * 선생님이 채팅 조회시 일반 질문 거절 당했을때 "normalreserve"로 분류되던걸 , "normalproposed"로 분류되도록 수정 * 선생님이 채팅 조회시 일반 질문 거절 당했을때 텍스트 메시지를 받도록 변경 * refactor /chatting/list * refactor /chatting/list * refactor /chatting/list * 지정 질문 선생님 아이디 유효성 체크 * 채팅 목록 불러오기 기반 작업 * 채팅 목록 불러오기 기반 작업 * 채팅 목록 불러오기 스웨거 작업 * 채팅 보내기 repository 함수 생성 * 일반 질문 지정 질문 route 분리 * 일반 질문 지정 질문 로직 작성 * 지정 질문 선택시에 선생님 한테 메시지 보내짐 * 일반 질문 숏과외 제안시 채팅 개시 * 일반 질문 숏과외 제안시 채팅 개시 * chatting list 반환할때 roomType 지정 * chatting list 반환할때 roomType 지정 * 학생 입장에서 일반질문 올리고 아무도 offer 없을때도 채팅 목록에서 보이게 수정 * 수업 시간 정하기 api 추가 * 수업 끝나면 question.status 도 finish로 바뀜 * 지정 질문 올릴때 question에 selectedteacherId 저장하도록 수정 * 튜터링 객체 만들때 startedAt, EndAt emptystring으로 해둔거 수정 * /tutoring/info 를 학생이 부를 때 선생님이 과외를 시작하지 않았으면 정보를 돌려주지 않고 success: false 가 됨. * 일반 질문 학생이 선생님 선택하면 다른 선생님한테 메시지 가도록 수정. * 선생님이 채팅 조회시 일반 질문 거절 당했을때 "normalreserve"로 분류되던걸 , "normalproposed"로 분류되도록 수정 * 선생님이 채팅 조회시 일반 질문 거절 당했을때 텍스트 메시지를 받도록 변경 * refactor /chatting/list * refactor /chatting/list * refactor /chatting/list * 지정 질문 선생님 아이디 유효성 체크 * chatting.schema.ts 수정 status 삭제
- Loading branch information
1 parent
67716b6
commit 7b0fd0a
Showing
5 changed files
with
181 additions
and
134 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import { Question } from '../../question/entities/question.interface'; | ||
import { Chatting, Message } from '../entities/chatting.interface'; | ||
import { Item } from 'nestjs-dynamoose'; | ||
|
||
export interface ChatList { | ||
normalProposed: ChatRoom[]; | ||
normalReserved: ChatRoom[]; | ||
selectedProposed: ChatRoom[]; | ||
selectedReserved: ChatRoom[]; | ||
} | ||
|
||
export interface NestedChatRoomInfo { | ||
roomInfo: Item<Chatting>; | ||
questionInfo: Item<Question>; | ||
} | ||
|
||
export enum ChattingStatus { | ||
pending = 'pending', | ||
reserved = 'reserved', | ||
} | ||
|
||
export interface ChatRoom { | ||
status: ChattingStatus; | ||
messages?: Message[]; | ||
id?: string; | ||
title: string; | ||
roomImage: string; | ||
problemImage?: string; | ||
opponentId?: string; | ||
schoolSubject: string; | ||
schoolLevel: string; | ||
isSelect: boolean; | ||
isTeacherRoom: boolean; | ||
questionInfo?: Question; | ||
teachers?: ChatRoom[]; | ||
questionId: string; | ||
} |
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
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