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