-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGSpreadSheetReader.js
38 lines (34 loc) · 1.04 KB
/
GSpreadSheetReader.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
var sSP = null;
// Google callback
function doData(json) {
sSP.spData = json.feed.entry;
sSP.callback(sSP);
}
// Constructor
function GSpreadSheetReader (name, key, tab, callback){
this.spData = null;
this.name = name;
this.key=key;
this.url = "https://spreadsheets.google.com/feeds/cells/" + this.key + "/" + tab + "/public/values?alt=json-in-script&callback=doData"
this.callback = callback;
sSP = this;
}
// Load google api to retrieve the json data passed to doData.
GSpreadSheetReader.prototype.loadScript = function() {
let script = document.createElement('script');
script.src = this.url;
document.head.append(script);
}
// Returns data from the spreadsheet.
GSpreadSheetReader.prototype.getCell = function(x, y) {
var data = this.spData;
for(var r=0; r < data.length; r++) {
var cell = data[r]["gs$cell"];
var val = cell["$t"];
console.log(val)
if (cell.row == x && cell.col == y) {
return val;
}
}
return "undefined";
}