2022-10-17 09:47:16 +00:00
|
|
|
import {getGristConfig} from 'app/common/urlUtils';
|
|
|
|
import {get as getBrowserGlobals} from 'app/client/lib/browserGlobals';
|
2023-08-29 14:50:42 +00:00
|
|
|
import {localStorageBoolObs, localStorageJsonObs} from 'app/client/lib/localStorageObs';
|
2022-10-17 09:47:16 +00:00
|
|
|
import {Observable} from 'grainjs';
|
|
|
|
|
2023-08-08 09:36:02 +00:00
|
|
|
/**
|
|
|
|
* Are comments enabled by feature flag.
|
|
|
|
*/
|
2022-10-17 09:47:16 +00:00
|
|
|
export function COMMENTS(): Observable<boolean> {
|
|
|
|
const G = getBrowserGlobals('document', 'window');
|
|
|
|
if (!G.window.COMMENTS) {
|
|
|
|
G.window.COMMENTS = localStorageBoolObs('feature-comments', Boolean(getGristConfig().featureComments));
|
|
|
|
}
|
|
|
|
return G.window.COMMENTS;
|
|
|
|
}
|
2023-03-23 18:22:28 +00:00
|
|
|
|
2023-08-08 09:36:02 +00:00
|
|
|
/**
|
|
|
|
* Does backend supports AI assistant.
|
|
|
|
*/
|
|
|
|
export function HAS_FORMULA_ASSISTANT() {
|
|
|
|
return Boolean(getGristConfig().featureFormulaAssistant);
|
2023-03-23 18:22:28 +00:00
|
|
|
}
|
2023-08-18 20:14:42 +00:00
|
|
|
|
|
|
|
export function WHICH_FORMULA_ASSISTANT() {
|
|
|
|
return getGristConfig().assistantService;
|
|
|
|
}
|
2023-08-29 14:50:42 +00:00
|
|
|
|
|
|
|
export function PERMITTED_CUSTOM_WIDGETS(): Observable<string[]> {
|
|
|
|
const G = getBrowserGlobals('document', 'window');
|
|
|
|
if (!G.window.PERMITTED_CUSTOM_WIDGETS) {
|
|
|
|
G.window.PERMITTED_CUSTOM_WIDGETS =
|
|
|
|
localStorageJsonObs('PERMITTED_CUSTOM_WIDGETS', getGristConfig().permittedCustomWidgets || []);
|
|
|
|
}
|
|
|
|
return G.window.PERMITTED_CUSTOM_WIDGETS;
|
|
|
|
}
|