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