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;
|
10
|
8
|
16
|
9 function evalEvent(event) {
|
17
|
10 // console.log(event);
|
16
|
11 eval(event.data);
|
|
12 }
|
|
13
|
15
|
14 function setUserEventSource(userId) {
|
|
15 let userEventSource = new EventSource(`${location.origin}/user/${userId}`);
|
16
|
16 userEventSource.onmessage = evalEvent;
|
15
|
17 }
|
|
18
|
59
|
19 function selectChat(chatId) {
|
48
|
20 document.querySelector('div[chat_content]').setAttribute('show','posts');
|
10
|
21 if( chatId === currentChatId )
|
|
22 return;
|
59
|
23 let div = document.querySelector(`div[chat="${chatId}"]`);
|
10
|
24 let selected = div.parentNode.querySelector('[selected]');
|
|
25 if( selected ) selected.removeAttribute('selected');
|
|
26 div.setAttribute('selected','');
|
|
27 ajax(`get_chat.js?chat=${chatId}`);
|
|
28 currentChatId = chatId;
|
59
|
29 history.replaceState(null,null,`?chat=${chatId}`);
|
53
|
30 clearUnread();
|
12
|
31
|
|
32 if(eventSource) eventSource.close();
|
|
33 eventSource = new EventSource(`${location.origin}/chat/${chatId}`);
|
16
|
34 eventSource.onmessage = evalEvent;
|
12
|
35 }
|
|
36
|
27
|
37 function back() {
|
48
|
38 document.querySelector('div[chat_content]').setAttribute('show','chats');
|
27
|
39 }
|
|
40
|
12
|
41 function gotChat(html) {
|
|
42 document.querySelector('div[posts]').innerHTML = html;
|
19
|
43 fixPosts();
|
12
|
44 document.querySelector('div[input] textarea').focus();
|
|
45 document.querySelector('div[input]').scrollIntoView({block: 'end'});
|
10
|
46 }
|
|
47
|
|
48 function fixTextarea(event) {
|
|
49 let textarea = event.target;
|
|
50 textarea.style.height = 'initial';
|
|
51 textarea.style.height = (textarea.scrollHeight+2) + 'px';
|
|
52 textarea.scrollIntoViewIfNeeded(false);
|
|
53 }
|
|
54
|
|
55 const isMobile = 'ontouchstart' in window || navigator.maxTouchPoints > 0 || navigator.msMaxTouchPoints > 0;
|
|
56
|
|
57 function addPost() {
|
|
58 let textarea = document.querySelector('div[input] textarea');
|
|
59 let text = textarea.value;
|
|
60 if( text.trim() === '' )
|
|
61 return;
|
24
|
62 ajax(`add_post.js?chat=${currentChatId}`,`content=${encodeURIComponent(text)}`);
|
10
|
63 textarea.value = '';
|
|
64 }
|
|
65
|
|
66 function textareaKey(event) {
|
|
67 if( event.keyCode===13 && !event.shiftKey && !event.ctrlKey && !isMobile ) {
|
|
68 event.preventDefault();
|
|
69 addPost();
|
|
70 }
|
|
71 }
|
|
72
|
19
|
73 function fixPosts() {
|
35
|
74 let divs = document.querySelectorAll('div[post][fix]');
|
19
|
75 for( let div of divs ) {
|
35
|
76 let whenSpan = div.querySelector('span[when]');
|
39
|
77 whenSpan.textContent = new Date(Number(whenSpan.textContent)).toLocaleString([],{dateStyle:'short',timeStyle:'short'});
|
35
|
78 let textDiv = div.querySelector('div[text]');
|
|
79 textDiv.innerHTML = urlsToLinks(textDiv.innerHTML);
|
|
80 if( div.getAttribute('author') === userId )
|
|
81 div.querySelector('span[pulldown]').innerHTML = document.querySelector('div[hidden] span[pulldown]').innerHTML;
|
19
|
82 div.removeAttribute('fix');
|
|
83 }
|
10
|
84 }
|
11
|
85
|
|
86 function deleteChat() {
|
20
|
87 let dialog = document.querySelector('dialog[delete_chat]');
|
|
88 openModal(dialog);
|
|
89 }
|
|
90
|
|
91 function doDeleteChat(el) {
|
|
92 closeModal(el);
|
11
|
93 ajax(`delete_chat.js?chat=${currentChatId}`);
|
|
94 }
|
12
|
95
|
23
|
96 let currentPostId;
|
|
97
|
38
|
98 function getPostId(el) {
|
|
99 while(true) {
|
|
100 let postId = el.getAttribute('post');
|
|
101 if( postId )
|
|
102 return postId;
|
|
103 el = el.parentNode;
|
|
104 }
|
|
105 }
|
|
106
|
|
107 function deletePost(el) {
|
|
108 currentPostId = getPostId(el);
|
23
|
109 let dialog = document.querySelector('dialog[delete_post]');
|
|
110 openModal(dialog);
|
|
111 }
|
|
112
|
|
113 function doDeletePost(el) {
|
|
114 closeModal(el);
|
|
115 ajax(`delete_post.js?post=${currentPostId}`);
|
|
116 }
|
|
117
|
|
118 function deleted(postId) {
|
|
119 let div = document.querySelector(`div[post="${postId}"]`);
|
|
120 if( div )
|
|
121 div.outerHTML = '';
|
|
122 }
|
|
123
|
38
|
124 function editPost(el) {
|
|
125 ajax(`edit_post.js?post=${getPostId(el)}`);
|
24
|
126 }
|
|
127
|
|
128 function openEditPost(postId,text) {
|
|
129 currentPostId = postId;
|
|
130 let dialog = document.querySelector('dialog[edit_post]');
|
|
131 let textarea = dialog.querySelector('textarea');
|
|
132 textarea.value = text;
|
|
133 openModal(dialog);
|
|
134 }
|
|
135
|
|
136 function savePost(el) {
|
|
137 let text = document.querySelector('dialog[edit_post] textarea').value;
|
|
138 closeModal(el);
|
|
139 ajax(`save_post.js?post=${currentPostId}`,`content=${encodeURIComponent(text)}`);
|
|
140 }
|
|
141
|
|
142 function edited(postId,html) {
|
|
143 let div = document.querySelector(`div[post="${postId}"]`);
|
|
144 if( div ) {
|
|
145 div.outerHTML = html;
|
|
146 fixPosts();
|
|
147 }
|
|
148 }
|
|
149
|
12
|
150 function added(html) {
|
|
151 let input = document.querySelector('div[input]');
|
|
152 input.insertAdjacentHTML('beforebegin',html);
|
19
|
153 fixPosts();
|
12
|
154 input.scrollIntoView({block: 'end'});
|
54
|
155 ajax(`added.js?chat=${currentChatId}`);
|
40
|
156 if( document.hasFocus() )
|
|
157 ajax('active.js');
|
12
|
158 }
|
15
|
159
|
30
|
160 function getChats(chatId,updated) {
|
15
|
161 let first = document.querySelector('div[chat]');
|
53
|
162 if( !first || first.getAttribute('chat') !== chatId ) {
|
15
|
163 // console.log('getChats');
|
|
164 ajax('get_chats.js');
|
53
|
165 } else if( first && currentChatId !== chatId ) {
|
|
166 incUnread(first);
|
15
|
167 }
|
30
|
168 if( updated )
|
|
169 lastUpdate = updated;
|
40
|
170 if( !document.hasFocus() ) {
|
31
|
171 document.title = title + ' *';
|
|
172 }
|
15
|
173 }
|
|
174
|
|
175 function gotChats(html) {
|
|
176 document.querySelector('div[chats]').innerHTML = html;
|
|
177 if( currentChatId ) {
|
|
178 let current = document.querySelector(`div[chat="${currentChatId}"]`);
|
16
|
179 if( current ) {
|
|
180 current.setAttribute('selected','');
|
|
181 current.scrollIntoViewIfNeeded(false);
|
61
|
182 clearUnread();
|
16
|
183 } else {
|
|
184 currentChatId = null;
|
|
185 document.querySelector('div[posts]').innerHTML = '';
|
|
186 }
|
15
|
187 }
|
|
188 }
|
18
|
189
|
|
190 window.onfocus = function() {
|
33
|
191 // console.log('onfocus');
|
18
|
192 document.title = title;
|
40
|
193 ajax('active.js');
|
18
|
194 };
|
19
|
195
|
|
196 let urlRegex = /(^|\s)(https?:\/\/\S+)/g;
|
|
197
|
|
198 function urlsToLinks(text) {
|
40
|
199 return text.replace( urlRegex, '$1<a target="_blank" href="$2">$2</a>' );
|
19
|
200 }
|
22
|
201
|
|
202 let currentPulldown = null;
|
|
203 let newPulldown = null;
|
|
204
|
|
205 function clickMenu(clicked,display) {
|
|
206 //console.log("clickMenu");
|
|
207 let pulldown = clicked.parentNode.querySelector('div');
|
|
208 if( pulldown !== currentPulldown ) {
|
|
209 pulldown.style.display = display || "block";
|
|
210 newPulldown = pulldown;
|
|
211 window.onclick = function() {
|
|
212 //console.log("window.onclick");
|
|
213 if( currentPulldown ) {
|
|
214 currentPulldown.style.display = "none";
|
|
215 if( !newPulldown )
|
|
216 window.onclick = null;
|
|
217 }
|
|
218 currentPulldown = newPulldown;
|
|
219 newPulldown = null;
|
|
220 };
|
|
221 pulldown.scrollIntoViewIfNeeded(false);
|
|
222 }
|
|
223 }
|
30
|
224
|
42
|
225 function heartbeat() {
|
33
|
226 showOnline();
|
30
|
227 ajax(`heartbeat.js?last_update=${lastUpdate}`);
|
42
|
228 }
|
|
229
|
|
230 setInterval( heartbeat, 10000 );
|
30
|
231
|
33
|
232 let online = {};
|
|
233
|
|
234 function setOnline(userId) {
|
|
235 online[userId] = Date.now();
|
|
236 }
|
|
237
|
|
238 function showOnline() {
|
42
|
239 let old = Date.now() - 70000;
|
33
|
240 for( let id of Object.keys(online) ) {
|
|
241 if( online[id] < old )
|
|
242 delete online[id];
|
|
243 }
|
|
244 let a = [];
|
|
245 for( let id in online ) {
|
|
246 a.push( `span[online="${id}"]` );
|
|
247 }
|
|
248 let style = document.querySelector('style[online]');
|
|
249 if( a.length === 0 ) {
|
|
250 style.innerHTML = '';
|
|
251 } else {
|
|
252 style.innerHTML = `
|
|
253 ${a.join(', ')} {
|
|
254 background-color: green;
|
|
255 }
|
|
256 ` ;
|
|
257 }
|
|
258 }
|
53
|
259
|
|
260 function clearUnread() {
|
|
261 let span = document.querySelector(`div[chat="${currentChatId}"] span[unread]`);
|
|
262 span.setAttribute('unread','0');
|
|
263 span.textContent = '0';
|
|
264 }
|
|
265
|
|
266 function incUnread(div) {
|
|
267 let span = div.querySelector('span[unread]');
|
|
268 let n = parseInt(span.getAttribute('unread')) + 1;
|
|
269 span.setAttribute('unread',n);
|
|
270 span.textContent = n;
|
|
271 }
|
56
|
272
|
|
273 function invite() {
|
|
274 let email = document.querySelector('input[type=email]').value;
|
|
275 ajax(`invite.js?email=${encodeURIComponent(email)}`);
|
|
276 }
|
|
277
|
|
278 function openInvite(email) {
|
|
279 let dialog = document.querySelector('dialog[invite]');
|
|
280 let span = dialog.querySelector('span[email]');
|
|
281 span.textContent = email;
|
|
282 openModal(dialog);
|
|
283 }
|
60
|
284
|
|
285 function gotoInvite(el) {
|
|
286 let email = document.querySelector('dialog[invite] span[email]').textContent;
|
|
287 closeModal(el);
|
|
288 location = `chat?with=${email}`;
|
|
289 ajax(`save_post.js?post=${currentPostId}`,`content=${encodeURIComponent(text)}`);
|
|
290 }
|