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;
|
35
|
8 let userId;
|
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
|
10
|
20 function selectChat(div) {
|
27
|
21 document.querySelector('div[content]').setAttribute('show','posts');
|
10
|
22 let chatId = div.getAttribute('chat');
|
|
23 if( chatId === currentChatId )
|
|
24 return;
|
|
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;
|
34
|
30 let email = div.querySelector('[email]').textContent;
|
|
31 history.replaceState(null,null,`?with=${email}`);
|
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() {
|
|
39 document.querySelector('div[content]').setAttribute('show','chats');
|
|
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]');
|
|
78 whenSpan.textContent = new Date(Number(whenSpan.textContent)).toLocaleString();
|
|
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
|
|
99 function deletePost(postId) {
|
|
100 currentPostId = postId;
|
|
101 let dialog = document.querySelector('dialog[delete_post]');
|
|
102 openModal(dialog);
|
|
103 }
|
|
104
|
|
105 function doDeletePost(el) {
|
|
106 closeModal(el);
|
|
107 ajax(`delete_post.js?post=${currentPostId}`);
|
|
108 }
|
|
109
|
|
110 function deleted(postId) {
|
|
111 let div = document.querySelector(`div[post="${postId}"]`);
|
|
112 if( div )
|
|
113 div.outerHTML = '';
|
|
114 }
|
|
115
|
24
|
116 function editPost(postId) {
|
|
117 ajax(`edit_post.js?post=${postId}`);
|
|
118 }
|
|
119
|
|
120 function openEditPost(postId,text) {
|
|
121 currentPostId = postId;
|
|
122 let dialog = document.querySelector('dialog[edit_post]');
|
|
123 let textarea = dialog.querySelector('textarea');
|
|
124 textarea.value = text;
|
|
125 openModal(dialog);
|
|
126 }
|
|
127
|
|
128 function savePost(el) {
|
|
129 let text = document.querySelector('dialog[edit_post] textarea').value;
|
|
130 closeModal(el);
|
|
131 ajax(`save_post.js?post=${currentPostId}`,`content=${encodeURIComponent(text)}`);
|
|
132 }
|
|
133
|
|
134 function edited(postId,html) {
|
|
135 let div = document.querySelector(`div[post="${postId}"]`);
|
|
136 if( div ) {
|
|
137 div.outerHTML = html;
|
|
138 fixPosts();
|
|
139 }
|
|
140 }
|
|
141
|
12
|
142 function added(html) {
|
|
143 let input = document.querySelector('div[input]');
|
|
144 input.insertAdjacentHTML('beforebegin',html);
|
19
|
145 fixPosts();
|
12
|
146 input.scrollIntoView({block: 'end'});
|
|
147 }
|
15
|
148
|
30
|
149 function getChats(chatId,updated) {
|
15
|
150 let first = document.querySelector('div[chat]');
|
|
151 if( !first || first.getAttribute('chat') != chatId ) {
|
|
152 // console.log('getChats');
|
|
153 ajax('get_chats.js');
|
|
154 }
|
30
|
155 if( updated )
|
|
156 lastUpdate = updated;
|
31
|
157 if( !document.hasFocus() && !hasUnseen ) {
|
|
158 document.title = title + ' *';
|
|
159 notify();
|
|
160 hasUnseen = true;
|
|
161 }
|
15
|
162 }
|
|
163
|
|
164 function gotChats(html) {
|
|
165 document.querySelector('div[chats]').innerHTML = html;
|
|
166 if( currentChatId ) {
|
|
167 let current = document.querySelector(`div[chat="${currentChatId}"]`);
|
16
|
168 if( current ) {
|
|
169 current.setAttribute('selected','');
|
|
170 current.scrollIntoViewIfNeeded(false);
|
|
171 } else {
|
|
172 currentChatId = null;
|
|
173 document.querySelector('div[posts]').innerHTML = '';
|
|
174 }
|
15
|
175 }
|
|
176 }
|
18
|
177
|
|
178 window.onfocus = function() {
|
33
|
179 // console.log('onfocus');
|
18
|
180 document.title = title;
|
31
|
181 hasUnseen = false;
|
18
|
182 };
|
19
|
183
|
|
184 let urlRegex = /(^|\s)(https?:\/\/\S+)/g;
|
|
185
|
|
186 function urlsToLinks(text) {
|
|
187 return text.replace( urlRegex, '$1<a href="$2">$2</a>' );
|
|
188 }
|
22
|
189
|
|
190 let currentPulldown = null;
|
|
191 let newPulldown = null;
|
|
192
|
|
193 function clickMenu(clicked,display) {
|
|
194 //console.log("clickMenu");
|
|
195 let pulldown = clicked.parentNode.querySelector('div');
|
|
196 if( pulldown !== currentPulldown ) {
|
|
197 pulldown.style.display = display || "block";
|
|
198 newPulldown = pulldown;
|
|
199 window.onclick = function() {
|
|
200 //console.log("window.onclick");
|
|
201 if( currentPulldown ) {
|
|
202 currentPulldown.style.display = "none";
|
|
203 if( !newPulldown )
|
|
204 window.onclick = null;
|
|
205 }
|
|
206 currentPulldown = newPulldown;
|
|
207 newPulldown = null;
|
|
208 };
|
|
209 pulldown.scrollIntoViewIfNeeded(false);
|
|
210 }
|
|
211 }
|
30
|
212
|
|
213 setInterval(function(){
|
33
|
214 showOnline();
|
30
|
215 ajax(`heartbeat.js?last_update=${lastUpdate}`);
|
33
|
216 }, 10000 );
|
30
|
217
|
31
|
218 let sound = new Audio('/images/notify.mp3');
|
|
219 function notify() {
|
|
220 sound.play();
|
|
221 }
|
|
222
|
33
|
223 let online = {};
|
|
224
|
|
225 function setOnline(userId) {
|
|
226 online[userId] = Date.now();
|
|
227 }
|
|
228
|
|
229 function showOnline() {
|
|
230 let old = Date.now() - 20000;
|
|
231 for( let id of Object.keys(online) ) {
|
|
232 if( online[id] < old )
|
|
233 delete online[id];
|
|
234 }
|
|
235 let a = [];
|
|
236 for( let id in online ) {
|
|
237 a.push( `span[online="${id}"]` );
|
|
238 }
|
|
239 let style = document.querySelector('style[online]');
|
|
240 if( a.length === 0 ) {
|
|
241 style.innerHTML = '';
|
|
242 } else {
|
|
243 style.innerHTML = `
|
|
244 ${a.join(', ')} {
|
|
245 background-color: green;
|
|
246 }
|
|
247 ` ;
|
|
248 }
|
|
249 }
|