-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.js
133 lines (123 loc) · 3.72 KB
/
main.js
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
122
123
124
125
126
127
128
129
130
131
132
133
dispLoading();
var roomkey = "ROOM1";
$(document).ready(function(){
$('.post-textbox').blur(function() {
if($(this).val().length === 0){
$('.post-label').removeClass("focus");
} else { return; }
})
.focus(function() {
$('.post-label').addClass("focus")
});
});
var ws;
window.onload = function () {
if (ws) return;
// WebSocketサーバーに接続
ws = new WebSocket("wss://cloud.achex.ca/10secondsns");
//接続通知
ws.onopen = function(event) {
var name = Math.floor( Math.random() * (99999 + 1 - 11111) ) + 11111;
if ($.cookie("nickname")) {
name = $.cookie("nickname");
}
ws.send(JSON.stringify({"auth":String(name), "passwd":String(name)}));
removeLoading();
//メッセージ受信
ws.onmessage = function(event) {
var data = JSON.parse(event.data, true);
if (data.error) {
swal("エラー", data.error, "error");
return;
}
if (data.content) {
add(String(data.content), data.FROM);
return;
}
if (data.auth) {
if (data.auth == "OK") {
ws.send(JSON.stringify({"joinHub": roomkey}))
} else {
swal("エラー", "認証に失敗しました。", "error");
return;
}
}
};
//切断
ws.onclose = function() {
swal({
title: "切断されました",
text: "サーバーから切断されました。",
icon: "error",
});
};
};
//エラー発生
ws.onerror = function(error) {
console.error(error);
swal({
title: "サーバーエラー",
text: "サーバーエラーが発生しました。",
icon: "error",
});
};
};
function dispLoading() {
if($("#loading").length == 0){
$("body").append("<div id='loading'>接続中...</div>");
}
}
function removeLoading() {
$("#loading").remove();
}
$("#pco").keypress(function(e){
if(e.which == 13){
post_f();
}
});
function post_f () {
var content = String($("#pco").val());
if (content.startsWith("setnick:")) {
var nick_ = "";
nick_ = content.replace("setnick:", "");
if (nick_ == "") {
swal({
title: "エラー",
text: "ニックネームを空白にすることは出来ません。",
icon: "error",
});
return;
}
$.cookie("nickname", nick_, { expires: 360, path: '/3SecondSNS/',domain: 'narikakun.github.io', secure: true });
swal({
title: "成功",
text: "変更に成功したよ!",
icon: "success",
}).then((value) => {
location.reload();
});
return;
}
ws.send(JSON.stringify({"toH":roomkey, "content":content}));
add(content, "自分");
$("#pco").val("");
}
function add (text, user) {
if (!text) return;
var id = String(Math.floor( Math.random() * (99999 + 1 - 11111) ) + 11111);
$('#board').prepend(`<div class="board-box" id="${id}">${escapeHTML(text)}<span class="box-user">${user}</span></div>`);
$(`#${id}`).hide().fadeIn('slow');
setTimeout(() => {
$(`#${id}`).fadeOut('slow');
setTimeout(() => {
$(`#${id}`).remove();
}, 500);
}, 3000);
}
function escapeHTML(string){
return string.replace(/\&/g, '&')
.replace(/\</g, '<')
.replace(/\>/g, '>')
.replace(/\"/g, '"')
.replace(/\'/g, ''');
}