mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
af5b3c9004
Summary: This also enables the new Usage section for all sites. Currently, it shows metrics for document row count, but only if the user has full document read access. Otherwise, a message about insufficient access is shown. Test Plan: Browser tests. Reviewers: jarek Reviewed By: jarek Subscribers: alexmojaki Differential Revision: https://phab.getgrist.com/D3377
99 lines
3.4 KiB
TypeScript
99 lines
3.4 KiB
TypeScript
import {Observable} from 'grainjs';
|
|
|
|
/**
|
|
* Returns true if storage is functional. In some cass (e.g. when embedded), localStorage may
|
|
* throw errors. If so, we return false. This implementation is the approach taken by store.js.
|
|
*/
|
|
function testStorage(storage: Storage) {
|
|
try {
|
|
const testStr = '__localStorage_test';
|
|
storage.setItem(testStr, testStr);
|
|
const ok = (storage.getItem(testStr) === testStr);
|
|
storage.removeItem(testStr);
|
|
return ok;
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns localStorage if functional, or sessionStorage, or an in-memory storage. The fallbacks
|
|
* help with tests, and may help when Grist is embedded.
|
|
*/
|
|
export function getStorage(): Storage {
|
|
return _storage || (_storage = createStorage());
|
|
}
|
|
|
|
/**
|
|
* Similar to `getStorage`, but always returns sessionStorage (or an in-memory equivalent).
|
|
*/
|
|
export function getSessionStorage(): Storage {
|
|
return _sessionStorage || (_sessionStorage = createSessionStorage());
|
|
}
|
|
|
|
let _storage: Storage|undefined;
|
|
let _sessionStorage: Storage|undefined;
|
|
|
|
function createStorage(): Storage {
|
|
if (typeof localStorage !== 'undefined' && testStorage(localStorage)) {
|
|
return localStorage;
|
|
} else {
|
|
return createSessionStorage();
|
|
}
|
|
}
|
|
|
|
function createSessionStorage(): Storage {
|
|
if (typeof sessionStorage !== 'undefined' && testStorage(sessionStorage)) {
|
|
return sessionStorage;
|
|
} else {
|
|
// Fall back to a Map-based implementation of (non-persistent) sessionStorage.
|
|
return createInMemoryStorage();
|
|
}
|
|
}
|
|
|
|
function createInMemoryStorage(): Storage {
|
|
const values = new Map<string, string>();
|
|
return {
|
|
setItem(key: string, val: string) { values.set(key, val); },
|
|
getItem(key: string) { return values.get(key) ?? null; },
|
|
removeItem(key: string) { values.delete(key); },
|
|
clear() { values.clear(); },
|
|
get length() { return values.size; },
|
|
key(index: number): string|null { throw new Error('Not implemented'); },
|
|
};
|
|
}
|
|
|
|
function getStorageBoolObs(store: Storage, key: string, defValue: boolean) {
|
|
const storedNegation = defValue ? 'false' : 'true';
|
|
const obs = Observable.create(null, store.getItem(key) === storedNegation ? !defValue : defValue);
|
|
obs.addListener((val) => val === defValue ? store.removeItem(key) : store.setItem(key, storedNegation));
|
|
return obs;
|
|
}
|
|
|
|
/**
|
|
* Helper to create a boolean observable whose state is stored in localStorage.
|
|
*
|
|
* Optionally, a default value of true will make the observable start off as true. Note that the
|
|
* same default value should be used for an observable every time it's created.
|
|
*/
|
|
export function localStorageBoolObs(key: string, defValue = false): Observable<boolean> {
|
|
return getStorageBoolObs(getStorage(), key, defValue);
|
|
}
|
|
|
|
/**
|
|
* Similar to `localStorageBoolObs`, but always uses sessionStorage (or an in-memory equivalent).
|
|
*/
|
|
export function sessionStorageBoolObs(key: string, defValue = false): Observable<boolean> {
|
|
return getStorageBoolObs(getSessionStorage(), key, defValue);
|
|
}
|
|
|
|
/**
|
|
* Helper to create a string observable whose state is stored in localStorage.
|
|
*/
|
|
export function localStorageObs(key: string, defaultValue?: string): Observable<string|null> {
|
|
const store = getStorage();
|
|
const obs = Observable.create<string|null>(null, store.getItem(key) ?? defaultValue ?? null);
|
|
obs.addListener((val) => (val === null) ? store.removeItem(key) : store.setItem(key, val));
|
|
return obs;
|
|
}
|