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() {
|
|
176 document.title = title;
|
31
|
177 hasUnseen = false;
|
18
|
178 };
|
19
|
179
|
|
180 let urlRegex = /(^|\s)(https?:\/\/\S+)/g;
|
|
181
|
|
182 function urlsToLinks(text) {
|
|
183 return text.replace( urlRegex, '$1<a href="$2">$2</a>' );
|
|
184 }
|
22
|
185
|
|
186 let currentPulldown = null;
|
|
187 let newPulldown = null;
|
|
188
|
|
189 function clickMenu(clicked,display) {
|
|
190 //console.log("clickMenu");
|
|
191 let pulldown = clicked.parentNode.querySelector('div');
|
|
192 if( pulldown !== currentPulldown ) {
|
|
193 pulldown.style.display = display || "block";
|
|
194 newPulldown = pulldown;
|
|
195 window.onclick = function() {
|
|
196 //console.log("window.onclick");
|
|
197 if( currentPulldown ) {
|
|
198 currentPulldown.style.display = "none";
|
|
199 if( !newPulldown )
|
|
200 window.onclick = null;
|
|
201 }
|
|
202 currentPulldown = newPulldown;
|
|
203 newPulldown = null;
|
|
204 };
|
|
205 pulldown.scrollIntoViewIfNeeded(false);
|
|
206 }
|
|
207 }
|
30
|
208
|
|
209 setInterval(function(){
|
|
210 ajax(`heartbeat.js?last_update=${lastUpdate}`);
|
|
211 }, 60000 );
|
|
212
|
|
213 function resync(updated) {
|
|
214 lastUpdate = updated;
|
|
215 currentChatId = null;
|
|
216 document.querySelector('div[posts]').innerHTML = '';
|
|
217 ajax('get_chats.js');
|
|
218 }
|
31
|
219
|
|
220 let sound = new Audio('/images/notify.mp3');
|
|
221 function notify() {
|
|
222 sound.play();
|
|
223 }
|
|
224
|