10
|
1 'use strict';
|
|
2
|
18
|
3 let title = document.title;
|
10
|
4 let currentChatId = null;
|
12
|
5 let eventSource;
|
73
|
6 let lastUpdate = Date.now();
|
35
|
7 let userId;
|
63
|
8 let filebinUrl;
|
89
|
9 let spy;
|
10
|
10
|
16
|
11 function evalEvent(event) {
|
17
|
12 // console.log(event);
|
16
|
13 eval(event.data);
|
|
14 }
|
|
15
|
15
|
16 function setUserEventSource(userId) {
|
|
17 let userEventSource = new EventSource(`${location.origin}/user/${userId}`);
|
16
|
18 userEventSource.onmessage = evalEvent;
|
15
|
19 }
|
|
20
|
59
|
21 function selectChat(chatId) {
|
48
|
22 document.querySelector('div[chat_content]').setAttribute('show','posts');
|
10
|
23 if( chatId === currentChatId )
|
|
24 return;
|
59
|
25 let div = document.querySelector(`div[chat="${chatId}"]`);
|
10
|
26 let selected = div.parentNode.querySelector('[selected]');
|
|
27 if( selected ) selected.removeAttribute('selected');
|
|
28 div.setAttribute('selected','');
|
|
29 ajax(`get_chat.js?chat=${chatId}`);
|
|
30 currentChatId = chatId;
|
59
|
31 history.replaceState(null,null,`?chat=${chatId}`);
|
53
|
32 clearUnread();
|
12
|
33
|
|
34 if(eventSource) eventSource.close();
|
|
35 eventSource = new EventSource(`${location.origin}/chat/${chatId}`);
|
16
|
36 eventSource.onmessage = evalEvent;
|
12
|
37 }
|
|
38
|
27
|
39 function back() {
|
48
|
40 document.querySelector('div[chat_content]').setAttribute('show','chats');
|
27
|
41 }
|
|
42
|
12
|
43 function gotChat(html) {
|
|
44 document.querySelector('div[posts]').innerHTML = html;
|
19
|
45 fixPosts();
|
12
|
46 document.querySelector('div[input] textarea').focus();
|
|
47 document.querySelector('div[input]').scrollIntoView({block: 'end'});
|
10
|
48 }
|
|
49
|
|
50 function fixTextarea(event) {
|
|
51 let textarea = event.target;
|
|
52 textarea.style.height = 'initial';
|
|
53 textarea.style.height = (textarea.scrollHeight+2) + 'px';
|
|
54 textarea.scrollIntoViewIfNeeded(false);
|
|
55 }
|
|
56
|
|
57 const isMobile = 'ontouchstart' in window || navigator.maxTouchPoints > 0 || navigator.msMaxTouchPoints > 0;
|
|
58
|
|
59 function addPost() {
|
|
60 let textarea = document.querySelector('div[input] textarea');
|
|
61 let text = textarea.value;
|
|
62 if( text.trim() === '' )
|
|
63 return;
|
79
|
64 let url = `add_post.js?chat=${currentChatId}`;
|
|
65 let reply = document.querySelector('div[reply]').getAttribute('reply');
|
|
66 if( reply )
|
|
67 url += `&reply=${reply}`;
|
|
68 ajax(url,`content=${encodeURIComponent(text)}`);
|
10
|
69 textarea.value = '';
|
84
|
70 textarea.style.height = 'initial';
|
79
|
71 closeReply();
|
10
|
72 }
|
|
73
|
|
74 function textareaKey(event) {
|
|
75 if( event.keyCode===13 && !event.shiftKey && !event.ctrlKey && !isMobile ) {
|
|
76 event.preventDefault();
|
|
77 addPost();
|
|
78 }
|
|
79 }
|
|
80
|
78
|
81 function editTextareaKey(event) {
|
|
82 if( event.keyCode===13 && !event.shiftKey && !event.ctrlKey && !isMobile ) {
|
|
83 event.preventDefault();
|
|
84 savePost(event.target);
|
|
85 }
|
|
86 }
|
|
87
|
19
|
88 function fixPosts() {
|
35
|
89 let divs = document.querySelectorAll('div[post][fix]');
|
19
|
90 for( let div of divs ) {
|
79
|
91 for( let whenSpan of div.querySelectorAll('[when]') ) {
|
|
92 whenSpan.textContent = new Date(Number(whenSpan.textContent)).toLocaleString([],{dateStyle:'short',timeStyle:'short'});
|
|
93 }
|
35
|
94 let textDiv = div.querySelector('div[text]');
|
|
95 textDiv.innerHTML = urlsToLinks(textDiv.innerHTML);
|
79
|
96 let reply = div.querySelector('blockquote');
|
|
97 if( reply )
|
|
98 reply.innerHTML = urlsToLinks(reply.innerHTML);
|
|
99 let html;
|
|
100 if( div.getAttribute('author') === userId ) {
|
|
101 html = document.querySelector('div[hidden] span[pulldown=author]').innerHTML;
|
|
102 } else {
|
|
103 html = document.querySelector('div[hidden] span[pulldown=other]').innerHTML;
|
|
104 }
|
|
105 div.querySelector('span[pulldown]').innerHTML = html;
|
19
|
106 div.removeAttribute('fix');
|
|
107 }
|
10
|
108 }
|
11
|
109
|
|
110 function deleteChat() {
|
20
|
111 let dialog = document.querySelector('dialog[delete_chat]');
|
|
112 openModal(dialog);
|
|
113 }
|
|
114
|
|
115 function doDeleteChat(el) {
|
|
116 closeModal(el);
|
11
|
117 ajax(`delete_chat.js?chat=${currentChatId}`);
|
|
118 }
|
12
|
119
|
23
|
120 let currentPostId;
|
|
121
|
38
|
122 function getPostId(el) {
|
|
123 while(true) {
|
|
124 let postId = el.getAttribute('post');
|
|
125 if( postId )
|
|
126 return postId;
|
|
127 el = el.parentNode;
|
|
128 }
|
|
129 }
|
|
130
|
|
131 function deletePost(el) {
|
|
132 currentPostId = getPostId(el);
|
23
|
133 let dialog = document.querySelector('dialog[delete_post]');
|
|
134 openModal(dialog);
|
|
135 }
|
|
136
|
|
137 function doDeletePost(el) {
|
|
138 closeModal(el);
|
|
139 ajax(`delete_post.js?post=${currentPostId}`);
|
|
140 }
|
|
141
|
|
142 function deleted(postId) {
|
|
143 let div = document.querySelector(`div[post="${postId}"]`);
|
|
144 if( div )
|
|
145 div.outerHTML = '';
|
|
146 }
|
|
147
|
38
|
148 function editPost(el) {
|
|
149 ajax(`edit_post.js?post=${getPostId(el)}`);
|
24
|
150 }
|
|
151
|
|
152 function openEditPost(postId,text) {
|
|
153 currentPostId = postId;
|
|
154 let dialog = document.querySelector('dialog[edit_post]');
|
|
155 let textarea = dialog.querySelector('textarea');
|
|
156 textarea.value = text;
|
|
157 openModal(dialog);
|
|
158 }
|
|
159
|
|
160 function savePost(el) {
|
|
161 let text = document.querySelector('dialog[edit_post] textarea').value;
|
|
162 closeModal(el);
|
|
163 ajax(`save_post.js?post=${currentPostId}`,`content=${encodeURIComponent(text)}`);
|
|
164 }
|
|
165
|
|
166 function edited(postId,html) {
|
|
167 let div = document.querySelector(`div[post="${postId}"]`);
|
|
168 if( div ) {
|
|
169 div.outerHTML = html;
|
|
170 fixPosts();
|
|
171 }
|
|
172 }
|
|
173
|
77
|
174 function active() {
|
|
175 let url = 'active.js';
|
|
176 if( currentChatId )
|
|
177 url += `?chat=${currentChatId}`;
|
|
178 ajax(url);
|
|
179 }
|
|
180
|
92
|
181 function added(html,updated) {
|
12
|
182 let input = document.querySelector('div[input]');
|
|
183 input.insertAdjacentHTML('beforebegin',html);
|
19
|
184 fixPosts();
|
12
|
185 input.scrollIntoView({block: 'end'});
|
40
|
186 if( document.hasFocus() )
|
77
|
187 active();
|
92
|
188 lastUpdate = updated;
|
12
|
189 }
|
15
|
190
|
30
|
191 function getChats(chatId,updated) {
|
15
|
192 let first = document.querySelector('div[chat]');
|
53
|
193 if( !first || first.getAttribute('chat') !== chatId ) {
|
15
|
194 // console.log('getChats');
|
|
195 ajax('get_chats.js');
|
92
|
196 if( updated )
|
|
197 lastUpdate = updated;
|
89
|
198 } else if( first && (currentChatId !== chatId || spy) ) {
|
53
|
199 incUnread(first);
|
15
|
200 }
|
40
|
201 if( !document.hasFocus() ) {
|
31
|
202 document.title = title + ' *';
|
|
203 }
|
15
|
204 }
|
|
205
|
|
206 function gotChats(html) {
|
|
207 document.querySelector('div[chats]').innerHTML = html;
|
|
208 if( currentChatId ) {
|
|
209 let current = document.querySelector(`div[chat="${currentChatId}"]`);
|
16
|
210 if( current ) {
|
|
211 current.setAttribute('selected','');
|
|
212 current.scrollIntoViewIfNeeded(false);
|
61
|
213 clearUnread();
|
16
|
214 } else {
|
|
215 currentChatId = null;
|
|
216 document.querySelector('div[posts]').innerHTML = '';
|
|
217 }
|
15
|
218 }
|
|
219 }
|
18
|
220
|
|
221 window.onfocus = function() {
|
33
|
222 // console.log('onfocus');
|
18
|
223 document.title = title;
|
77
|
224 active();
|
18
|
225 };
|
19
|
226
|
|
227 let urlRegex = /(^|\s)(https?:\/\/\S+)/g;
|
66
|
228 let filebinUrlRegex = /(^|\s)(https:\/\/filebin.net\/[0-9a-f]+\/(\S+))/g;
|
19
|
229
|
|
230 function urlsToLinks(text) {
|
66
|
231 text = text.replace( filebinUrlRegex, '$1<a target="_blank" href="$2">$3</a>' );
|
|
232 text = text.replace( urlRegex, '$1<a target="_blank" href="$2">$2</a>' );
|
|
233 return text;
|
19
|
234 }
|
22
|
235
|
|
236 let currentPulldown = null;
|
|
237 let newPulldown = null;
|
|
238
|
|
239 function clickMenu(clicked,display) {
|
|
240 //console.log("clickMenu");
|
|
241 let pulldown = clicked.parentNode.querySelector('div');
|
|
242 if( pulldown !== currentPulldown ) {
|
|
243 pulldown.style.display = display || "block";
|
|
244 newPulldown = pulldown;
|
|
245 window.onclick = function() {
|
|
246 //console.log("window.onclick");
|
|
247 if( currentPulldown ) {
|
|
248 currentPulldown.style.display = "none";
|
|
249 if( !newPulldown )
|
|
250 window.onclick = null;
|
|
251 }
|
|
252 currentPulldown = newPulldown;
|
|
253 newPulldown = null;
|
|
254 };
|
|
255 pulldown.scrollIntoViewIfNeeded(false);
|
|
256 }
|
|
257 }
|
30
|
258
|
42
|
259 function heartbeat() {
|
75
|
260 let url = `heartbeat.js?last_update=${lastUpdate}`;
|
|
261 if( currentChatId )
|
|
262 url += `&chat=${currentChatId}`;
|
|
263 ajax(url);
|
42
|
264 }
|
|
265
|
|
266 setInterval( heartbeat, 10000 );
|
73
|
267 heartbeat();
|
30
|
268
|
33
|
269 let online = {};
|
|
270
|
|
271 function showOnline() {
|
42
|
272 let old = Date.now() - 70000;
|
72
|
273 let spans = document.querySelectorAll('span[online]');
|
|
274 for( let span of spans ) {
|
|
275 let id = span.getAttribute('online');
|
73
|
276 let wasOnline = online[id];
|
|
277 let isOnline = !!wasOnline && wasOnline > old;
|
|
278 span.setAttribute('is_online',isOnline);
|
33
|
279 }
|
|
280 }
|
53
|
281
|
|
282 function clearUnread() {
|
89
|
283 if( spy ) return;
|
53
|
284 let span = document.querySelector(`div[chat="${currentChatId}"] span[unread]`);
|
|
285 span.setAttribute('unread','0');
|
|
286 span.textContent = '0';
|
|
287 }
|
|
288
|
|
289 function incUnread(div) {
|
|
290 let span = div.querySelector('span[unread]');
|
|
291 let n = parseInt(span.getAttribute('unread')) + 1;
|
|
292 span.setAttribute('unread',n);
|
|
293 span.textContent = n;
|
|
294 }
|
56
|
295
|
|
296 function invite() {
|
|
297 let email = document.querySelector('input[type=email]').value;
|
|
298 ajax(`invite.js?email=${encodeURIComponent(email)}`);
|
|
299 }
|
|
300
|
|
301 function openInvite(email) {
|
|
302 let dialog = document.querySelector('dialog[invite]');
|
|
303 let span = dialog.querySelector('span[email]');
|
|
304 span.textContent = email;
|
|
305 openModal(dialog);
|
|
306 }
|
60
|
307
|
|
308 function gotoInvite(el) {
|
|
309 let email = document.querySelector('dialog[invite] span[email]').textContent;
|
|
310 closeModal(el);
|
83
|
311 location = `chat?with=${encodeURIComponent(email)}`;
|
60
|
312 ajax(`save_post.js?post=${currentPostId}`,`content=${encodeURIComponent(text)}`);
|
|
313 }
|
63
|
314
|
|
315 function uploadFile() {
|
|
316 document.querySelector('input[type="file"]').click();
|
|
317 }
|
|
318
|
|
319 function addFileUrl(url) {
|
|
320 let textarea = document.querySelector('div[input] textarea');
|
|
321 let text = textarea.value;
|
|
322 if( /\S$/.test(text) )
|
|
323 text += ' ';
|
|
324 text += url;
|
|
325 textarea.value = text;
|
|
326 }
|
|
327
|
|
328 function uploadToFilebin(fileName,fileContent) {
|
|
329 //console.log(fileContent.byteLength);
|
|
330 let request = new XMLHttpRequest();
|
93
|
331 let url = filebinUrl + encodeURIComponent(fileName);
|
63
|
332 request.open( 'POST', url );
|
|
333 request.onload = function() {
|
|
334 if( request.status !== 201 ) {
|
|
335 let err = 'upload failed: ' + request.status;
|
|
336 if( request.responseText ) {
|
|
337 err += '\n' + request.responseText;
|
|
338 }
|
|
339 console.log(err);
|
|
340 ajax( '/error_log.js', 'err='+encodeURIComponent(err) );
|
|
341 return;
|
|
342 }
|
|
343 addFileUrl(url);
|
|
344 };
|
|
345 request.send(fileContent);
|
|
346 }
|
|
347
|
|
348 function loadedFile(input) {
|
|
349 let file = input.files[0];
|
|
350 input.value = null;
|
|
351 console.log(file);
|
|
352 let reader = new FileReader();
|
|
353 reader.onload = function() {
|
|
354 uploadToFilebin(file.name,reader.result);
|
|
355 };
|
|
356 reader.readAsArrayBuffer(file);
|
|
357 }
|
65
|
358
|
|
359 function openPeople() {
|
|
360 let dialog = document.querySelector('dialog[people]');
|
73
|
361 let spans = dialog.querySelectorAll('span[last_seen]');
|
|
362 let now = Date.now();
|
|
363 let old = now - 70000;
|
|
364 for( let span of spans ) {
|
|
365 let id = span.getAttribute('last_seen');
|
|
366 let s;
|
|
367 let lastOnline = online[id];
|
|
368 if( !lastOnline ) {
|
|
369 s = '';
|
|
370 } else if( lastOnline > old ) {
|
|
371 s = 'Active now';
|
|
372 } else {
|
|
373 s = 'Last seen ' + ago(now - lastOnline);
|
|
374 }
|
|
375 console.log(`${id} ${s}`);
|
|
376 span.textContent = s;
|
|
377 }
|
65
|
378 openModal(dialog);
|
|
379 }
|
75
|
380
|
|
381 function readUpTo(userId,userNameHtml,unread) {
|
76
|
382 //console.log(`readUpTo ${unread}`);
|
75
|
383 let divs = document.querySelectorAll('div[post]');
|
|
384 if( unread >= divs.length )
|
|
385 return;
|
76
|
386 let div = divs[divs.length - unread - 1];
|
89
|
387 let old = document.querySelector(`div[up_to][user="${userId}"]`);
|
76
|
388 if( old ) {
|
89
|
389 //console.log(`was ${div.getAttribute('up_to')}`);
|
76
|
390 if( div == old.parentNode )
|
|
391 return;
|
|
392 old.outerHTML = '';
|
|
393 }
|
|
394 //console.log('readUpTo');
|
89
|
395 let html = `<div user="${userId}" up_to="${unread}">read by ${userNameHtml}</div>`;
|
75
|
396 div.insertAdjacentHTML('beforeend',html);
|
81
|
397 if( !old ) {
|
89
|
398 let dy = document.querySelector('div[up_to]').clientHeight;
|
81
|
399 document.querySelector('div[main]').scrollBy(0,dy);
|
|
400 }
|
75
|
401 }
|
79
|
402
|
|
403 function replyPost(el) {
|
|
404 let postId = getPostId(el);
|
|
405 let div = document.querySelector('div[reply]');
|
|
406 div.removeAttribute('hidden');
|
|
407 div.setAttribute('reply',postId);
|
|
408 document.querySelector('div[reply] div[text]').innerHTML = document.querySelector(`div[post="${postId}"] div[text]`).innerHTML
|
|
409 let a = document.querySelector('div[reply] a');
|
|
410 a.href = `#p${postId}`;
|
|
411 a.textContent = document.querySelector(`div[post="${postId}"] span[when]`).textContent;
|
|
412 document.querySelector('div[input] textarea').focus();
|
|
413 document.querySelector('div[input]').scrollIntoView({block: 'end'});
|
|
414 }
|
|
415
|
|
416 function closeReply() {
|
|
417 let div = document.querySelector('div[reply]');
|
|
418 div.setAttribute('hidden','');
|
|
419 div.setAttribute('reply','');
|
|
420 }
|
83
|
421
|
|
422 function openAddToChat() {
|
|
423 let dialog = document.querySelector('dialog[add]');
|
|
424 dialog.querySelector('input[name=email]').value = '';
|
|
425 openModal(dialog);
|
|
426 }
|
|
427
|
|
428 function addToChat() {
|
|
429 let dialog = document.querySelector('dialog[add]');
|
|
430 let email = dialog.querySelector('input[name=email]').value;
|
|
431 ajax(`add_to_chat.js?chat=${currentChatId}&email=${encodeURIComponent(email)}`);
|
|
432 }
|
|
433
|
|
434 function addToChatError(msg) {
|
|
435 let dialog = document.querySelector('dialog[add]');
|
|
436 dialog.querySelector('span[error]').textContent = msg;
|
|
437 }
|