Merge branch 'main' of code.giller.dev:m.giller/giller.dev
This commit is contained in:
commit
bf8ce0f5b7
1 changed files with 8 additions and 1 deletions
|
@ -167,6 +167,10 @@
|
|||
<br />
|
||||
<a href="https://insta.giller.dev">My archived Instagram</a>
|
||||
<br />
|
||||
<a href="https://letterboxd.com/mgiller">Movies I watched</a>
|
||||
<br />
|
||||
<br />
|
||||
<a href="https://linu.sk/blog">My prefered literature</a>
|
||||
<br />
|
||||
<a href="https://tv.giller.dev">My prefered entertainment</a>
|
||||
<br />
|
||||
|
@ -332,18 +336,21 @@
|
|||
const adjustedDate = new Date((new Date()).getTime() - offset * 24 * 60 * 60 * 1000);
|
||||
const formattedDate = adjustedDate.getFullYear().toString() + "-" + (adjustedDate.getMonth() + 1).toString().padStart(2, "0") + "-" + adjustedDate.getDate().toString().padStart(2, "0");
|
||||
|
||||
let titleSuffix = ""
|
||||
if (streakData.length > 0) {
|
||||
if (streakData.includes(formattedDate)) {
|
||||
classes.push("bi-circle-fill");
|
||||
titleSuffix = " | Hit";
|
||||
} else if (offset == 0) {
|
||||
classes.push("bi-circle-half");
|
||||
} else {
|
||||
classes.push("bi-circle");
|
||||
titleSuffix = " | Miss";
|
||||
}
|
||||
}
|
||||
|
||||
document.getElementById("day-" + offset).classList = classes.join(" ");
|
||||
document.getElementById("day-" + offset).title = formattedDate;
|
||||
document.getElementById("day-" + offset).title = formattedDate + titleSuffix;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue