10
|
1 'use strict';
|
|
2
|
|
3 let currentChatId = null;
|
12
|
4 let eventSource;
|
10
|
5
|
16
|
6 function evalEvent(event) {
|
17
|
7 // console.log(event);
|
16
|
8 eval(event.data);
|
|
9 }
|
|
10
|
15
|
11 function setUserEventSource(userId) {
|
|
12 let userEventSource = new EventSource(`${location.origin}/user/${userId}`);
|
16
|
13 userEventSource.onmessage = evalEvent;
|
15
|
14 }
|
|
15
|
10
|
16 function selectChat(div) {
|
|
17 let chatId = div.getAttribute('chat');
|
|
18 if( chatId === currentChatId )
|
|
19 return;
|
|
20 let selected = div.parentNode.querySelector('[selected]');
|
|
21 if( selected ) selected.removeAttribute('selected');
|
|
22 div.setAttribute('selected','');
|
|
23 ajax(`get_chat.js?chat=${chatId}`);
|
|
24 currentChatId = chatId;
|
12
|
25
|
|
26 if(eventSource) eventSource.close();
|
|
27 eventSource = new EventSource(`${location.origin}/chat/${chatId}`);
|
16
|
28 eventSource.onmessage = evalEvent;
|
12
|
29 }
|
|
30
|
|
31 function gotChat(html) {
|
|
32 document.querySelector('div[posts]').innerHTML = html;
|
|
33 fixDates();
|
|
34 document.querySelector('div[input] textarea').focus();
|
|
35 document.querySelector('div[input]').scrollIntoView({block: 'end'});
|
10
|
36 }
|
|
37
|
|
38 function fixTextarea(event) {
|
|
39 let textarea = event.target;
|
|
40 textarea.style.height = 'initial';
|
|
41 textarea.style.height = (textarea.scrollHeight+2) + 'px';
|
|
42 textarea.scrollIntoViewIfNeeded(false);
|
|
43 }
|
|
44
|
|
45 const isMobile = 'ontouchstart' in window || navigator.maxTouchPoints > 0 || navigator.msMaxTouchPoints > 0;
|
|
46
|
|
47 function addPost() {
|
|
48 let textarea = document.querySelector('div[input] textarea');
|
|
49 let text = textarea.value;
|
|
50 if( text.trim() === '' )
|
|
51 return;
|
|
52 ajax(`add_post.js?chat=${currentChatId}&content=${encodeURIComponent(text)}`);
|
|
53 textarea.value = '';
|
|
54 }
|
|
55
|
|
56 function textareaKey(event) {
|
|
57 if( event.keyCode===13 && !event.shiftKey && !event.ctrlKey && !isMobile ) {
|
|
58 event.preventDefault();
|
|
59 addPost();
|
|
60 }
|
|
61 }
|
|
62
|
|
63 function fixDates() {
|
|
64 let spans = document.querySelectorAll('span[when][fix]');
|
|
65 for( let span of spans ) {
|
|
66 span.textContent = new Date(Number(span.textContent)).toLocaleString();
|
|
67 span.removeAttribute('fix');
|
|
68 }
|
|
69 }
|
11
|
70
|
|
71 function deleteChat() {
|
|
72 ajax(`delete_chat.js?chat=${currentChatId}`);
|
|
73 }
|
12
|
74
|
|
75 function added(html) {
|
|
76 let input = document.querySelector('div[input]');
|
|
77 input.insertAdjacentHTML('beforebegin',html);
|
14
|
78 fixDates();
|
12
|
79 input.scrollIntoView({block: 'end'});
|
|
80 }
|
15
|
81
|
|
82 function getChats(chatId) {
|
|
83 let first = document.querySelector('div[chat]');
|
|
84 if( !first || first.getAttribute('chat') != chatId ) {
|
|
85 // console.log('getChats');
|
|
86 ajax('get_chats.js');
|
|
87 }
|
|
88 }
|
|
89
|
|
90 function gotChats(html) {
|
|
91 document.querySelector('div[chats]').innerHTML = html;
|
|
92 if( currentChatId ) {
|
|
93 let current = document.querySelector(`div[chat="${currentChatId}"]`);
|
16
|
94 if( current ) {
|
|
95 current.setAttribute('selected','');
|
|
96 current.scrollIntoViewIfNeeded(false);
|
|
97 } else {
|
|
98 currentChatId = null;
|
|
99 document.querySelector('div[posts]').innerHTML = '';
|
|
100 }
|
15
|
101 }
|
|
102 }
|