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