1
1
// This file serves as the script that makes the page interactive.
2
2
// (basically making the whole page possible)
3
+
3
4
// Note that the usage of "date" has the same meaning as the Date object in
4
5
// JavaScript, which also includes the time. If you care only the light,
5
6
// the parts regarding dates can be safetly ignored.
@@ -35,14 +36,23 @@ const execute = async () => {
35
36
// Resets the animation
36
37
lightEl . style . setProperty ( 'animation' , 'none' )
37
38
39
+ /**
40
+ * The date on which the data is fetched.
41
+ */
42
+ const fetchDate = dayjs ( )
43
+
38
44
// Fetches the API related to Cheerlights. The API can be found on their site.
39
- // The fetch() function returns a Promise (an type of asynchronous function), which we need to wait with await.
45
+ // The fetch() function returns an asynchronous function (with Promise),
46
+ // which we need to wait with the `await` keyword.
40
47
const request = await fetch ( 'https://api.thingspeak.com/channels/1417/field/1/last.json' )
41
48
42
49
// Tells that the result is a JSON, in which should be parsed
43
- // This, too, returns a Promise , which we need to wait with the same way.
50
+ // This, too, is asynchronous , which we need to wait with the same way.
44
51
const data = await request . json ( )
45
52
53
+ // Debug information that displays the fetched data.
54
+ // In production, this is optional, but you can enable it to fix bugs.
55
+
46
56
// Set the color variable for ease of access
47
57
const color = data . field1
48
58
@@ -55,11 +65,6 @@ const execute = async () => {
55
65
* The date included on the data.
56
66
*/
57
67
const eventDate = dayjs ( data . created_at , 'YYYY-MM-DDTHH:mm:ssWIB' )
58
-
59
- /**
60
- * The date on which the data is fetched.
61
- */
62
- const fetchDate = dayjs ( )
63
68
64
69
// Updates the dates on the document
65
70
updateTextContent ( '.info-event' , dayToString1 ( eventDate ) )
@@ -69,8 +74,8 @@ const execute = async () => {
69
74
// Run these next functions only when it is a new event, inferred from the ID.
70
75
// Ideally we don't want to redo something that has been done because it waste
71
76
// resources (in this case, negligble), but this also handles the part related
72
- // the date on receivedDate. If you care only the light, this can also be
73
- // safetly ignored.
77
+ // the date on ` receivedDate` . If you care only the light, this can also be
78
+ // safely ignored.
74
79
if ( currentId === data . entry_id ) return
75
80
currentId = data . entry_id
76
81
@@ -81,6 +86,7 @@ const execute = async () => {
81
86
// Update the displayed colors
82
87
lightEl . style . setProperty ( '--cl-main' , color )
83
88
updateTextContent ( '.light-text' , color )
89
+
84
90
// Sets the secondary color, this mainly to handle an edge case when it is
85
91
// white, otherwise you can see anything. If it is any other color, the
86
92
// secondary color would be the same as the main one.
@@ -99,13 +105,22 @@ let statusProgressBar = 'fetch'
99
105
* Handles the timer when it is updating
100
106
*/
101
107
const executeTimer = async ( ) => {
108
+ // Adjust the progress bar before running the funciton.
102
109
statusProgressBar = "fetch"
103
110
document . querySelector ( "#status .progress-bar" ) . style . width = "0"
104
111
document . querySelector ( "#status .progress-bar" ) . style . transition = "width 0.25s ease"
105
112
updateTextContent ( "#status p" , `Fetching data...` )
113
+
114
+ // Execute the main function. Note that this function is also asynchronous
115
+ // so, `await` is also used here.
106
116
await execute ( )
117
+
118
+ // Adjust the progress bar to signify the completion.
107
119
document . querySelector ( "#status .progress-bar" ) . style . width = "100%"
108
120
updateTextContent ( "#status p" , "Data fetched!" )
121
+
122
+ // Give 1 more second before the display ticks down.
123
+ // (it still ticks down on the background)
109
124
setTimeout ( ( ) => {
110
125
document . querySelector ( "#status .progress-bar" ) . style . transition = "unset"
111
126
statusProgressBar = "timer"
0 commit comments