-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfirebase_chat.js
273 lines (226 loc) · 7.76 KB
/
firebase_chat.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
// Global variables TODO: use namespace
var developerImg = 'https://avatars1.githubusercontent.com/u/2729246?v=4&s=400';
var designerImg = 'https://lh6.googleusercontent.com/-y-MY2satK-E/AAAAAAAAAAI/AAAAAAAAAJU/ER_hFddBheQ/photo.jpg';
var usernameLabel;
var othernameLabel;
var textInput;
var postButton;
var switchUsersBtns;
var uploadFileAnchor;
var uploadFileInput;
var currentRenderFunction;
var otherRenderFunction;
var messagesPerConversation;
var conversationTimestamp;
var newMessage;
$( window ).on( "load", function() {
$("#chat_column").LoadingOverlay("show");
// Initialize Firebase
firebaseWrapper.initFirebase();
// Get conversations data
firebaseWrapper.initConversationData(renderConversation);
// Begin listening for data
firebaseWrapper.startListeningToChatMessages(renderChatItem);
firebaseWrapper.startListeningToAttachments(renderAttachmentItem);
// Initialize our chat app
initChatApp();
$("#chat_column").LoadingOverlay("hide");
});
initChatApp = function() {
usernameLabel = $('#username');
othernameLabel = $('#othername');
textInput = $('#chat_text');
postButton = $('#post_button');
switchUsersBtns = $('.dev-switch-button');
uploadFileAnchor = $('#file_anchor');
uploadFileInput = $('#file_input');
newMessage = false;
currentRenderFunction = renderDeveloperMsg;
otherRenderFunction = renderDesignerMsg;
switchUsersBtns.click(toggleUser);
postButton.click(postButtonHandler);
uploadFileAnchor.click(openFileDialog);
uploadFileInput.change(uploadFile);
}
// -- Event handlers
toggleUser = function() {
$("#chat_column").LoadingOverlay("show");
// Switch usernames
var tmp = usernameLabel.text().trim();
usernameLabel.text(othernameLabel.text().trim());
othernameLabel.text(tmp);
// Update conversation info
$('#conversation_name').text(tmp);
$("#conversation_img").attr('src', tmp == 'Designer' ? designerImg : developerImg);
// Switch buttons status
$('.dev-switch-button').each(function( index ) {
if ( $(this).hasClass('disabled') )
$(this).removeClass('disabled');
else
$(this).addClass('disabled');
});
// Switch message template also
var tmp = currentRenderFunction;
currentRenderFunction = otherRenderFunction;
otherRenderFunction = tmp;
$("#chat_column").LoadingOverlay("hide");
}
postButtonHandler = function(e) {
e.preventDefault();
var msgText = textInput.val().trim();
if ( !msgText || msgText == '' )
return;
newMessage = true;
pushChatMessage(msgText);
textInput.val('');
}
openFileDialog = function(e){
e.preventDefault();
uploadFileInput.click();
}
// -- Methods Calling firebaseWrapper
uploadFile = function(){
$("#chat_column").LoadingOverlay("show");
var file = uploadFileInput[0].files[0];
firebaseWrapper.uploadFileToStorage(file, function(fileName, downloadURL){
var attachmentText = `
I uploaded a file named <a href='${downloadURL}' target='_blank'>${fileName}</a>
`;
pushChatMessage(attachmentText);
pushAttachmentMessage(fileName, downloadURL);
$("#chat_column").LoadingOverlay("hide");
});
}
pushChatMessage = function(msgText) {
var fromUser = usernameLabel.text().trim();
var toUser = othernameLabel.text().trim();
var timestamp = new Date().toString();
var timestampFormatted = timestamp.substring(0, timestamp.lastIndexOf(":"))
firebaseWrapper.pushChatItem({
from: fromUser,
to: toUser,
msg: msgText,
timestamp: timestampFormatted
});
}
pushAttachmentMessage = function(fileName, fileUrl) {
var fromUser = usernameLabel.text().trim();
var toUser = othernameLabel.text().trim();
var timestamp = new Date().toString();
var timestampFormatted = timestamp.substring(0, timestamp.lastIndexOf(":"))
firebaseWrapper.pushAttachmentItem({
from: fromUser,
to: toUser,
fileName: fileName,
fileUrl: fileUrl,
timestamp: timestampFormatted
});
}
// -- Rendering methods
renderChatItem = function(chatItem){
if ( chatItem.from == 'Designer' )
renderDesignerMsg(chatItem.msg, chatItem.timestamp)
else
renderDeveloperMsg(chatItem.msg, chatItem.timestamp)
if(newMessage){
messagesPerConversation++;
conversationTimestamp = chatItem.timestamp;
renderConversationData();
}
}
renderDesignerMsg = function(text, timestamp){
renderMsg('', designerImg, text, timestamp);
}
renderDeveloperMsg = function(text, timestamp){
renderMsg('other-msg admin_chat', developerImg, text, timestamp);
}
function renderMsg(className, imgSrc, text, timestamp){
imgClass = className != '' ? 'right' : 'left';
timeClass = className == '' ? 'left' : 'right';
chatItemHtml = `
<li class="${className} left clearfix">
<span class="chat-img1 pull-${imgClass}">
<img alt="User Avatar" class="img-circle" src="${imgSrc}"/>
</span>
<div class="chat-body1 clearfix">
<p>${text}</p>
<div class="text-muted small chat_time pull-${timeClass}">
${timestamp}
</div>
</div>
</li>
`;
$("#chat_items_list").append(chatItemHtml);
$(".chat_area").animate({ scrollTop: $('.chat_area').prop("scrollHeight")}, 50);
}
renderAttachmentItem = function(chatAttachmentItem){
if ( chatAttachmentItem.from == 'Designer' )
renderDesignerAttachmentMsg(chatAttachmentItem.fileName, chatAttachmentItem.fileUrl, chatAttachmentItem.timestamp);
else
renderDeveloperAttachmentMsg(chatAttachmentItem.fileName, chatAttachmentItem.fileUrl, chatAttachmentItem.timestamp);
}
renderDesignerAttachmentMsg = function(fileName, fileUrl, timestamp){
renderAttachment(designerImg, fileName, fileUrl, timestamp);
}
renderDeveloperAttachmentMsg = function(fileName, fileUrl, timestamp){
renderAttachment(developerImg, fileName, fileUrl, timestamp);
}
function renderAttachment(imgSrc, fileName, fileUrl, timestamp){
attachmentItemHtml = `
<li class="left clearfix" onclick="window.open('${fileUrl}','mywindow');">
<span class="chat-img pull-left">
<img alt="User Avatar" class="img-circle" src="${imgSrc}"/>
</span>
<div class="chat-body clearfix">
<div class="header_sec">
<strong class="primary-font">
${fileName}
</strong>
</div>
<div class="contact_sec">
${timestamp}
</div>
</div>
</li>
`;
$("#attachment_items_list").append(attachmentItemHtml);
$("#attachment_area").animate({ scrollTop: $('#attachment_area').prop("scrollHeight")}, 300);
}
renderConversation = function(messagesCount, lastMessageTimestamp){
messagesPerConversation = messagesCount;
conversationTimestamp = lastMessageTimestamp;
conversationItemHtml = `
<li class="left clearfix">
<span class="chat-img pull-left">
<img alt="User Avatar" id="conversation_img" class="img-circle" src="${designerImg}"/>
</span>
<div class="chat-body clearfix">
<div class="header_sec">
<strong id='conversation_name' class="primary-font">
Designer
</strong>
</div>
<div class="contact_sec">
<span id="conversation_timestamp" class="small text-muted">
${conversationTimestamp}
</span>
<span id="conversations_msgs_count" class="badge pull-right">
${messagesPerConversation}
</span>
</div>
</div>
</li>
`;
$("#conversation_list").append(conversationItemHtml);
$("#conversation_container").animate({ scrollTop: $('#conversation_container').prop("scrollHeight")}, 300);
}
renderConversationData = function(){
renderConversationMessageCount();
renderConversationTimestamp();
}
renderConversationMessageCount = function(){
$("#conversations_msgs_count").html(messagesPerConversation);
}
renderConversationTimestamp = function(){
$("#conversation_timestamp").html(conversationTimestamp);
}