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