10
|
1 'use strict';
|
|
2
|
18
|
3 let title = document.title;
|
10
|
4 let currentChatId = null;
|
12
|
5 let eventSource;
|
30
|
6 let lastUpdate;
|
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() {
|
33
|
230 showOnline();
|
30
|
231 ajax(`heartbeat.js?last_update=${lastUpdate}`);
|
42
|
232 }
|
|
233
|
|
234 setInterval( heartbeat, 10000 );
|
30
|
235
|
33
|
236 let online = {};
|
|
237
|
|
238 function setOnline(userId) {
|
|
239 online[userId] = Date.now();
|
|
240 }
|
|
241
|
|
242 function showOnline() {
|
42
|
243 let old = Date.now() - 70000;
|
33
|
244 for( let id of Object.keys(online) ) {
|
|
245 if( online[id] < old )
|
|
246 delete online[id];
|
|
247 }
|
72
|
248 let spans = document.querySelectorAll('span[online]');
|
|
249 for( let span of spans ) {
|
|
250 let id = span.getAttribute('online');
|
|
251 span.setAttribute('is_online',!!online[id]);
|
33
|
252 }
|
|
253 }
|
53
|
254
|
|
255 function clearUnread() {
|
|
256 let span = document.querySelector(`div[chat="${currentChatId}"] span[unread]`);
|
|
257 span.setAttribute('unread','0');
|
|
258 span.textContent = '0';
|
|
259 }
|
|
260
|
|
261 function incUnread(div) {
|
|
262 let span = div.querySelector('span[unread]');
|
|
263 let n = parseInt(span.getAttribute('unread')) + 1;
|
|
264 span.setAttribute('unread',n);
|
|
265 span.textContent = n;
|
|
266 }
|
56
|
267
|
|
268 function invite() {
|
|
269 let email = document.querySelector('input[type=email]').value;
|
|
270 ajax(`invite.js?email=${encodeURIComponent(email)}`);
|
|
271 }
|
|
272
|
|
273 function openInvite(email) {
|
|
274 let dialog = document.querySelector('dialog[invite]');
|
|
275 let span = dialog.querySelector('span[email]');
|
|
276 span.textContent = email;
|
|
277 openModal(dialog);
|
|
278 }
|
60
|
279
|
|
280 function gotoInvite(el) {
|
|
281 let email = document.querySelector('dialog[invite] span[email]').textContent;
|
|
282 closeModal(el);
|
|
283 location = `chat?with=${email}`;
|
|
284 ajax(`save_post.js?post=${currentPostId}`,`content=${encodeURIComponent(text)}`);
|
|
285 }
|
63
|
286
|
|
287 function uploadFile() {
|
|
288 document.querySelector('input[type="file"]').click();
|
|
289 }
|
|
290
|
|
291 function addFileUrl(url) {
|
|
292 let textarea = document.querySelector('div[input] textarea');
|
|
293 let text = textarea.value;
|
|
294 if( /\S$/.test(text) )
|
|
295 text += ' ';
|
|
296 text += url;
|
|
297 textarea.value = text;
|
|
298 }
|
|
299
|
|
300 function uploadToFilebin(fileName,fileContent) {
|
|
301 //console.log(fileContent.byteLength);
|
|
302 let request = new XMLHttpRequest();
|
|
303 let url = filebinUrl + fileName;
|
|
304 request.open( 'POST', url );
|
|
305 request.onload = function() {
|
|
306 if( request.status !== 201 ) {
|
|
307 let err = 'upload failed: ' + request.status;
|
|
308 if( request.responseText ) {
|
|
309 err += '\n' + request.responseText;
|
|
310 }
|
|
311 console.log(err);
|
|
312 ajax( '/error_log.js', 'err='+encodeURIComponent(err) );
|
|
313 return;
|
|
314 }
|
|
315 addFileUrl(url);
|
|
316 };
|
|
317 request.send(fileContent);
|
|
318 }
|
|
319
|
|
320 function loadedFile(input) {
|
|
321 let file = input.files[0];
|
|
322 input.value = null;
|
|
323 console.log(file);
|
|
324 let reader = new FileReader();
|
|
325 reader.onload = function() {
|
|
326 uploadToFilebin(file.name,reader.result);
|
|
327 };
|
|
328 reader.readAsArrayBuffer(file);
|
|
329 }
|
65
|
330
|
|
331 function openPeople() {
|
|
332 let dialog = document.querySelector('dialog[people]');
|
|
333 openModal(dialog);
|
|
334 }
|