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