228 lines
7.7 KiB
TypeScript
228 lines
7.7 KiB
TypeScript
import { WebApplication } from '@/Application/Application'
|
|
import {
|
|
ApplicationEvent,
|
|
ComponentArea,
|
|
ContentType,
|
|
FeatureIdentifier,
|
|
GetFeatures,
|
|
PrefKey,
|
|
SNComponent,
|
|
} from '@standardnotes/snjs'
|
|
import { observer } from 'mobx-react-lite'
|
|
import { FunctionComponent, useCallback, useEffect, useRef, useState } from 'react'
|
|
import Icon from '@/Components/Icon/Icon'
|
|
import Switch from '@/Components/Switch/Switch'
|
|
import FocusModeSwitch from './FocusModeSwitch'
|
|
import ThemesMenuButton from './ThemesMenuButton'
|
|
import { ThemeItem } from './ThemeItem'
|
|
import { sortThemes } from '@/Utils/SortThemes'
|
|
import RadioIndicator from '../RadioIndicator/RadioIndicator'
|
|
import HorizontalSeparator from '../Shared/HorizontalSeparator'
|
|
import { QuickSettingsController } from '@/Controllers/QuickSettingsController'
|
|
import PanelSettingsSection from './PanelSettingsSection'
|
|
import { PrefDefaults } from '@/Constants/PrefDefaults'
|
|
|
|
const focusModeAnimationDuration = 1255
|
|
|
|
type MenuProps = {
|
|
quickSettingsMenuController: QuickSettingsController
|
|
application: WebApplication
|
|
}
|
|
|
|
const toggleFocusMode = (enabled: boolean) => {
|
|
if (enabled) {
|
|
document.body.classList.add('focus-mode')
|
|
} else {
|
|
if (document.body.classList.contains('focus-mode')) {
|
|
document.body.classList.add('disable-focus-mode')
|
|
document.body.classList.remove('focus-mode')
|
|
setTimeout(() => {
|
|
document.body.classList.remove('disable-focus-mode')
|
|
}, focusModeAnimationDuration)
|
|
}
|
|
}
|
|
}
|
|
|
|
const QuickSettingsMenu: FunctionComponent<MenuProps> = ({ application, quickSettingsMenuController }) => {
|
|
const { closeQuickSettingsMenu, focusModeEnabled, setFocusModeEnabled } = quickSettingsMenuController
|
|
const [themes, setThemes] = useState<ThemeItem[]>([])
|
|
const [toggleableComponents, setToggleableComponents] = useState<SNComponent[]>([])
|
|
|
|
const [isDarkModeOn, setDarkModeOn] = useState(() =>
|
|
application.getPreference(PrefKey.DarkMode, PrefDefaults[PrefKey.DarkMode]),
|
|
)
|
|
const defaultThemeOn =
|
|
!themes.map((item) => item?.component).find((theme) => theme?.active && !theme.isLayerable()) && !isDarkModeOn
|
|
|
|
useEffect(() => {
|
|
const removeObserver = application.addEventObserver(async (event) => {
|
|
if (event !== ApplicationEvent.PreferencesChanged) {
|
|
return
|
|
}
|
|
|
|
const isDarkModeOn = application.getPreference(PrefKey.DarkMode, PrefDefaults[PrefKey.DarkMode])
|
|
setDarkModeOn(isDarkModeOn)
|
|
})
|
|
|
|
return removeObserver
|
|
}, [application])
|
|
|
|
const prefsButtonRef = useRef<HTMLButtonElement>(null)
|
|
const defaultThemeButtonRef = useRef<HTMLButtonElement>(null)
|
|
|
|
const mainRef = useRef<HTMLDivElement>(null)
|
|
|
|
useEffect(() => {
|
|
toggleFocusMode(focusModeEnabled)
|
|
}, [focusModeEnabled])
|
|
|
|
const reloadThemes = useCallback(() => {
|
|
const themes = application.items
|
|
.getDisplayableComponents()
|
|
.filter((component) => component.isTheme())
|
|
.map((item) => {
|
|
return {
|
|
name: item.displayName,
|
|
identifier: item.identifier,
|
|
component: item,
|
|
}
|
|
}) as ThemeItem[]
|
|
|
|
GetFeatures()
|
|
.filter((feature) => feature.content_type === ContentType.Theme && !feature.layerable)
|
|
.forEach((theme) => {
|
|
if (themes.findIndex((item) => item.identifier === theme.identifier) === -1) {
|
|
themes.push({
|
|
name: theme.name as string,
|
|
identifier: theme.identifier,
|
|
})
|
|
}
|
|
})
|
|
|
|
setThemes(themes.sort(sortThemes))
|
|
}, [application])
|
|
|
|
const reloadToggleableComponents = useCallback(() => {
|
|
const toggleableComponents = application.items
|
|
.getDisplayableComponents()
|
|
.filter(
|
|
(component) =>
|
|
!component.isTheme() &&
|
|
[ComponentArea.EditorStack].includes(component.area) &&
|
|
component.identifier !== FeatureIdentifier.DeprecatedFoldersComponent,
|
|
)
|
|
|
|
setToggleableComponents(toggleableComponents)
|
|
}, [application])
|
|
|
|
useEffect(() => {
|
|
if (!themes.length) {
|
|
reloadThemes()
|
|
}
|
|
}, [reloadThemes, themes.length])
|
|
|
|
useEffect(() => {
|
|
const cleanupItemStream = application.streamItems(ContentType.Theme, () => {
|
|
reloadThemes()
|
|
})
|
|
|
|
return () => {
|
|
cleanupItemStream()
|
|
}
|
|
}, [application, reloadThemes])
|
|
|
|
useEffect(() => {
|
|
const cleanupItemStream = application.streamItems(ContentType.Component, () => {
|
|
reloadToggleableComponents()
|
|
})
|
|
|
|
return () => {
|
|
cleanupItemStream()
|
|
}
|
|
}, [application, reloadToggleableComponents])
|
|
|
|
useEffect(() => {
|
|
prefsButtonRef.current?.focus()
|
|
}, [])
|
|
|
|
const toggleComponent = useCallback(
|
|
(component: SNComponent) => {
|
|
if (component.isTheme()) {
|
|
application.mutator.toggleTheme(component).catch(console.error)
|
|
} else {
|
|
application.mutator.toggleComponent(component).catch(console.error)
|
|
}
|
|
},
|
|
[application],
|
|
)
|
|
|
|
const deactivateAnyNonLayerableTheme = useCallback(() => {
|
|
const activeTheme = themes.map((item) => item.component).find((theme) => theme?.active && !theme.isLayerable())
|
|
if (activeTheme) {
|
|
application.mutator.toggleTheme(activeTheme).catch(console.error)
|
|
}
|
|
}, [application, themes])
|
|
|
|
const toggleDefaultTheme = useCallback(() => {
|
|
deactivateAnyNonLayerableTheme()
|
|
application.setPreference(PrefKey.DarkMode, false)
|
|
}, [application, deactivateAnyNonLayerableTheme])
|
|
|
|
const toggleDarkMode = useCallback(() => {
|
|
if (!isDarkModeOn) {
|
|
deactivateAnyNonLayerableTheme()
|
|
application.setPreference(PrefKey.DarkMode, true)
|
|
}
|
|
}, [application, isDarkModeOn, deactivateAnyNonLayerableTheme])
|
|
|
|
return (
|
|
<div ref={mainRef}>
|
|
<div className="my-1 px-3 text-sm font-semibold uppercase text-text">Themes</div>
|
|
<button
|
|
className="flex w-full cursor-pointer items-center border-0 bg-transparent px-3 py-1.5 text-left text-mobile-menu-item text-text hover:bg-contrast hover:text-foreground focus:bg-info-backdrop focus:shadow-none md:text-sm"
|
|
onClick={toggleDefaultTheme}
|
|
ref={defaultThemeButtonRef}
|
|
>
|
|
<RadioIndicator checked={defaultThemeOn} className="mr-2" />
|
|
Default
|
|
</button>
|
|
<button
|
|
className="flex w-full cursor-pointer items-center border-0 bg-transparent px-3 py-1.5 text-left text-mobile-menu-item text-text hover:bg-contrast hover:text-foreground focus:bg-info-backdrop focus:shadow-none md:text-sm"
|
|
onClick={toggleDarkMode}
|
|
>
|
|
<RadioIndicator checked={isDarkModeOn} className="mr-2" />
|
|
Dark
|
|
</button>
|
|
{themes.map((theme) => (
|
|
<ThemesMenuButton item={theme} application={application} key={theme.component?.uuid ?? theme.identifier} />
|
|
))}
|
|
<HorizontalSeparator classes="my-2" />
|
|
<div className="my-1 px-3 text-sm font-semibold uppercase text-text">Tools</div>
|
|
{toggleableComponents.map((component) => (
|
|
<button
|
|
className="flex w-full cursor-pointer items-center justify-between border-0 bg-transparent px-3 py-1.5 text-left text-mobile-menu-item text-text hover:bg-contrast hover:text-foreground focus:bg-info-backdrop focus:shadow-none md:text-sm"
|
|
onClick={() => {
|
|
toggleComponent(component)
|
|
}}
|
|
key={component.uuid}
|
|
>
|
|
<div className="flex items-center">
|
|
<Icon type="window" className="mr-2 text-neutral" />
|
|
{component.displayName}
|
|
</div>
|
|
<Switch checked={component.active} className="px-0" />
|
|
</button>
|
|
))}
|
|
<FocusModeSwitch
|
|
application={application}
|
|
onToggle={setFocusModeEnabled}
|
|
onClose={closeQuickSettingsMenu}
|
|
isEnabled={focusModeEnabled}
|
|
/>
|
|
<PanelSettingsSection application={application} />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default observer(QuickSettingsMenu)
|