mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
ec157dc469
Summary: Adds initial implementation of dark mode. Preferences for dark mode are available on the account settings page. Dark mode is currently a beta feature as there are still some small bugs to squash and a few remaining UI elements to style. Test Plan: Browser tests. Reviewers: jarek Reviewed By: jarek Subscribers: paulfitz, jarek Differential Revision: https://phab.getgrist.com/D3587
378 lines
14 KiB
TypeScript
378 lines
14 KiB
TypeScript
import {get as getBrowserGlobals} from 'app/client/lib/browserGlobals';
|
|
import {error} from 'app/client/lib/log';
|
|
import {reportError, setErrorNotifier} from 'app/client/models/errors';
|
|
import {urlState} from 'app/client/models/gristUrlState';
|
|
import {Notifier} from 'app/client/models/NotifyModel';
|
|
import {getFlavor, ProductFlavor} from 'app/client/ui/CustomThemes';
|
|
import {buildNewSiteModal, buildUpgradeModal} from 'app/client/ui/ProductUpgrades';
|
|
import {attachCssThemeVars, prefersDarkModeObs} from 'app/client/ui2018/cssVars';
|
|
import {OrgUsageSummary} from 'app/common/DocUsage';
|
|
import {Features, isLegacyPlan, Product} from 'app/common/Features';
|
|
import {GristLoadConfig} from 'app/common/gristUrls';
|
|
import {FullUser} from 'app/common/LoginSessionAPI';
|
|
import {LocalPlugin} from 'app/common/plugin';
|
|
import {UserPrefs} from 'app/common/Prefs';
|
|
import {isOwner} from 'app/common/roles';
|
|
import {getTagManagerScript} from 'app/common/tagManager';
|
|
import {getDefaultThemePrefs, Theme, ThemeAppearance, ThemeColors, ThemePrefs,
|
|
ThemePrefsChecker} from 'app/common/ThemePrefs';
|
|
import {getThemeColors} from 'app/common/Themes';
|
|
import {getGristConfig} from 'app/common/urlUtils';
|
|
import {getOrgName, Organization, OrgError, SUPPORT_EMAIL, UserAPI, UserAPIImpl} from 'app/common/UserAPI';
|
|
import {getUserPrefObs, getUserPrefsObs} from 'app/client/models/UserPrefs';
|
|
import {bundleChanges, Computed, Disposable, Observable, subscribe} from 'grainjs';
|
|
|
|
export {reportError} from 'app/client/models/errors';
|
|
|
|
export type PageType = "doc" | "home" | "billing" | "welcome";
|
|
const G = getBrowserGlobals('document', 'window');
|
|
|
|
// TopAppModel is the part of the app model that persists across org and user switches.
|
|
export interface TopAppModel {
|
|
api: UserAPI;
|
|
isSingleOrg: boolean;
|
|
productFlavor: ProductFlavor;
|
|
currentSubdomain: Observable<string|undefined>;
|
|
|
|
notifier: Notifier;
|
|
plugins: LocalPlugin[];
|
|
|
|
// Everything else gets fully rebuilt when the org/user changes. This is to ensure that
|
|
// different parts of the code aren't using different users/orgs while the switch is pending.
|
|
appObs: Observable<AppModel|null>;
|
|
|
|
orgs: Observable<Organization[]>;
|
|
users: Observable<FullUser[]>;
|
|
|
|
// Reinitialize the app. This is called when org or user changes.
|
|
initialize(): void;
|
|
|
|
// Rebuilds the AppModel and consequently the AppUI, without changing the user or the org.
|
|
reload(): void;
|
|
|
|
/**
|
|
* Returns the UntrustedContentOrigin use settings. Throws if not defined.
|
|
*/
|
|
getUntrustedContentOrigin(): string;
|
|
/**
|
|
* Reloads orgs and accounts for current user.
|
|
*/
|
|
fetchUsersAndOrgs(): Promise<void>;
|
|
}
|
|
|
|
// AppModel is specific to the currently loaded organization and active user. It gets rebuilt when
|
|
// we switch the current organization or the current user.
|
|
export interface AppModel {
|
|
topAppModel: TopAppModel;
|
|
api: UserAPI;
|
|
|
|
currentUser: FullUser|null;
|
|
currentValidUser: FullUser|null; // Like currentUser, but null when anonymous
|
|
|
|
currentOrg: Organization|null; // null if no access to currentSubdomain
|
|
currentOrgName: string; // Our best guess for human-friendly name.
|
|
currentOrgUsage: Observable<OrgUsageSummary|null>;
|
|
isPersonal: boolean; // Is it a personal site?
|
|
isTeamSite: boolean; // Is it a team site?
|
|
isLegacySite: boolean; // Is it a legacy site?
|
|
orgError?: OrgError; // If currentOrg is null, the error that caused it.
|
|
|
|
currentProduct: Product|null; // The current org's product.
|
|
currentFeatures: Features; // Features of the current org's product.
|
|
|
|
userPrefsObs: Observable<UserPrefs>;
|
|
themePrefs: Observable<ThemePrefs>;
|
|
currentTheme: Computed<Theme>;
|
|
|
|
pageType: Observable<PageType>;
|
|
|
|
notifier: Notifier;
|
|
planName: string|null;
|
|
|
|
refreshOrgUsage(): Promise<void>;
|
|
showUpgradeModal(): void;
|
|
showNewSiteModal(): void;
|
|
isBillingManager(): boolean; // If user is a billing manager for this org
|
|
isSupport(): boolean; // If user is a Support user
|
|
}
|
|
|
|
export class TopAppModelImpl extends Disposable implements TopAppModel {
|
|
public readonly isSingleOrg: boolean;
|
|
public readonly productFlavor: ProductFlavor;
|
|
|
|
public readonly currentSubdomain = Computed.create(this, urlState().state, (use, s) => s.org);
|
|
public readonly notifier = Notifier.create(this);
|
|
public readonly appObs = Observable.create<AppModel|null>(this, null);
|
|
public readonly orgs = Observable.create<Organization[]>(this, []);
|
|
public readonly users = Observable.create<FullUser[]>(this, []);
|
|
public readonly plugins: LocalPlugin[] = [];
|
|
private readonly _gristConfig?: GristLoadConfig;
|
|
|
|
constructor(
|
|
window: {gristConfig?: GristLoadConfig},
|
|
public readonly api: UserAPI = new UserAPIImpl(getHomeUrl()),
|
|
) {
|
|
super();
|
|
setErrorNotifier(this.notifier);
|
|
this.isSingleOrg = Boolean(window.gristConfig && window.gristConfig.singleOrg);
|
|
this.productFlavor = getFlavor(window.gristConfig && window.gristConfig.org);
|
|
this._gristConfig = window.gristConfig;
|
|
|
|
// Initially, and on any change to subdomain, call initialize() to get the full Organization
|
|
// and the FullUser to use for it (the user may change when switching orgs).
|
|
this.autoDispose(subscribe(this.currentSubdomain, (use) => this.initialize()));
|
|
this.plugins = this._gristConfig?.plugins || [];
|
|
|
|
this.fetchUsersAndOrgs().catch(reportError);
|
|
}
|
|
|
|
public initialize(): void {
|
|
this._doInitialize().catch(reportError);
|
|
}
|
|
|
|
// Rebuilds the AppModel and consequently the AppUI, etc, without changing the user or the org.
|
|
public reload(): void {
|
|
const app = this.appObs.get();
|
|
if (app) {
|
|
const {currentUser, currentOrg, orgError} = app;
|
|
AppModelImpl.create(this.appObs, this, currentUser, currentOrg, orgError);
|
|
}
|
|
}
|
|
|
|
public getUntrustedContentOrigin() {
|
|
if (G.window.isRunningUnderElectron) {
|
|
// when loaded within webviews it is safe to serve plugin's content from the same domain
|
|
return "";
|
|
}
|
|
|
|
const origin = this._gristConfig?.pluginUrl;
|
|
if (!origin) {
|
|
throw new Error("Missing untrustedContentOrigin configuration");
|
|
}
|
|
if (origin.match(/:[0-9]+$/)) {
|
|
// Port number already specified, no need to add.
|
|
return origin;
|
|
}
|
|
return origin + ":" + G.window.location.port;
|
|
}
|
|
|
|
public async fetchUsersAndOrgs() {
|
|
const data = await this.api.getSessionAll();
|
|
if (this.isDisposed()) { return; }
|
|
bundleChanges(() => {
|
|
this.users.set(data.users);
|
|
this.orgs.set(data.orgs);
|
|
});
|
|
}
|
|
|
|
private async _doInitialize() {
|
|
this.appObs.set(null);
|
|
try {
|
|
const {user, org, orgError} = await this.api.getSessionActive();
|
|
if (this.isDisposed()) { return; }
|
|
if (org) {
|
|
// Check that our domain matches what the api returns.
|
|
const state = urlState().state.get();
|
|
if (state.org !== org.domain && org.domain !== null) {
|
|
// If not, redirect. This is to allow vanity domains
|
|
// to "stick" only if paid for.
|
|
await urlState().pushUrl({...state, org: org.domain});
|
|
}
|
|
if (org.billingAccount && org.billingAccount.product &&
|
|
org.billingAccount.product.name === 'suspended') {
|
|
this.notifier.createUserMessage(
|
|
'This team site is suspended. Documents can be read, but not modified.',
|
|
{actions: ['renew', 'personal']}
|
|
);
|
|
}
|
|
}
|
|
AppModelImpl.create(this.appObs, this, user, org, orgError);
|
|
} catch (err) {
|
|
// tslint:disable-next-line:no-console
|
|
console.log(`getSessionActive() failed: ${err}`);
|
|
if (this.isDisposed()) { return; }
|
|
AppModelImpl.create(this.appObs, this, null, null, {error: err.message, status: err.status || 500});
|
|
}
|
|
}
|
|
}
|
|
|
|
export class AppModelImpl extends Disposable implements AppModel {
|
|
public readonly api: UserAPI = this.topAppModel.api;
|
|
|
|
// Compute currentValidUser, turning anonymous into null.
|
|
public readonly currentValidUser: FullUser|null =
|
|
this.currentUser && !this.currentUser.anonymous ? this.currentUser : null;
|
|
|
|
// Figure out the org name, or blank if details are unavailable.
|
|
public readonly currentOrgName = getOrgNameOrGuest(this.currentOrg, this.currentUser);
|
|
|
|
public readonly currentOrgUsage: Observable<OrgUsageSummary|null> = Observable.create(this, null);
|
|
|
|
public readonly currentProduct = this.currentOrg?.billingAccount?.product ?? null;
|
|
public readonly currentFeatures = this.currentProduct?.features ?? {};
|
|
|
|
public readonly isPersonal = Boolean(this.currentOrg?.owner);
|
|
public readonly isTeamSite = Boolean(this.currentOrg) && !this.isPersonal;
|
|
public readonly isLegacySite = Boolean(this.currentProduct && isLegacyPlan(this.currentProduct.name));
|
|
|
|
public readonly userPrefsObs = getUserPrefsObs(this);
|
|
public readonly themePrefs = getUserPrefObs(this.userPrefsObs, 'theme', {
|
|
defaultValue: getDefaultThemePrefs(),
|
|
checker: ThemePrefsChecker,
|
|
}) as Observable<ThemePrefs>;
|
|
public readonly currentTheme = this._getCurrentThemeObs();
|
|
|
|
// Get the current PageType from the URL.
|
|
public readonly pageType: Observable<PageType> = Computed.create(this, urlState().state,
|
|
(use, state) => (state.doc ? "doc" : (state.billing ? "billing" : (state.welcome ? "welcome" : "home"))));
|
|
|
|
public readonly notifier = this.topAppModel.notifier;
|
|
|
|
constructor(
|
|
public readonly topAppModel: TopAppModel,
|
|
public readonly currentUser: FullUser|null,
|
|
public readonly currentOrg: Organization|null,
|
|
public readonly orgError?: OrgError,
|
|
) {
|
|
super();
|
|
|
|
this._applyTheme();
|
|
this.autoDispose(this.currentTheme.addListener(() => this._applyTheme()));
|
|
|
|
this._recordSignUpIfIsNewUser();
|
|
|
|
const state = urlState().state.get();
|
|
if (state.createTeam) {
|
|
// Remove params from the URL.
|
|
urlState().pushUrl({createTeam: false, params: {}}, {avoidReload: true, replace: true}).catch(() => {});
|
|
this.showNewSiteModal(state.params?.planType);
|
|
}
|
|
}
|
|
|
|
public get planName() {
|
|
return this.currentProduct?.name ?? null;
|
|
}
|
|
|
|
public async showUpgradeModal() {
|
|
if (this.planName && this.currentOrg) {
|
|
if (this.isPersonal) {
|
|
this.showNewSiteModal();
|
|
} else if (this.isTeamSite) {
|
|
buildUpgradeModal(this, this.planName);
|
|
} else {
|
|
throw new Error("Unexpected state");
|
|
}
|
|
}
|
|
}
|
|
|
|
public showNewSiteModal(selectedPlan?: string) {
|
|
if (this.planName) {
|
|
buildNewSiteModal(this, {
|
|
planName: this.planName,
|
|
selectedPlan,
|
|
onCreate: () => this.topAppModel.fetchUsersAndOrgs().catch(reportError)
|
|
});
|
|
}
|
|
}
|
|
|
|
public isSupport() {
|
|
return this.currentValidUser?.email === SUPPORT_EMAIL;
|
|
}
|
|
|
|
public isBillingManager() {
|
|
return Boolean(this.currentOrg?.billingAccount?.isManager);
|
|
}
|
|
|
|
/**
|
|
* Fetch and update the current org's usage.
|
|
*/
|
|
public async refreshOrgUsage() {
|
|
const currentOrg = this.currentOrg;
|
|
if (!isOwner(currentOrg)) {
|
|
// Note: getOrgUsageSummary already checks for owner access; we do an early return
|
|
// here to skip making unnecessary API calls.
|
|
return;
|
|
}
|
|
|
|
const usage = await this.api.getOrgUsageSummary(currentOrg.id);
|
|
if (!this.isDisposed()) {
|
|
this.currentOrgUsage.set(usage);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* If the current user is a new user, record a sign-up event via Google Tag Manager.
|
|
*/
|
|
private _recordSignUpIfIsNewUser() {
|
|
const isNewUser = this.userPrefsObs.get().recordSignUpEvent;
|
|
if (!isNewUser) { return; }
|
|
|
|
// If Google Tag Manager isn't configured, don't record anything.
|
|
const {tagManagerId} = getGristConfig();
|
|
if (!tagManagerId) { return; }
|
|
|
|
let dataLayer = (window as any).dataLayer;
|
|
if (!dataLayer) {
|
|
// Load the Google Tag Manager script into the document.
|
|
const script = document.createElement('script');
|
|
script.innerHTML = getTagManagerScript(tagManagerId);
|
|
document.head.appendChild(script);
|
|
dataLayer = (window as any).dataLayer;
|
|
if (!dataLayer) {
|
|
error(`_recordSignUpIfIsNewUser() failed to load Google Tag Manager`);
|
|
}
|
|
}
|
|
|
|
// Send the sign-up event, and remove the recordSignUpEvent flag from preferences.
|
|
dataLayer.push({event: 'new-sign-up'});
|
|
getUserPrefObs(this.userPrefsObs, 'recordSignUpEvent').set(undefined);
|
|
}
|
|
|
|
private _getCurrentThemeObs() {
|
|
return Computed.create(this, this.themePrefs, prefersDarkModeObs(),
|
|
(_use, themePrefs, prefersDarkMode) => {
|
|
let appearance: ThemeAppearance;
|
|
if (!themePrefs.syncWithOS) {
|
|
appearance = themePrefs.appearance;
|
|
} else {
|
|
appearance = prefersDarkMode ? 'dark' : 'light';
|
|
}
|
|
|
|
const nameOrColors = themePrefs.colors[appearance];
|
|
let colors: ThemeColors;
|
|
if (typeof nameOrColors === 'string') {
|
|
colors = getThemeColors(nameOrColors);
|
|
} else {
|
|
colors = nameOrColors;
|
|
}
|
|
|
|
return {appearance, colors};
|
|
},
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Applies a theme based on the user's current theme preferences.
|
|
*/
|
|
private _applyTheme() {
|
|
// Custom CSS is incompatible with custom themes.
|
|
if (getGristConfig().enableCustomCss) { return; }
|
|
|
|
attachCssThemeVars(this.currentTheme.get());
|
|
}
|
|
}
|
|
|
|
export function getHomeUrl(): string {
|
|
const {host, protocol} = window.location;
|
|
const gristConfig: any = (window as any).gristConfig;
|
|
return (gristConfig && gristConfig.homeUrl) || `${protocol}//${host}`;
|
|
}
|
|
|
|
export function getOrgNameOrGuest(org: Organization|null, user: FullUser|null) {
|
|
if (!org) { return ''; }
|
|
if (user && user.anonymous && org.owner && org.owner.id === user.id) {
|
|
return "@Guest";
|
|
}
|
|
return getOrgName(org);
|
|
}
|