ChatContainer.js
2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import React from "react";
import { useMutation, useQuery } from "@apollo/react-hooks";
import ChatPresenter from "./ChatPresenter";
import { withRouter } from "react-router-dom";
import {
CREATE_MESSAGE,
GET_ROOM_BY_NAME,
SEE_ALL_MESSAGE,
} from "./ChatQueries";
import useInput from "../../Hooks/useInput";
import { toast } from "react-toastify";
import defaultProfile from "../imgs/defaultProfile.jpg";
export default withRouter(({ location }) => {
const { pathname } = location;
const roomName = pathname.slice(1, pathname.length);
const [createMsg] = useMutation(CREATE_MESSAGE);
//const { data } = useSubscription(SUBSCRIPTION_MSG);
const message = useInput("");
let messageObj, roomNum, messageText, messageTime, newMsgObj, messageArray;
const { data: getRoom } = useQuery(GET_ROOM_BY_NAME, {
variables: { roomName },
});
if (getRoom !== undefined) {
const {
getRoomByName: { id: roomId },
} = getRoom;
roomNum = Number(roomId);
}
const { data: messageList } = useQuery(SEE_ALL_MESSAGE, {
variables: { roomId: roomNum },
});
if (messageList !== undefined) {
messageList.seeAllMessage.map((e) => {
if (e.sender.avatarUrl === "") {
}
});
messageArray = messageList;
}
const onSubmit = async (e) => {
e.preventDefault();
if (message.value !== undefined || message.value !== "") {
try {
messageObj = await createMsg({
variables: {
message: message.value,
roomId: roomNum,
},
});
if (!messageObj) {
toast.error("fail to create new message !, try again");
} else {
const {
data: {
createMessage: { text, createdAt },
},
} = messageObj;
messageText = text;
messageTime = createdAt;
newMsgObj = messageObj;
}
} catch {
toast.error("text must be not empty");
}
}
};
return (
<ChatPresenter
location={location}
message={message}
onSubmit={onSubmit}
messageText={messageText}
messageTime={messageTime}
newMsgObj={newMsgObj}
messageArray={messageArray}
/>
);
});