mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
64 lines
1.4 KiB
JavaScript
64 lines
1.4 KiB
JavaScript
/**
|
|
* localStorage utils
|
|
*/
|
|
|
|
export const lastUpdatedSuffix = '__lastUpdated';
|
|
|
|
export default {
|
|
|
|
set(key, value) {
|
|
try {
|
|
localStorage.setItem(key, JSON.stringify(value));
|
|
return true;
|
|
}
|
|
catch (err) {
|
|
return false;
|
|
}
|
|
},
|
|
|
|
get(key) {
|
|
const value = localStorage.getItem(key);
|
|
try {
|
|
return JSON.parse(value);
|
|
}
|
|
catch (err) {
|
|
return value;
|
|
}
|
|
},
|
|
|
|
remove(key) {
|
|
try {
|
|
localStorage.removeItem(key);
|
|
return true;
|
|
}
|
|
catch (err) {
|
|
return false;
|
|
}
|
|
},
|
|
|
|
// Watch changes to a specified key - returns value on change
|
|
watch(key, callback) {
|
|
const handler = event => {
|
|
if (event.key === key) callback(this.get(key));
|
|
};
|
|
window.addEventListener('storage', handler);
|
|
return () => window.removeEventListener('storage', handler);
|
|
},
|
|
|
|
// set() with an additional key containing the current time + expiration time
|
|
setWithExpireTime(key, value, maxAge) {
|
|
const lastUpdatedKey = key + lastUpdatedSuffix;
|
|
const lastUpdatedTime = Date.now() + maxAge;
|
|
|
|
this.set(key, value) && this.set(lastUpdatedKey, lastUpdatedTime);
|
|
},
|
|
|
|
// Whether the value of a key set with setWithExpireTime() has expired
|
|
hasExpired(key) {
|
|
const lastUpdatedKey = key + lastUpdatedSuffix;
|
|
const lastUpdatedTime = this.get(lastUpdatedKey);
|
|
|
|
return Date.now() > lastUpdatedTime;
|
|
},
|
|
|
|
};
|