Files
outline/app/stores/UiStore.ts
dependabot[bot] 3d9a8be867 chore(deps-dev): bump typescript from 4.4.4 to 4.7.4 (#3866)
* chore(deps-dev): bump typescript from 4.4.4 to 4.7.4

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.4.4 to 4.7.4.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v4.4.4...v4.7.4)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* tsc

* tsc

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tom Moor <tom.moor@gmail.com>
2022-07-25 11:21:04 -07:00

247 lines
5.1 KiB
TypeScript

import { action, autorun, computed, observable } from "mobx";
import { light as defaultTheme } from "@shared/styles/theme";
import Document from "~/models/Document";
import type { ConnectionStatus } from "~/scenes/Document/components/MultiplayerEditor";
import Storage from "~/utils/Storage";
const UI_STORE = "UI_STORE";
export enum Theme {
Light = "light",
Dark = "dark",
System = "system",
}
export enum SystemTheme {
Light = "light",
Dark = "dark",
}
class UiStore {
// has the user seen the prompt to change the UI language and actioned it
@observable
languagePromptDismissed: boolean | undefined;
// theme represents the users UI preference (defaults to system)
@observable
theme: Theme;
// systemTheme represents the system UI theme (Settings -> General in macOS)
@observable
systemTheme: SystemTheme;
@observable
activeDocumentId: string | undefined;
@observable
activeCollectionId: string | undefined;
@observable
observingUserId: string | undefined;
@observable
commandBarOpenedFromSidebar = false;
@observable
progressBarVisible = false;
@observable
isEditing = false;
@observable
tocVisible = false;
@observable
mobileSidebarVisible = false;
@observable
sidebarWidth: number;
@observable
sidebarCollapsed = false;
@observable
sidebarIsResizing = false;
@observable
multiplayerStatus: ConnectionStatus;
constructor() {
// Rehydrate
const data: Partial<UiStore> = Storage.get(UI_STORE) || {};
// system theme listeners
if (window.matchMedia) {
const colorSchemeQueryList = window.matchMedia(
"(prefers-color-scheme: dark)"
);
const setSystemTheme = (event: MediaQueryListEvent | MediaQueryList) => {
this.systemTheme = event.matches ? SystemTheme.Dark : SystemTheme.Light;
};
setSystemTheme(colorSchemeQueryList);
if (colorSchemeQueryList.addListener) {
colorSchemeQueryList.addListener(setSystemTheme);
}
}
// persisted keys
this.languagePromptDismissed = data.languagePromptDismissed;
this.sidebarCollapsed = !!data.sidebarCollapsed;
this.sidebarWidth = data.sidebarWidth || defaultTheme.sidebarWidth;
this.tocVisible = !!data.tocVisible;
this.theme = data.theme || Theme.System;
autorun(() => {
Storage.set(UI_STORE, this.asJson);
});
}
@action
setTheme = (theme: Theme) => {
this.theme = theme;
Storage.set("theme", this.theme);
};
@action
setLanguagePromptDismissed = () => {
this.languagePromptDismissed = true;
};
@action
setActiveDocument = (document: Document | string): void => {
if (typeof document === "string") {
this.activeDocumentId = document;
this.observingUserId = undefined;
return;
}
this.activeDocumentId = document.id;
this.observingUserId = undefined;
if (document.isActive) {
this.activeCollectionId = document.collectionId;
}
};
@action
setMultiplayerStatus = (status: ConnectionStatus): void => {
this.multiplayerStatus = status;
};
@action
setSidebarResizing = (sidebarIsResizing: boolean): void => {
this.sidebarIsResizing = sidebarIsResizing;
};
@action
setActiveCollection = (collectionId: string | undefined): void => {
this.activeCollectionId = collectionId;
};
@action
setObservingUser = (userId: string | undefined): void => {
this.observingUserId = userId;
};
@action
clearActiveDocument = (): void => {
this.activeDocumentId = undefined;
this.observingUserId = undefined;
};
@action
setSidebarWidth = (sidebarWidth: number): void => {
this.sidebarWidth = sidebarWidth;
};
@action
collapseSidebar = () => {
this.sidebarCollapsed = true;
};
@action
expandSidebar = () => {
this.sidebarCollapsed = false;
};
@action
toggleCollapsedSidebar = () => {
this.sidebarCollapsed = !this.sidebarCollapsed;
};
@action
showTableOfContents = () => {
this.tocVisible = true;
};
@action
hideTableOfContents = () => {
this.tocVisible = false;
};
@action
enableEditMode = () => {
this.isEditing = true;
};
@action
disableEditMode = () => {
this.isEditing = false;
};
@action
enableProgressBar = () => {
this.progressBarVisible = true;
};
@action
disableProgressBar = () => {
this.progressBarVisible = false;
};
@action
toggleMobileSidebar = () => {
this.mobileSidebarVisible = !this.mobileSidebarVisible;
};
@action
commandBarOpened = () => {
this.commandBarOpenedFromSidebar = true;
};
@action
commandBarClosed = () => {
this.commandBarOpenedFromSidebar = false;
};
@action
hideMobileSidebar = () => {
this.mobileSidebarVisible = false;
};
@computed
get resolvedTheme(): Theme | SystemTheme {
if (this.theme === "system") {
return this.systemTheme;
}
return this.theme;
}
@computed
get asJson() {
return {
tocVisible: this.tocVisible,
sidebarCollapsed: this.sidebarCollapsed,
sidebarWidth: this.sidebarWidth,
languagePromptDismissed: this.languagePromptDismissed,
theme: this.theme,
};
}
}
export default UiStore;