mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 13:39:19 -06:00
eaff7b0f68
- queries are saved to localstorage history array - one history per datasource type (plugin ID) - 100 items kept with timestamps - history suggestions can be pulled up with Ctrl-SPACE
60 lines
1.3 KiB
TypeScript
60 lines
1.3 KiB
TypeScript
export class Store {
|
|
get(key) {
|
|
return window.localStorage[key];
|
|
}
|
|
|
|
set(key, value) {
|
|
window.localStorage[key] = value;
|
|
}
|
|
|
|
getBool(key, def) {
|
|
if (def !== void 0 && !this.exists(key)) {
|
|
return def;
|
|
}
|
|
return window.localStorage[key] === 'true';
|
|
}
|
|
|
|
getObject(key: string, def?: any) {
|
|
let ret = def;
|
|
if (this.exists(key)) {
|
|
const json = window.localStorage[key];
|
|
try {
|
|
ret = JSON.parse(json);
|
|
} catch (error) {
|
|
console.error(`Error parsing store object: ${key}. Returning default: ${def}. [${error}]`);
|
|
}
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
// Returns true when successfully stored
|
|
setObject(key: string, value: any): boolean {
|
|
let json;
|
|
try {
|
|
json = JSON.stringify(value);
|
|
} catch (error) {
|
|
console.error(`Could not stringify object: ${key}. [${error}]`);
|
|
return false;
|
|
}
|
|
try {
|
|
this.set(key, json);
|
|
} catch (error) {
|
|
// Likely hitting storage quota
|
|
console.error(`Could not save item in localStorage: ${key}. [${error}]`);
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
exists(key) {
|
|
return window.localStorage[key] !== void 0;
|
|
}
|
|
|
|
delete(key) {
|
|
window.localStorage.removeItem(key);
|
|
}
|
|
}
|
|
|
|
const store = new Store();
|
|
export default store;
|