-
Notifications
You must be signed in to change notification settings - Fork 0
/
mannual_toggle.js
65 lines (58 loc) · 2.13 KB
/
mannual_toggle.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
const toggleSwitch = document.getElementById("toggleSwitch");
toggleSwitch.addEventListener("change", function() {
if (toggleSwitch.checked) {
const formData = {
"data": {
"PUMP STATUS": "ON"
},
"query": "select * from ZyaZm8AMFF59ektW where PUMP STATUS='OFF'"
};
fetch("https://api.apispreadsheets.com/data/ZyaZm8AMFF59ektW/", {
method: "POST",
body: JSON.stringify(formData),
headers: {
"Content-Type": "application/json"
}
})
.then(res => {
if (res.status === 201) {
// SUCCESS: Handle the success case here
} else {
// ERROR: Handle the error case here
alert("There was an error :(");
}
})
.catch(error => {
// Handle any network or other errors here
console.error("Error:", error);
alert("There was an error :(");
});
} else {
const formData = {
"data": {
"PUMP STATUS": "OFF"
},
"query": "select * from ZyaZm8AMFF59ektW where PUMP STATUS='ON'"
};
fetch("https://api.apispreadsheets.com/data/ZyaZm8AMFF59ektW/", {
method: "POST",
body: JSON.stringify(formData),
headers: {
"Content-Type": "application/json"
}
})
.then(res => {
if (res.status === 201) {
// SUCCESS: Handle the success case here
} else {
// ERROR: Handle the error case here
alert("There was an error :(");
}
})
.catch(error => {
// Handle any network or other errors here
console.error("Error:", error);
alert("There was an error :(");
});
}
});