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
63 lines
1.8 KiB
TypeScript
63 lines
1.8 KiB
TypeScript
import {AppModel} from 'app/client/models/AppModel';
|
|
import * as css from 'app/client/ui/AccountPageCss';
|
|
import {labeledSquareCheckbox} from 'app/client/ui2018/checkbox';
|
|
import {select} from 'app/client/ui2018/menus';
|
|
import {ThemeAppearance} from 'app/common/ThemePrefs';
|
|
import {Computed, Disposable, dom, makeTestId, styled} from 'grainjs';
|
|
|
|
const testId = makeTestId('test-theme-config-');
|
|
|
|
export class ThemeConfig extends Disposable {
|
|
private _themePrefs = this._appModel.themePrefs;
|
|
|
|
private _appearance = Computed.create(this, this._themePrefs, (_use, prefs) => {
|
|
return prefs.appearance;
|
|
}).onWrite((value) => this._updateAppearance(value));
|
|
|
|
private _syncWithOS = Computed.create(this, this._themePrefs, (_use, prefs) => {
|
|
return prefs.syncWithOS;
|
|
}).onWrite((value) => this._updateSyncWithOS(value));
|
|
|
|
constructor(private _appModel: AppModel) {
|
|
super();
|
|
}
|
|
|
|
public buildDom() {
|
|
return dom('div',
|
|
css.subHeader('Appearance ', css.betaTag('Beta')),
|
|
css.dataRow(
|
|
cssAppearanceSelect(
|
|
select(
|
|
this._appearance,
|
|
[
|
|
{value: 'light', label: 'Light'},
|
|
{value: 'dark', label: 'Dark'},
|
|
],
|
|
),
|
|
testId('appearance'),
|
|
),
|
|
),
|
|
css.dataRow(
|
|
labeledSquareCheckbox(
|
|
this._syncWithOS,
|
|
'Switch appearance automatically to match system',
|
|
testId('sync-with-os'),
|
|
),
|
|
),
|
|
testId('container'),
|
|
);
|
|
}
|
|
|
|
private _updateAppearance(appearance: ThemeAppearance) {
|
|
this._themePrefs.set({...this._themePrefs.get(), appearance});
|
|
}
|
|
|
|
private _updateSyncWithOS(syncWithOS: boolean) {
|
|
this._themePrefs.set({...this._themePrefs.get(), syncWithOS});
|
|
}
|
|
}
|
|
|
|
const cssAppearanceSelect = styled('div', `
|
|
width: 120px;
|
|
`);
|