The theme option will now be saved to a cookie

This commit is contained in:
2025-05-09 10:28:19 -07:00
parent df55dcbd07
commit b502fd518a
2 changed files with 32 additions and 1 deletions

22
src/script/cookie.ts Normal file
View File

@ -0,0 +1,22 @@
// The magic cookie system is so stupid
export function setCookie(cname: string, cvalue: string) {
document.cookie = cname + "=" + cvalue + ";";
}
// Credit: https://www.w3schools.com/js/js_cookies.asp
export function getCookie(cname: string): string {
let name = cname + "=";
let decodedCookie = decodeURIComponent(document.cookie);
let ca = decodedCookie.split(";");
for (let i = 0; i < ca.length; i++) {
let c = ca[i];
while (c.charAt(0) == " ") {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}