import { useAppSettingHelper } from '@affine/core/components/hooks/affine/use-app-setting-helper'; import { WindowsAppControls } from '@affine/core/components/pure/header/windows-app-controls'; import { ThemeProvider } from '@affine/core/components/theme-provider'; import { configureAppSidebarModule } from '@affine/core/modules/app-sidebar'; import { ShellAppSidebarFallback } from '@affine/core/modules/app-sidebar/views'; import { AppTabsHeader, configureAppTabsHeaderModule, } from '@affine/core/modules/app-tabs-header'; import { configureDesktopApiModule } from '@affine/core/modules/desktop-api'; import { configureI18nModule, I18nProvider } from '@affine/core/modules/i18n'; import { configureElectronStateStorageImpls } from '@affine/core/modules/storage'; import { configureAppThemeModule } from '@affine/core/modules/theme'; import { configureGlobalStorageModule, Framework, FrameworkRoot, } from '@toeverything/infra'; import * as styles from './app.css'; const framework = new Framework(); configureGlobalStorageModule(framework); configureElectronStateStorageImpls(framework); configureAppTabsHeaderModule(framework); configureAppSidebarModule(framework); configureI18nModule(framework); configureDesktopApiModule(framework); configureAppThemeModule(framework); const frameworkProvider = framework.provider(); export function App() { const { appSettings } = useAppSettingHelper(); const translucent = BUILD_CONFIG.isElectron && environment.isMacOs && appSettings.enableBlurBackground; return (
{environment.isWindows && (
)}
); }