1
0
forked from PGL/Clyde
Clyde/frontend/src/utils.js
Anthony Debucquoy 619d2601f1 Fix lang toggle
This is not perfect as the toggle is not set to the right position when
the site is reload but as @Wal_ said he would refactor, I just made a
working sample good enough imo
2024-03-08 22:00:15 +01:00

26 lines
607 B
JavaScript

/**
* Return the content of a cookie with specified key
* @param key cookie name
*/
export function getCookie(key){
key = key + "="
let cookies = decodeURIComponent(document.cookie).split(";");
for (let el of cookies) {
el = el.trimStart();
if(el.indexOf(key) == 0){
return el.substr(key.length, el.length);
}
}
return "";
}
/**
* Return the content of a cookie with specified key
* @param key cookie name
*/
export function setCookie(key, value){
let cookie = key + "=" + value + "; SameSite=Lax";
document.cookie = cookie;
// Here we can apreciate the stupidity of Javascript :/
}