ChatContainer.js
1.97 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
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,
SUBSCRIPTION_MSG,
} from "./ChatQueries";
import useInput from "../../Hooks/useInput";
import { toast } from "react-toastify";
export default withRouter(({ location }) => {
const { pathname } = location;
const roomName = pathname.slice(1, pathname.length);
const [createMsg] = useMutation(CREATE_MESSAGE);
const message = useInput("");
let messageObj, roomNum, messageArray;
const { data: getRoom } = useQuery(GET_ROOM_BY_NAME, {
variables: { roomName },
});
if (getRoom !== undefined) {
const {
getRoomByName: { id: roomId },
} = getRoom;
roomNum = Number(roomId);
}
const { subscribeToMore, data: messageList } = useQuery(SEE_ALL_MESSAGE, {
variables: { roomId: roomNum },
});
if (messageList !== undefined) {
messageList.seeAllMessage.map((e) => {
if (e.sender.avatarUrl === "") {
e.sender.avatarUrl = "../../imgs/defaultProfile.jpg";
}
});
messageArray = messageList;
}
let resultObj = subscribeToMore({
document: SUBSCRIPTION_MSG,
updateQuery: (prev, { subscriptionData }) => {
if (!subscriptionData.data) return prev;
},
});
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");
}
} catch {
toast.error("text must be not empty");
}
}
};
return (
<ChatPresenter
location={location}
message={message}
onSubmit={onSubmit}
messageArray={messageArray}
/>
);
});