-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.js
49 lines (36 loc) · 1.4 KB
/
home.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
function loadJSON(file, callback) {
var xobj = new XMLHttpRequest();
xobj.overrideMimeType("application/json");
xobj.open('GET', file, true);
xobj.onreadystatechange = function () {
if (xobj.readyState == 4 && xobj.status == "200") {
// Required use of an anonymous callback as .open will NOT return a value but simply returns undefined in asynchronous mode
callback(xobj.responseText);
}
};
xobj.send(null);
}
var ref = firebase.database().ref();
var data_ref = firebase.database().ref().child("articles");
var i = 0;
loadJSON("delhi.json", function (response) {
var actual_JSON = JSON.parse(response);
console.log("actual_JSON : " + actual_JSON.length);
for (var i = 0; i < actual_JSON.length; i++) {
// console.log(actual_JSON[i].description);
// console.log(actual_JSON[i].title);
ref.child("articles").push().set({
title: actual_JSON[i].title,
description: actual_JSON[i].description
});
console.log("DONE");
}
});
console.log("hello");
data_ref.on("child_changed", snap => {
// Iterate over all records in DB and take the snapshot
var mStore = snap.val();
console.log(mStore);
$('#header').append("<h4 align='left'><a href=" + mStore.url + ">" + mStore.title + "</a></h4>");
$('#body').append("<article>" + mStore.description + "</article>");
});