-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFire.js
74 lines (59 loc) · 1.64 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
import firebase from 'firebase'
class Fire{
constructor(){
this.init()
this.checkAuth()
}
//initializing the firebase account with the api key and project id
init = () =>{
if(!firebase.apps.length){
firebase.initializeApp({
//enter your fire base CDN code from your project here
});
}
};
// if firebase is initialized the authenticating to the firebase project
checkAuth = () =>{
firebase.auth().onAuthStateChanged(user =>{
if(!user){
firebase.auth().signInAnonymously();
}
});
};
//pushing the messages into firebase db (storing them)
send = messages => {
messages.forEach(item => {
const message = {
text : item.text,
timestamp: firebase.database.ServerValue.TIMESTAMP,
user: item.user
};
this.db.push(message);
});
};
//obtaing the recorded or stored messages fro the fire base db
parse = message => {
const { user , text , timestamp } =message.val();
const { key: _id} = message;
const createdAt = new Date(timestamp);
return{
_id,
createdAt,
text,
user
};
};
get = callback =>{
this.db.on("child_added", snapshot => callback(this.parse(snapshot)));
};
off(){
this.db.off()
}
get db(){
return firebase.database().ref("messages");
}
get uid(){
return (firebase.auth().currentUser || {}).uid;
}
}
export default new Fire();