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