mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
62a6190970
Summary: Document owners can now remove doc tours by pressing the button located to the right of 'Tour of this Document' in the left panel. Test Plan: Browser test. Reviewers: jarek Reviewed By: jarek Subscribers: jarek Differential Revision: https://phab.getgrist.com/D3202
41 lines
1.7 KiB
TypeScript
41 lines
1.7 KiB
TypeScript
import {localStorageObs} from 'app/client/lib/localStorageObs';
|
|
import {AppModel} from 'app/client/models/AppModel';
|
|
import {UserOrgPrefs} from 'app/common/Prefs';
|
|
import {Computed, Observable} from 'grainjs';
|
|
|
|
/**
|
|
* Creates an observable that returns UserOrgPrefs, and which stores them when set.
|
|
*
|
|
* For anon user, the prefs live in localStorage. Note that the observable isn't actually watching
|
|
* for changes on the server, it will only change when set.
|
|
*/
|
|
export function getUserOrgPrefsObs(appModel: AppModel): Observable<UserOrgPrefs> {
|
|
const savedPrefs = appModel.currentValidUser ? appModel.currentOrg?.userOrgPrefs : undefined;
|
|
if (savedPrefs) {
|
|
const prefsObs = Observable.create<UserOrgPrefs>(null, savedPrefs);
|
|
return Computed.create(null, (use) => use(prefsObs))
|
|
.onWrite(userOrgPrefs => {
|
|
prefsObs.set(userOrgPrefs);
|
|
return appModel.api.updateOrg('current', {userOrgPrefs});
|
|
});
|
|
} else {
|
|
const userId = appModel.currentUser?.id || 0;
|
|
const jsonPrefsObs = localStorageObs(`userOrgPrefs:u=${userId}`);
|
|
return Computed.create(null, jsonPrefsObs, (use, p) => (p && JSON.parse(p) || {}) as UserOrgPrefs)
|
|
.onWrite(userOrgPrefs => {
|
|
jsonPrefsObs.set(JSON.stringify(userOrgPrefs));
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Creates an observable that returns a particular preference value from `prefsObs`, and which
|
|
* stores it when set.
|
|
*/
|
|
export function getUserOrgPrefObs<Name extends keyof UserOrgPrefs>(
|
|
prefsObs: Observable<UserOrgPrefs>, prefName: Name
|
|
): Observable<UserOrgPrefs[Name]> {
|
|
return Computed.create(null, (use) => use(prefsObs)[prefName])
|
|
.onWrite(value => prefsObs.set({...prefsObs.get(), [prefName]: value}));
|
|
}
|