Skip to content

Commit 4b98958

Browse files
committed
CheerLights Live: Add more info regarding some parts
1 parent 81189aa commit 4b98958

File tree

1 file changed

+24
-9
lines changed

1 file changed

+24
-9
lines changed

site/cheerlights-live/script.js

+24-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// This file serves as the script that makes the page interactive.
22
// (basically making the whole page possible)
3+
34
// Note that the usage of "date" has the same meaning as the Date object in
45
// JavaScript, which also includes the time. If you care only the light,
56
// the parts regarding dates can be safetly ignored.
@@ -35,14 +36,23 @@ const execute = async () => {
3536
// Resets the animation
3637
lightEl.style.setProperty('animation', 'none')
3738

39+
/**
40+
* The date on which the data is fetched.
41+
*/
42+
const fetchDate = dayjs()
43+
3844
// 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.
4047
const request = await fetch('https://api.thingspeak.com/channels/1417/field/1/last.json')
4148

4249
// 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.
4451
const data = await request.json()
4552

53+
// Debug information that displays the fetched data.
54+
// In production, this is optional, but you can enable it to fix bugs.
55+
4656
// Set the color variable for ease of access
4757
const color = data.field1
4858

@@ -55,11 +65,6 @@ const execute = async () => {
5565
* The date included on the data.
5666
*/
5767
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()
6368

6469
// Updates the dates on the document
6570
updateTextContent('.info-event', dayToString1(eventDate))
@@ -69,8 +74,8 @@ const execute = async () => {
6974
// Run these next functions only when it is a new event, inferred from the ID.
7075
// Ideally we don't want to redo something that has been done because it waste
7176
// 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.
7479
if (currentId === data.entry_id) return
7580
currentId = data.entry_id
7681

@@ -81,6 +86,7 @@ const execute = async () => {
8186
// Update the displayed colors
8287
lightEl.style.setProperty('--cl-main', color)
8388
updateTextContent('.light-text', color)
89+
8490
// Sets the secondary color, this mainly to handle an edge case when it is
8591
// white, otherwise you can see anything. If it is any other color, the
8692
// secondary color would be the same as the main one.
@@ -99,13 +105,22 @@ let statusProgressBar = 'fetch'
99105
* Handles the timer when it is updating
100106
*/
101107
const executeTimer = async () => {
108+
// Adjust the progress bar before running the funciton.
102109
statusProgressBar = "fetch"
103110
document.querySelector("#status .progress-bar").style.width = "0"
104111
document.querySelector("#status .progress-bar").style.transition = "width 0.25s ease"
105112
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.
106116
await execute()
117+
118+
// Adjust the progress bar to signify the completion.
107119
document.querySelector("#status .progress-bar").style.width = "100%"
108120
updateTextContent("#status p", "Data fetched!")
121+
122+
// Give 1 more second before the display ticks down.
123+
// (it still ticks down on the background)
109124
setTimeout(() => {
110125
document.querySelector("#status .progress-bar").style.transition = "unset"
111126
statusProgressBar = "timer"

0 commit comments

Comments
 (0)