-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fire.js
84 lines (69 loc) · 1.85 KB
/
Fire.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
import firebase from 'firebase';
import config from './firebase-config';
class Fire {
constructor() {
// this.init();
// this.observeAuth();
}
observeAuth = () =>
firebase.auth().onAuthStateChanged(this.onAuthStateChanged);
onAuthStateChanged = user => {
if (!user) {
try {
console.log('Signing in anon');
firebase.auth().signInAnonymously();
console.log('UID:', firebase.auth().currentUser.uid);
} catch ({message}) {
alert(message);
}
}
};
get ref() {
return firebase.database().ref('messages');
}
on = callback =>
this.ref
.limitToLast(20)
.on('child_added',
snapshot => callback(this.parse(snapshot)));
parse = snapshot => {
const { timestamp: numberStamp, text, user } = snapshot.val();
const { key: _id } = snapshot;
// 2.
const timestamp = new Date(numberStamp);
// 3.
const message = {
_id,
timestamp,
text,
user,
};
return message;
};
off() {
this.ref.off();
}
get uid(){
return(firebase.auth().currentUser || {}).uid;
}
get timestamp(){
return firebase.database.ServerValue.TIMESTAMP;
}
send = messages => {
for (let i = 0; i < messages.length; i++) {
const { text, user } = messages[i];
// 4.
const message = {
text,
user,
timestamp: this.timestamp,
};
this.append(message);
}
};
append = message => this.ref.push(message);
init = () =>
firebase.initializeApp(config);
}
Fire.shared = new Fire();
export default Fire;