main.js
11 KB
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
/**
* Copyright 2015 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
// Signs-in Friendly Chat.
function signIn() {
// Sign in Firebase using popup auth and Google as the identity provider.
var provider = new firebase.auth.GoogleAuthProvider();
firebase.auth().signInWithPopup(provider);
}
// Signs-out of Friendly Chat.
function signOut() {
// Sign out of Firebase.
firebase.auth().signOut();
}
// Initiate firebase auth.
function initFirebaseAuth() {
// Listen to auth state changes.
firebase.auth().onAuthStateChanged(authStateObserver);
}
// Returns the signed-in user's profile Pic URL.
function getProfilePicUrl() {
return firebase.auth().currentUser.photoURL || '/images/profile_placeholder.png';
}
// Returns the signed-in user's display name.
function getUserName() {
return firebase.auth().currentUser.displayName;
}
// Returns true if a user is signed-in.
function isUserSignedIn() {
return !!firebase.auth().currentUser;
}
// Loads chat messages history and listens for upcoming ones.
function loadMessages() {
// Loads the last 12 messages and listen for new ones.
var callback = function(snap) {
var data = snap.val();
displayMessage(snap.key, data.name, data.text, data.profilePicUrl, data.imageUrl);
};
firebase.database().ref('/messages/').limitToLast(12).on('child_added', callback);
firebase.database().ref('/messages/').limitToLast(12).on('child_changed', callback);
}
// Saves a new message on the Firebase DB.
function saveMessage(messageText) {
// Add a new message entry to the Firebase database.
return firebase.database().ref('/messages/').push({
name: getUserName(),
text: messageText,
profilePicUrl: getProfilePicUrl()
}).catch(function(error) {
console.error('Error writing new message to Firebase Database', error);
});
}
// Saves a new message containing an image in Firebase.
// This first saves the image in Firebase storage.
function saveImageMessage(file) {
// 1 - We add a message with a loading icon that will get updated with the shared image.
firebase.database().ref('/messages/').push({
name: getUserName(),
imageUrl: LOADING_IMAGE_URL,
profilePicUrl: getProfilePicUrl()
}).then(function(messageRef) {
// 2 - Upload the image to Cloud Storage.
var filePath = firebase.auth().currentUser.uid + '/' + messageRef.key + '/' + file.name;
return firebase.storage().ref(filePath).put(file).then(function(fileSnapshot) {
// 3 - Generate a public URL for the file.
return fileSnapshot.ref.getDownloadURL().then((url) => {
// 4 - Update the chat message placeholder with the image’s URL.
return messageRef.update({
imageUrl: url,
storageUri: fileSnapshot.metadata.fullPath
});
});
});
}).catch(function(error) {
console.error('There was an error uploading a file to Cloud Storage:', error);
});
}
// Saves the messaging device token to the datastore.
function saveMessagingDeviceToken() {
firebase.messaging().getToken().then(function(currentToken) {
if (currentToken) {
console.log('Got FCM device token:', currentToken);
// Saving the Device Token to the datastore.
firebase.database().ref('/fcmTokens').child(currentToken)
.set(firebase.auth().currentUser.uid);
} else {
// Need to request permissions to show notifications.
requestNotificationsPermissions();
}
}).catch(function(error){
console.error('Unable to get messaging token.', error);
});
}
// Requests permissions to show notifications.
function requestNotificationsPermissions() {
console.log('Requesting notifications permission...');
firebase.messaging().requestPermission().then(function() {
// Notification permission granted.
saveMessagingDeviceToken();
}).catch(function(error) {
console.error('Unable to get permission to notify.', error);
});
}
// Triggered when a file is selected via the media picker.
function onMediaFileSelected(event) {
event.preventDefault();
var file = event.target.files[0];
// Clear the selection in the file picker input.
imageFormElement.reset();
// Check if the file is an image.
if (!file.type.match('image.*')) {
var data = {
message: 'You can only share images',
timeout: 2000
};
signInSnackbarElement.MaterialSnackbar.showSnackbar(data);
return;
}
// Check if the user is signed-in
if (checkSignedInWithMessage()) {
saveImageMessage(file);
}
}
// Triggered when the send new message form is submitted.
function onMessageFormSubmit(e) {
e.preventDefault();
// Check that the user entered a message and is signed in.
if (messageInputElement.value && checkSignedInWithMessage()) {
saveMessage(messageInputElement.value).then(function() {
// Clear message text field and re-enable the SEND button.
resetMaterialTextfield(messageInputElement);
toggleButton();
});
}
}
// Triggers when the auth state change for instance when the user signs-in or signs-out.
function authStateObserver(user) {
if (user) { // User is signed in!
// Get the signed-in user's profile pic and name.
var profilePicUrl = getProfilePicUrl();
var userName = getUserName();
// Set the user's profile pic and name.
userPicElement.style.backgroundImage = 'url(' + profilePicUrl + ')';
userNameElement.textContent = userName;
// Show user's profile and sign-out button.
userNameElement.removeAttribute('hidden');
userPicElement.removeAttribute('hidden');
signOutButtonElement.removeAttribute('hidden');
// Hide sign-in button.
signInButtonElement.setAttribute('hidden', 'true');
// We save the Firebase Messaging Device token and enable notifications.
saveMessagingDeviceToken();
} else { // User is signed out!
// Hide user's profile and sign-out button.
userNameElement.setAttribute('hidden', 'true');
userPicElement.setAttribute('hidden', 'true');
signOutButtonElement.setAttribute('hidden', 'true');
// Show sign-in button.
signInButtonElement.removeAttribute('hidden');
}
}
// Returns true if user is signed-in. Otherwise false and displays a message.
function checkSignedInWithMessage() {
// Return true if the user is signed in Firebase
if (isUserSignedIn()) {
return true;
}
// Display a message to the user using a Toast.
var data = {
message: 'You must sign-in first',
timeout: 2000
};
signInSnackbarElement.MaterialSnackbar.showSnackbar(data);
return false;
}
// Resets the given MaterialTextField.
function resetMaterialTextfield(element) {
element.value = '';
element.parentNode.MaterialTextfield.boundUpdateClassesHandler();
}
// Template for messages.
var MESSAGE_TEMPLATE =
'<div class="message-container">' +
'<div class="spacing"><div class="pic"></div></div>' +
'<div class="message"></div>' +
'<div class="name"></div>' +
'</div>';
// A loading image URL.
var LOADING_IMAGE_URL = 'https://www.google.com/images/spin-32.gif?a';
// Displays a Message in the UI.
function displayMessage(key, name, text, picUrl, imageUrl) {
var div = document.getElementById(key);
// If an element for that message does not exists yet we create it.
if (!div) {
var container = document.createElement('div');
container.innerHTML = MESSAGE_TEMPLATE;
div = container.firstChild;
div.setAttribute('id', key);
messageListElement.appendChild(div);
}
if (picUrl) {
div.querySelector('.pic').style.backgroundImage = 'url(' + picUrl + ')';
}
div.querySelector('.name').textContent = name;
var messageElement = div.querySelector('.message');
if (text) { // If the message is text.
messageElement.textContent = text;
// Replace all line breaks by <br>.
messageElement.innerHTML = messageElement.innerHTML.replace(/\n/g, '<br>');
} else if (imageUrl) { // If the message is an image.
var image = document.createElement('img');
image.addEventListener('load', function() {
messageListElement.scrollTop = messageListElement.scrollHeight;
});
image.src = imageUrl + '&' + new Date().getTime();
messageElement.innerHTML = '';
messageElement.appendChild(image);
}
// Show the card fading-in and scroll to view the new message.
setTimeout(function() {div.classList.add('visible')}, 1);
messageListElement.scrollTop = messageListElement.scrollHeight;
messageInputElement.focus();
}
// Enables or disables the submit button depending on the values of the input
// fields.
function toggleButton() {
if (messageInputElement.value) {
submitButtonElement.removeAttribute('disabled');
} else {
submitButtonElement.setAttribute('disabled', 'true');
}
}
// Checks that the Firebase SDK has been correctly setup and configured.
function checkSetup() {
if (!window.firebase || !(firebase.app instanceof Function) || !firebase.app().options) {
window.alert('You have not configured and imported the Firebase SDK. ' +
'Make sure you go through the codelab setup instructions and make ' +
'sure you are running the codelab using `firebase serve`');
}
}
// Checks that Firebase has been imported.
checkSetup();
// Shortcuts to DOM Elements.
var messageListElement = document.getElementById('messages');
var messageFormElement = document.getElementById('message-form');
var messageInputElement = document.getElementById('message');
var submitButtonElement = document.getElementById('submit');
var imageButtonElement = document.getElementById('submitImage');
var imageFormElement = document.getElementById('image-form');
var mediaCaptureElement = document.getElementById('mediaCapture');
var userPicElement = document.getElementById('user-pic');
var userNameElement = document.getElementById('user-name');
var signInButtonElement = document.getElementById('sign-in');
var signOutButtonElement = document.getElementById('sign-out');
var signInSnackbarElement = document.getElementById('must-signin-snackbar');
// Saves message on form submit.
messageFormElement.addEventListener('submit', onMessageFormSubmit);
signOutButtonElement.addEventListener('click', signOut);
signInButtonElement.addEventListener('click', signIn);
// Toggle for the button.
messageInputElement.addEventListener('keyup', toggleButton);
messageInputElement.addEventListener('change', toggleButton);
// Events for image upload.
imageButtonElement.addEventListener('click', function(e) {
e.preventDefault();
mediaCaptureElement.click();
});
mediaCaptureElement.addEventListener('change', onMediaFileSelected);
// initialize Firebase
initFirebaseAuth();
// We load currently existing chat messages and listen to new ones.
loadMessages();