-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
121 lines (107 loc) · 3.02 KB
/
test.html
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Swoole Chat App</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
#messages {
display: flex;
flex-direction: column;
margin: 24px 12px;
padding: 8px;
}
.left {
background-color: #007BFF;
color: white;
max-width: 70%;
padding: 10px;
border-radius: 10px;
margin: 5px;
}
.right {
background-color: #343a40;
align-self: flex-end;
color: white;
max-width: 70%;
padding: 10px;
border-radius: 10px;
margin: 5px;
}
#form {
display: flex;
flex-direction: column;
margin: 12px;
}
label {
font-weight: bold;
}
input[type="text"] {
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
}
button {
background-color: #007BFF;
color: white;
border: none;
padding: 10px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<h1>Swoole Chat App</h1>
<div id="messages"></div>
<form id="form">
<label for="name">Nome:</label>
<input type="text" id="name" name="name">
<label for="message">Mensagem:</label>
<input type="text" id="message" name="message">
<button>Enviar</button>
</form>
<script>
const ws = new WebSocket('ws://localhost:8081');
const form = document.querySelector('#form');
const name = document.querySelector('#name');
const message = document.querySelector('#message');
const messages = document.querySelector('#messages');
const addMessage = (value, name, other = false) => {
messages.innerHTML += `<p class="${other ? 'right' : 'left'}"><strong>${other ? name : 'Eu'}:</strong> ${value}</p>`;
};
form.addEventListener('submit', (event) => {
event.preventDefault();
const value = message.value;
const nameValue = name.value;
if (!value) {
return;
}
message.value = '';
name.readOnly = true;
ws.send(JSON.stringify({
name: nameValue,
message: value,
}));
addMessage(value, nameValue);
});
ws.onmessage = (event) => {
const data = JSON.parse(event.data);
addMessage(data.message, data.name, true);
};
</script>
</body>
</html>