ChatContainer.js
1.08 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
import React from "react";
import { useSubscription, useMutation } from "@apollo/react-hooks";
import ChatPresenter from "./ChatPresenter";
import { withRouter } from "react-router-dom";
import { NEW_MESSAGE, SUBSCRIPTION_MSG } from "./ChatQueries";
import useInput from "../../Hooks/useInput";
import { toast } from "react-toastify";
export default withRouter(({ location }) => {
const [createMsg] = useMutation(NEW_MESSAGE);
const { data } = useSubscription(SUBSCRIPTION_MSG);
const message = useInput("");
let messageObj, outcomingMsg;
const onSubmit = async (e) => {
e.preventDefault();
if (message.value !== undefined || message.value !== "") {
try {
messageObj = await createMsg({
variables: {
message: message.value,
},
});
const { text } = messageObj;
outcomingMsg = text;
} catch {
toast.error("text must be not empty");
}
}
};
return (
<ChatPresenter
location={location}
message={message}
onSubmit={onSubmit}
outcomingMsg={outcomingMsg}
/>
);
});