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