socket.js
3.32 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
if (("Notification" in window)) {
if (Notification.permission !== 'denied') {
Notification.requestPermission();
}
}
socket = new WebSocket("ws://" + window.location.host + "/");
socket.onmessage = function(e) {
content = JSON.parse(e.data);
if (content.type == "mural") {
if (content.subtype == "create") {
muralNotificationCreate(content);
} else if (content.subtype == "update") {
muralNotificationUpdate(content);
} else if (content.subtype == "delete") {
muralNotificationDelete(content);
} else if (content.subtype == "create_comment") {
muralNotificationComment(content);
} else if (content.subtype == "update_comment") {
muralNotificationCommentUpdate(content);
} else if (content.subtype == "delete_comment") {
muralNotificationCommentDelete(content);
}
}
}
// Call onopen directly if socket is already open
if (socket.readyState == WebSocket.OPEN) socket.onopen();
function muralNotificationCreate(content) {
if (window.location.pathname == content.pathname) {
$('.posts').prepend(content.complete);
$('.no-subjects').attr('style', 'display:none');
} else {
$('.mural_badge').each(function () {
var actual = $(this).text();
if (actual != "+99") {
actual = parseInt(actual, 10) + 1;
if (actual > 99) {
actual = "+99";
}
$(this).text(actual);
}
$(this).show();
});
}
if (("Notification" in window)) {
var options = {
icon: content.user_icon,
body: content.simple
}
if (Notification.permission === "granted") {
var notification = new Notification("", options);
setTimeout(notification.close.bind(notification), 3000);
}
}
}
function muralNotificationUpdate(content) {
if (window.location.pathname == content.pathname) {
var post = $("#post-" + content.post_id);
if (post.is(":visible")) {
post.before(content.complete);
post.remove();
}
}
}
function muralNotificationDelete(content) {
if (window.location.pathname == content.pathname) {
var post = $("#post-" + content.post_id);
if (post.is(":visible")) {
post.remove();
}
}
}
function muralNotificationComment(content) {
if (window.location.pathname == content.pathname) {
if ($("#post-" + content.post_id).is(":visible")) {
var section = $("#post-" + content.post_id).find('.comment-section');
section.append(content.complete);
}
} else {
$('.mural_badge').each(function () {
var actual = $(this).text();
if (actual != "+99") {
actual = parseInt(actual, 10) + 1;
if (actual > 99) {
actual = "+99";
}
$(this).text(actual);
}
$(this).show();
});
}
if (("Notification" in window)) {
var options = {
icon: content.user_icon,
body: content.simple
}
if (Notification.permission === "granted") {
var notification = new Notification("", options);
setTimeout(notification.close.bind(notification), 3000);
}
}
}
function muralNotificationCommentUpdate(content) {
if (window.location.pathname == content.pathname) {
var comment = $("#comment-" + content.comment_id);
if (comment.is(":visible")) {
comment.before(content.complete);
comment.remove();
}
}
}
function muralNotificationCommentDelete(content) {
if (window.location.pathname == content.pathname) {
var comment = $("#comment-" + content.comment_id);
if (comment.is(":visible")) {
comment.remove();
}
}
}