-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
61 lines (57 loc) · 1.94 KB
/
main.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
class ScratchFetch {
constructor() {
}
getInfo() {
return {
"id": "Fetch",
"name": "Fetch",
"blocks": [
{
"opcode": "fetchURL",
"blockType": "reporter",
"text": "fetch data from [url]",
"arguments": {
"url": {
"type": "string",
"defaultValue": "https://api.weather.gov/stations/KNYC/observations"
},
}
},
{
"opcode": "jsonExtract",
"blockType": "reporter",
"text": "extract [name] from [data]",
"arguments": {
"name": {
"type": "string",
"defaultValue": "temperature"
},
"data": {
"type": "string",
"defaultValue": '{"temperature": 12.3}'
},
}
},
],
};
}
fetchURL({url}) {
return fetch(url).then(response => response.text())
}
jsonExtract({name,data}) {
var parsed = JSON.parse(data)
if (name in parsed) {
var out = parsed[name]
var t = typeof(out)
if (t == "string" || t == "number")
return out
if (t == "boolean")
return t ? 1 : 0
return JSON.stringify(out)
}
else {
return ""
}
}
}
Scratch.extensions.register(new ScratchFetch())