mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
3112433a58
Summary: Dropdown conditions let you specify a predicate formula that's used to filter choices and references in their respective autocomplete dropdown menus. Test Plan: Python and browser tests (WIP). Reviewers: jarek, paulfitz Reviewed By: jarek Subscribers: dsagal, paulfitz Differential Revision: https://phab.getgrist.com/D4235
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import {get as getBrowserGlobals} from 'app/client/lib/browserGlobals';
|
|
import {setupLocale} from 'app/client/lib/localization';
|
|
import {reportError, setErrorNotifier, setUpErrorHandling} from 'app/client/models/errors';
|
|
import {Notifier} from 'app/client/models/NotifyModel';
|
|
import {buildSnackbarDom} from 'app/client/ui/NotifyUI';
|
|
import {addViewportTag} from 'app/client/ui/viewport';
|
|
import {attachCssRootVars} from 'app/client/ui2018/cssVars';
|
|
import {attachTheme} from 'app/client/ui2018/theme';
|
|
import {BaseAPI} from 'app/common/BaseAPI';
|
|
import {dom, DomContents} from 'grainjs';
|
|
|
|
const G = getBrowserGlobals('document', 'window');
|
|
|
|
/**
|
|
* Sets up error handling and global styles, and replaces the DOM body with the
|
|
* result of calling `buildPage`.
|
|
*/
|
|
export function createPage(buildPage: () => DomContents, options: {disableTheme?: boolean} = {}) {
|
|
const {disableTheme} = options;
|
|
|
|
setUpErrorHandling();
|
|
|
|
addViewportTag();
|
|
attachCssRootVars('grist');
|
|
if (!disableTheme) { attachTheme(); }
|
|
setupLocale().catch(reportError);
|
|
|
|
// Add globals needed by test utils.
|
|
G.window.gristApp = {
|
|
testNumPendingApiRequests: () => BaseAPI.numPendingRequests(),
|
|
};
|
|
|
|
const notifier = Notifier.create(null);
|
|
setErrorNotifier(notifier);
|
|
|
|
dom.update(document.body, () => [
|
|
buildPage(),
|
|
buildSnackbarDom(notifier, null),
|
|
]);
|
|
}
|