mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
6cb8614017
Summary: - Updates styling of form submitted page. - Tweaks styling of checkboxes, labels, and questions on form page. - Adds new form 404 page. - Adds checkbox to not show warning again when publishing or un-publishing a form. - Excludes formula, hidden, and attachment columns in submitted form data. - Adds placeholder text to form configuration inputs. - Improves dark mode styling in Form widget. - Updates default title and description of new forms. - Updates styling of Form widget buttons. - Fixes form success text input handling. Test Plan: Browser tests. Reviewers: jarek Reviewed By: jarek Differential Revision: https://phab.getgrist.com/D4170
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
import {get as getBrowserGlobals} from 'app/client/lib/browserGlobals';
|
|
import {setupLocale} from 'app/client/lib/localization';
|
|
import {AppModel, newUserAPIImpl, TopAppModelImpl} from 'app/client/models/AppModel';
|
|
import {setUpErrorHandling} from 'app/client/models/errors';
|
|
import {buildSnackbarDom} from 'app/client/ui/NotifyUI';
|
|
import {addViewportTag} from 'app/client/ui/viewport';
|
|
import {attachCssRootVars} from 'app/client/ui2018/cssVars';
|
|
import {BaseAPI} from 'app/common/BaseAPI';
|
|
import {dom, DomContents} from 'grainjs';
|
|
|
|
const G = getBrowserGlobals('document', 'window');
|
|
|
|
export interface SetUpPageOptions {
|
|
/** Defaults to true. */
|
|
attachTheme?: boolean;
|
|
}
|
|
|
|
/**
|
|
* Sets up error handling and global styles, and replaces the DOM body with
|
|
* the result of calling `buildPage`.
|
|
*/
|
|
export function setUpPage(
|
|
buildPage: (appModel: AppModel) => DomContents,
|
|
options: SetUpPageOptions = {}
|
|
) {
|
|
const {attachTheme = true} = options;
|
|
setUpErrorHandling();
|
|
const topAppModel = TopAppModelImpl.create(null, {}, newUserAPIImpl(), {attachTheme});
|
|
attachCssRootVars(topAppModel.productFlavor);
|
|
addViewportTag();
|
|
|
|
void setupLocale();
|
|
|
|
// Add globals needed by test utils.
|
|
G.window.gristApp = {
|
|
testNumPendingApiRequests: () => BaseAPI.numPendingRequests(),
|
|
};
|
|
|
|
dom.update(document.body, dom.maybe(topAppModel.appObs, (appModel) => [
|
|
buildPage(appModel),
|
|
buildSnackbarDom(appModel.notifier, appModel),
|
|
]));
|
|
}
|