-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsocketPost.jsx
47 lines (44 loc) · 1.17 KB
/
socketPost.jsx
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
import React, { useState } from "react";
import io from "socket.io-client";
const socket = io("http://localhost:5000");
function PostRestData() {
// window.preventDefault();
React.useEffect(() => {
socket.on("connect", () => {
console.log(socket.connected); // true
});
});
const [msg, setMsg] = useState("");
const onChange = (e) => {
// console.log(msg);
setMsg(e.target.value);
};
const submitHandler = (e) => {
e.preventDefault();
};
const socketSend = () => {
socket.emit("messageChange", { msg: msg });
setMsg("");
};
return (
<div className="container p-4">
<p className="h3 pb-5 text-primary"> Message Page</p>
<form onSubmit={submitHandler}>
<div className="form-group">
<label htmlFor="mesage">Message</label>
<textarea
className="form-control"
id="exampleFormControlTextarea1"
rows="3"
onChange={onChange}
value={msg}
></textarea>
</div>
<button className="btn btn-warning m-5" onClick={socketSend}>
Send
</button>
</form>
</div>
);
}
export default PostRestData;