import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { Button, ColorPicker, Dropdown, DropdownType, EditableText, Group, NumberDropdown, Size, Toggle, ToggleType, Type } from 'browndash-components'; import { action, computed, observable, 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 { Doc } from '../../fields/Doc'; import { DashVersion } from '../../fields/DocSymbols'; import { BoolCast, Cast, NumCast, StrCast } from '../../fields/Types'; import { addStyleSheet, addStyleSheetRule, Utils } from '../../Utils'; import { GoogleAuthenticationManager } from '../apis/GoogleAuthenticationManager'; import { DocServer } from '../DocServer'; import { Networking } from '../Network'; import { MainViewModal } from '../views/MainViewModal'; import { GroupManager } from './GroupManager'; import './SettingsManager.scss'; import { undoBatch } from './UndoManager'; export enum ColorScheme { Dark = 'Dark', Light = 'Light', Custom = 'Custom', CoolBlue = 'CoolBlue', Cupcake = 'Cupcake', } export enum freeformScrollMode { Pan = 'pan', Zoom = 'zoom', } @observer export class SettingsManager extends React.Component<{}> { public static Instance: SettingsManager; static _settingsStyle = addStyleSheet(); @observable public isOpen = false; @observable private passwordResultText = ''; @observable private playgroundMode = false; @observable private curr_password = ''; @observable private new_password = ''; @observable private new_confirm = ''; @observable activeTab = 'Accounts'; @observable public static propertiesWidth: number = 0; @observable public static headerBarHeight: number = 0; constructor(props: {}) { super(props); SettingsManager.Instance = this; this.matchSystem(); window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', e => { 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) }); } matchSystem = () => { 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); } }; public close = action(() => (this.isOpen = false)); public open = action(() => (this.isOpen = true)); private googleAuthorize = action(() => GoogleAuthenticationManager.Instance.fetchOrGenerateAccessToken(true)); private changePassword = async () => { if (!(this.curr_password && this.new_password && this.new_confirm)) { runInAction(() => (this.passwordResultText = "Error: Hey, we're missing some fields!")); } else { const passwordBundle = { curr_pass: this.curr_password, new_pass: this.new_password, new_confirm: this.new_confirm }; const { error } = await Networking.PostToServer('/internalResetPassword', passwordBundle); runInAction(() => (this.passwordResultText = error ? 'Error: ' + error[0].msg + '...' : 'Password successfully updated!')); } }; @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); } @undoBatch selectUserMode = action((mode: string) => (Doc.noviceMode = mode === 'Novice')); @undoBatch changelayout_showTitle = action((e: React.ChangeEvent) => (Doc.UserDoc().layout_showTitle = (e.currentTarget as any).value ? 'title' : undefined)); @undoBatch changeFontFamily = action((font: string) => (Doc.UserDoc().fontFamily = font)); @undoBatch changeFontSize = action((val: number) => (Doc.UserDoc().fontSize = val)); @undoBatch switchUserBackgroundColor = action((color: string) => { Doc.UserDoc().userBackgroundColor = color; addStyleSheetRule(SettingsManager._settingsStyle, 'lm_header', { background: `${color} !important` }); }); @undoBatch switchUserColor = action((color: string) => (Doc.UserDoc().userColor = color)); @undoBatch switchUserVariantColor = action((color: string) => (Doc.UserDoc().userVariantColor = color)); @undoBatch userThemeSystemToggle = action(() => { Doc.UserDoc().userThemeSystem = !Doc.UserDoc().userThemeSystem; this.matchSystem(); }); @undoBatch playgroundModeToggle = action(() => { this.playgroundMode = !this.playgroundMode; if (this.playgroundMode) { DocServer.Control.makeReadOnly(); addStyleSheetRule(SettingsManager._settingsStyle, 'topbar-inner-container', { background: 'red !important' }); } else Doc.CurrentUserEmail !== 'guest' && DocServer.Control.makeEditable(); }); @undoBatch @action changeColorScheme = 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; } }); @computed get colorsContent() { const schemeMap = Array.from(Object.keys(ColorScheme)); const userTheme = StrCast(Doc.UserDoc().userTheme); return (
{ this.changeColorScheme(scheme as string); Doc.UserDoc().userThemeSystem = false; }} items={Object.keys(ColorScheme).map((scheme, i) => ({ text: schemeMap[i].replace(/([a-z])([A-Z])/, '$1 $2'), val: scheme, }))} dropdownType={DropdownType.SELECT} color={SettingsManager.userColor} fillWidth /> {userTheme === ColorScheme.Custom && ( } selectedColor={SettingsManager.userColor} setSelectedColor={this.switchUserColor} setFinalColor={this.switchUserColor} /> } selectedColor={SettingsManager.userBackgroundColor} setSelectedColor={this.switchUserBackgroundColor} setFinalColor={this.switchUserBackgroundColor} /> } selectedColor={SettingsManager.userVariantColor} setSelectedColor={this.switchUserVariantColor} setFinalColor={this.switchUserVariantColor} /> )}
); } @computed get formatsContent() { return (
(Doc.UserDoc().layout_showTitle = Doc.UserDoc().layout_showTitle ? undefined : 'author_date')} toggleStatus={Doc.UserDoc().layout_showTitle !== undefined} size={Size.XSMALL} color={SettingsManager.userColor} /> (Doc.UserDoc()['documentLinksButton-fullMenu'] = !Doc.UserDoc()['documentLinksButton-fullMenu'])} toggleStatus={BoolCast(Doc.UserDoc()['documentLinksButton-fullMenu'])} size={Size.XSMALL} color={SettingsManager.userColor} /> Doc.SetShowIconLabels(!Doc.GetShowIconLabels())} toggleStatus={Doc.GetShowIconLabels()} size={Size.XSMALL} color={SettingsManager.userColor} /> Doc.SetRecognizeGestures(!Doc.GetRecognizeGestures())} toggleStatus={Doc.GetRecognizeGestures()} size={Size.XSMALL} color={SettingsManager.userColor} /> (Doc.UserDoc().activeInkHideTextLabels = !Doc.UserDoc().activeInkHideTextLabels)} toggleStatus={BoolCast(Doc.UserDoc().activeInkHideTextLabels)} size={Size.XSMALL} color={SettingsManager.userColor} /> (Doc.UserDoc().openInkInLightbox = !Doc.UserDoc().openInkInLightbox)} toggleStatus={BoolCast(Doc.UserDoc().openInkInLightbox)} size={Size.XSMALL} color={SettingsManager.userColor} /> (Doc.UserDoc().showLinkLines = !Doc.UserDoc().showLinkLines)} toggleStatus={BoolCast(Doc.UserDoc().showLinkLines)} size={Size.XSMALL} color={SettingsManager.userColor} /> console.log('GOT: ' + (Doc.UserDoc().headerHeight = val))} />
); } @computed get appearanceContent() { return (
Colors
{this.colorsContent}
Formats
{this.formatsContent}
); } @computed get textContent() { const fontFamilies = ['Times New Roman', 'Arial', 'Georgia', 'Comic Sans MS', 'Tahoma', 'Impact', 'Crimson Text', 'Roboto']; const fontSizes = ['7px', '8px', '9px', '10px', '12px', '14px', '16px', '18px', '20px', '24px', '32px', '48px', '72px']; return (
Text
{/* */} {}} /> { return { text: val, val: val, style: { fontFamily: val, }, }; })} closeOnSelect={true} dropdownType={DropdownType.SELECT} type={Type.TERT} selectedVal={StrCast(Doc.UserDoc().fontFamily)} setSelectedVal={val => { this.changeFontFamily(val as string); }} color={SettingsManager.userColor} fillWidth />
); } @action changeVal = (value: string, pass: string) => { switch (pass) { case 'curr': this.curr_password = value; break; case 'new': this.new_password = value; break; case 'conf': this.new_confirm = value; break; } }; @computed get passwordContent() { return (
this.changeVal(val as string, 'curr')} fillWidth password /> this.changeVal(val as string, 'new')} fillWidth password /> this.changeVal(val as string, 'conf')} fillWidth password /> {!this.passwordResultText ? null :
{this.passwordResultText}
}
); } @computed get accountOthersContent() { return (
); } @computed get accountsContent() { return (
Password
{this.passwordContent}
Others
{this.accountOthersContent}
); } setFreeformScrollMode = (mode: string) => { Doc.UserDoc().freeformScrollMode = mode; }; @computed get modesContent() { return (
Modes
{ this.selectUserMode(val as string); }} dropdownType={DropdownType.SELECT} type={Type.TERT} placement="bottom-start" color={SettingsManager.userColor} fillWidth />
Freeform Navigation
this.setFreeformScrollMode(val as string)} dropdownType={DropdownType.SELECT} type={Type.TERT} placement="bottom-start" color={SettingsManager.userColor} />
Permissions
); } private get settingsInterface() { // const pairs = [{ title: "Password", ele: this.passwordContent }, { title: "Modes", ele: this.modesContent }, // { title: "Accounts", ele: this.accountsContent }, { title: "Preferences", ele: this.preferencesContent }]; const tabs = [ { title: 'Accounts', ele: this.accountsContent }, { title: 'Modes', ele: this.modesContent }, { title: 'Appearance', ele: this.appearanceContent }, { title: 'Text', ele: this.textContent }, ]; return (
{tabs.map(tab => { const isActive = this.activeTab === tab.title; return (
(this.activeTab = tab.title))}> {tab.title}
); })}
{DashVersion}
{Doc.CurrentUserEmail}
{tabs.map(tab => (
{tab.ele}
))}
); } render() { return ( ); } }