/* eslint-disable jsx-a11y/no-static-element-interactions */ /* eslint-disable jsx-a11y/click-events-have-key-events */ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { Button, ColorPicker, Dropdown, DropdownType, EditableText, Group, NumberDropdown, Size, Toggle, ToggleType, Type } from 'browndash-components'; import { action, computed, makeObservable, observable, reaction, runInAction } from 'mobx'; import { observer } from 'mobx-react'; import * as React from 'react'; import { BsGoogle } from 'react-icons/bs'; import { FaFillDrip, FaPalette } from 'react-icons/fa'; import { ClientUtils, addStyleSheet, addStyleSheetRule } from '../../ClientUtils'; import { Doc } from '../../fields/Doc'; import { DashVersion } from '../../fields/DocSymbols'; import { BoolCast, Cast, NumCast, StrCast } from '../../fields/Types'; import { DocServer } from '../DocServer'; import { Networking } from '../Network'; import { GoogleAuthenticationManager } from '../apis/GoogleAuthenticationManager'; import { MainViewModal } from '../views/MainViewModal'; import { GroupManager } from './GroupManager'; import './SettingsManager.scss'; import { SnappingManager, freeformScrollMode } from './SnappingManager'; import { undoable } from './UndoManager'; export enum ColorScheme { Dark = 'Dark', Light = 'Light', Custom = 'Custom', CoolBlue = 'CoolBlue', Cupcake = 'Cupcake', } @observer export class SettingsManager extends React.Component<{}> { // eslint-disable-next-line no-use-before-define public static Instance: SettingsManager; static _settingsStyle = addStyleSheet(); @observable private _passwordResultText = ''; @observable private _playgroundMode = false; @observable private _curr_password = ''; @observable private _new_password = ''; @observable private _new_confirm = ''; @observable private _activeTab = 'Accounts'; @observable private _isOpen = false; private googleAuthorize = action(() => GoogleAuthenticationManager.Instance.fetchOrGenerateAccessToken(true)); public closeMgr = action(() => { this._isOpen = false; }); // eslint-disable-next-line react/no-unused-class-component-methods public openMgr = action(() => { this._isOpen = true; }); private matchSystem = undoable(() => { if (Doc.UserDoc().userThemeSystem) { if (window.matchMedia('(prefers-color-scheme: dark)').matches) this.changeColorScheme(ColorScheme.Dark); if (window.matchMedia('(prefers-color-scheme: light)').matches) this.changeColorScheme(ColorScheme.Light); } }, 'match system theme'); private setFreeformScrollMode = undoable((mode: string) => { Doc.UserDoc().freeformScrollMode = mode; }, 'set scroll mode'); private selectUserMode = undoable((mode: string) => { Doc.noviceMode = mode === 'Novice'; }, 'change user mode'); private changeFontFamily = undoable((font: string) => { Doc.UserDoc().fontFamily = font; }, 'change font family'); private switchUserBackgroundColor = undoable((color: string) => { Doc.UserDoc().userBackgroundColor = color; addStyleSheetRule(SettingsManager._settingsStyle, 'lm_header', { background: `${color} !important` }); }, 'change background color'); private switchUserColor = undoable((color: string) => { Doc.UserDoc().userColor = color; }, 'change user color'); switchUserVariantColor = undoable((color: string) => { Doc.UserDoc().userVariantColor = color; }, 'change variant color'); userThemeSystemToggle = undoable(() => { Doc.UserDoc().userThemeSystem = !Doc.UserDoc().userThemeSystem; this.matchSystem(); }, 'change theme color'); playgroundModeToggle = undoable( action(() => { this._playgroundMode = !this._playgroundMode; if (this._playgroundMode) { DocServer.Control.makeReadOnly(); addStyleSheetRule(SettingsManager._settingsStyle, 'topbar-inner-container', { background: 'red !important' }); } else ClientUtils.CurrentUserEmail() !== 'guest' && DocServer.Control.makeEditable(); }), 'set playgorund mode' ); changeColorScheme = undoable( action((scheme: string) => { Doc.UserDoc().userTheme = scheme; switch (scheme) { case ColorScheme.Light: this.switchUserColor('#323232'); this.switchUserBackgroundColor('#DFDFDF'); this.switchUserVariantColor('#BDDDF5'); break; case ColorScheme.Dark: this.switchUserColor('#DFDFDF'); this.switchUserBackgroundColor('#323232'); this.switchUserVariantColor('#4476F7'); break; case ColorScheme.CoolBlue: this.switchUserColor('#ADEAFF'); this.switchUserBackgroundColor('#060A15'); this.switchUserVariantColor('#3C51FF'); break; case ColorScheme.Cupcake: this.switchUserColor('#3BC7FF'); this.switchUserBackgroundColor('#fffdf7'); this.switchUserVariantColor('#FFD7F3'); break; case ColorScheme.Custom: break; default: } }), 'change color scheme' ); constructor(props: {}) { super(props); makeObservable(this); SettingsManager.Instance = this; this.matchSystem(); window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => { if (Doc.UserDoc().userThemeSystem) { if (window.matchMedia('(prefers-color-scheme: dark)').matches) this.changeColorScheme(ColorScheme.Dark); if (window.matchMedia('(prefers-color-scheme: light)').matches) this.changeColorScheme(ColorScheme.Light); } // undefined means ColorScheme.Light until all CSS is updated with values for each color scheme (e.g., see MainView.scss, DocumentDecorations.scss) }); reaction( () => [SettingsManager.userBackgroundColor, SettingsManager.userColor, SettingsManager.userVariantColor], ([back, user, variant]) => { SnappingManager.userBackgroundColor = back; SnappingManager.userVariantColor = variant; SnappingManager.userColor = user; }, { fireImmediately: true } ); SnappingManager.SettingsStyle = SettingsManager._settingsStyle; } @computed public static get userColor() { return StrCast(Doc.UserDoc().userColor); } @computed public static get userVariantColor() { return StrCast(Doc.UserDoc().userVariantColor); } @computed public static get userBackgroundColor() { return StrCast(Doc.UserDoc().userBackgroundColor); } @computed get colorsContent() { const schemeMap = Array.from(Object.keys(ColorScheme)); const userTheme = StrCast(Doc.UserDoc().userTheme); return (