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
|
12
|
181 function added(html) {
|
|
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();
|
12
|
188 }
|
15
|
189
|
30
|
190 function getChats(chatId,updated) {
|
15
|
191 let first = document.querySelector('div[chat]');
|
53
|
192 if( !first || first.getAttribute('chat') !== chatId ) {
|
15
|
193 // console.log('getChats');
|
|
194 ajax('get_chats.js');
|
89
|
195 } else if( first && (currentChatId !== chatId || spy) ) {
|
53
|
196 incUnread(first);
|
15
|
197 }
|
30
|
198 if( updated )
|
|
199 lastUpdate = updated;
|
40
|
200 if( !document.hasFocus() ) {
|
31
|
201 document.title = title + ' *';
|
|
202 }
|
15
|
203 }
|
|
204
|
|
205 function gotChats(html) {
|
|
206 document.querySelector('div[chats]').innerHTML = html;
|
|
207 if( currentChatId ) {
|
|
208 let current = document.querySelector(`div[chat="${currentChatId}"]`);
|
16
|
209 if( current ) {
|
|
210 current.setAttribute('selected','');
|
|
211 current.scrollIntoViewIfNeeded(false);
|
61
|
212 clearUnread();
|
16
|
213 } else {
|
|
214 currentChatId = null;
|
|
215 document.querySelector('div[posts]').innerHTML = '';
|
|
216 }
|
15
|
217 }
|
|
218 }
|
18
|
219
|
|
220 window.onfocus = function() {
|
33
|
221 // console.log('onfocus');
|
18
|
222 document.title = title;
|
77
|
223 active();
|
18
|
224 };
|
19
|
225
|
|
226 let urlRegex = /(^|\s)(https?:\/\/\S+)/g;
|
66
|
227 let filebinUrlRegex = /(^|\s)(https:\/\/filebin.net\/[0-9a-f]+\/(\S+))/g;
|
19
|
228
|
|
229 function urlsToLinks(text) {
|
66
|
230 text = text.replace( filebinUrlRegex, '$1<a target="_blank" href="$2">$3</a>' );
|
|
231 text = text.replace( urlRegex, '$1<a target="_blank" href="$2">$2</a>' );
|
|
232 return text;
|
19
|
233 }
|
22
|
234
|
|
235 let currentPulldown = null;
|
|
236 let newPulldown = null;
|
|
237
|
|
238 function clickMenu(clicked,display) {
|
|
239 //console.log("clickMenu");
|
|
240 let pulldown = clicked.parentNode.querySelector('div');
|
|
241 if( pulldown !== currentPulldown ) {
|
|
242 pulldown.style.display = display || "block";
|
|
243 newPulldown = pulldown;
|
|
244 window.onclick = function() {
|
|
245 //console.log("window.onclick");
|
|
246 if( currentPulldown ) {
|
|
247 currentPulldown.style.display = "none";
|
|
248 if( !newPulldown )
|
|
249 window.onclick = null;
|
|
250 }
|
|
251 currentPulldown = newPulldown;
|
|
252 newPulldown = null;
|
|
253 };
|
|
254 pulldown.scrollIntoViewIfNeeded(false);
|
|
255 }
|
|
256 }
|
30
|
257
|
42
|
258 function heartbeat() {
|
75
|
259 let url = `heartbeat.js?last_update=${lastUpdate}`;
|
|
260 if( currentChatId )
|
|
261 url += `&chat=${currentChatId}`;
|
|
262 ajax(url);
|
42
|
263 }
|
|
264
|
|
265 setInterval( heartbeat, 10000 );
|
73
|
266 heartbeat();
|
30
|
267
|
33
|
268 let online = {};
|
|
269
|
|
270 function showOnline() {
|
42
|
271 let old = Date.now() - 70000;
|
72
|
272 let spans = document.querySelectorAll('span[online]');
|
|
273 for( let span of spans ) {
|
|
274 let id = span.getAttribute('online');
|
73
|
275 let wasOnline = online[id];
|
|
276 let isOnline = !!wasOnline && wasOnline > old;
|
|
277 span.setAttribute('is_online',isOnline);
|
33
|
278 }
|
|
279 }
|
53
|
280
|
|
281 function clearUnread() {
|
89
|
282 if( spy ) return;
|
53
|
283 let span = document.querySelector(`div[chat="${currentChatId}"] span[unread]`);
|
|
284 span.setAttribute('unread','0');
|
|
285 span.textContent = '0';
|
|
286 }
|
|
287
|
|
288 function incUnread(div) {
|
|
289 let span = div.querySelector('span[unread]');
|
|
290 let n = parseInt(span.getAttribute('unread')) + 1;
|
|
291 span.setAttribute('unread',n);
|
|
292 span.textContent = n;
|
|
293 }
|
56
|
294
|
|
295 function invite() {
|
|
296 let email = document.querySelector('input[type=email]').value;
|
|
297 ajax(`invite.js?email=${encodeURIComponent(email)}`);
|
|
298 }
|
|
299
|
|
300 function openInvite(email) {
|
|
301 let dialog = document.querySelector('dialog[invite]');
|
|
302 let span = dialog.querySelector('span[email]');
|
|
303 span.textContent = email;
|
|
304 openModal(dialog);
|
|
305 }
|
60
|
306
|
|
307 function gotoInvite(el) {
|
|
308 let email = document.querySelector('dialog[invite] span[email]').textContent;
|
|
309 closeModal(el);
|
83
|
310 location = `chat?with=${encodeURIComponent(email)}`;
|
60
|
311 ajax(`save_post.js?post=${currentPostId}`,`content=${encodeURIComponent(text)}`);
|
|
312 }
|
63
|
313
|
|
314 function uploadFile() {
|
|
315 document.querySelector('input[type="file"]').click();
|
|
316 }
|
|
317
|
|
318 function addFileUrl(url) {
|
|
319 let textarea = document.querySelector('div[input] textarea');
|
|
320 let text = textarea.value;
|
|
321 if( /\S$/.test(text) )
|
|
322 text += ' ';
|
|
323 text += url;
|
|
324 textarea.value = text;
|
|
325 }
|
|
326
|
|
327 function uploadToFilebin(fileName,fileContent) {
|
|
328 //console.log(fileContent.byteLength);
|
|
329 let request = new XMLHttpRequest();
|
|
330 let url = filebinUrl + fileName;
|
|
331 request.open( 'POST', url );
|
|
332 request.onload = function() {
|
|
333 if( request.status !== 201 ) {
|
|
334 let err = 'upload failed: ' + request.status;
|
|
335 if( request.responseText ) {
|
|
336 err += '\n' + request.responseText;
|
|
337 }
|
|
338 console.log(err);
|
|
339 ajax( '/error_log.js', 'err='+encodeURIComponent(err) );
|
|
340 return;
|
|
341 }
|
|
342 addFileUrl(url);
|
|
343 };
|
|
344 request.send(fileContent);
|
|
345 }
|
|
346
|
|
347 function loadedFile(input) {
|
|
348 let file = input.files[0];
|
|
349 input.value = null;
|
|
350 console.log(file);
|
|
351 let reader = new FileReader();
|
|
352 reader.onload = function() {
|
|
353 uploadToFilebin(file.name,reader.result);
|
|
354 };
|
|
355 reader.readAsArrayBuffer(file);
|
|
356 }
|
65
|
357
|
|
358 function openPeople() {
|
|
359 let dialog = document.querySelector('dialog[people]');
|
73
|
360 let spans = dialog.querySelectorAll('span[last_seen]');
|
|
361 let now = Date.now();
|
|
362 let old = now - 70000;
|
|
363 for( let span of spans ) {
|
|
364 let id = span.getAttribute('last_seen');
|
|
365 let s;
|
|
366 let lastOnline = online[id];
|
|
367 if( !lastOnline ) {
|
|
368 s = '';
|
|
369 } else if( lastOnline > old ) {
|
|
370 s = 'Active now';
|
|
371 } else {
|
|
372 s = 'Last seen ' + ago(now - lastOnline);
|
|
373 }
|
|
374 console.log(`${id} ${s}`);
|
|
375 span.textContent = s;
|
|
376 }
|
65
|
377 openModal(dialog);
|
|
378 }
|
75
|
379
|
|
380 function readUpTo(userId,userNameHtml,unread) {
|
76
|
381 //console.log(`readUpTo ${unread}`);
|
75
|
382 let divs = document.querySelectorAll('div[post]');
|
|
383 if( unread >= divs.length )
|
|
384 return;
|
76
|
385 let div = divs[divs.length - unread - 1];
|
89
|
386 let old = document.querySelector(`div[up_to][user="${userId}"]`);
|
76
|
387 if( old ) {
|
89
|
388 //console.log(`was ${div.getAttribute('up_to')}`);
|
76
|
389 if( div == old.parentNode )
|
|
390 return;
|
|
391 old.outerHTML = '';
|
|
392 }
|
|
393 //console.log('readUpTo');
|
89
|
394 let html = `<div user="${userId}" up_to="${unread}">read by ${userNameHtml}</div>`;
|
75
|
395 div.insertAdjacentHTML('beforeend',html);
|
81
|
396 if( !old ) {
|
89
|
397 let dy = document.querySelector('div[up_to]').clientHeight;
|
81
|
398 document.querySelector('div[main]').scrollBy(0,dy);
|
|
399 }
|
75
|
400 }
|
79
|
401
|
|
402 function replyPost(el) {
|
|
403 let postId = getPostId(el);
|
|
404 let div = document.querySelector('div[reply]');
|
|
405 div.removeAttribute('hidden');
|
|
406 div.setAttribute('reply',postId);
|
|
407 document.querySelector('div[reply] div[text]').innerHTML = document.querySelector(`div[post="${postId}"] div[text]`).innerHTML
|
|
408 let a = document.querySelector('div[reply] a');
|
|
409 a.href = `#p${postId}`;
|
|
410 a.textContent = document.querySelector(`div[post="${postId}"] span[when]`).textContent;
|
|
411 document.querySelector('div[input] textarea').focus();
|
|
412 document.querySelector('div[input]').scrollIntoView({block: 'end'});
|
|
413 }
|
|
414
|
|
415 function closeReply() {
|
|
416 let div = document.querySelector('div[reply]');
|
|
417 div.setAttribute('hidden','');
|
|
418 div.setAttribute('reply','');
|
|
419 }
|
83
|
420
|
|
421 function openAddToChat() {
|
|
422 let dialog = document.querySelector('dialog[add]');
|
|
423 dialog.querySelector('input[name=email]').value = '';
|
|
424 openModal(dialog);
|
|
425 }
|
|
426
|
|
427 function addToChat() {
|
|
428 let dialog = document.querySelector('dialog[add]');
|
|
429 let email = dialog.querySelector('input[name=email]').value;
|
|
430 ajax(`add_to_chat.js?chat=${currentChatId}&email=${encodeURIComponent(email)}`);
|
|
431 }
|
|
432
|
|
433 function addToChatError(msg) {
|
|
434 let dialog = document.querySelector('dialog[add]');
|
|
435 dialog.querySelector('span[error]').textContent = msg;
|
|
436 }
|