/* * Copyright (C) Contributors to the Suwayomi project * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ import { useCallback, useRef, useState } from 'react'; import Tab from '@mui/material/Tab'; import { useTranslation } from 'react-i18next'; import { StringParam, useQueryParam } from 'use-query-params'; import { Sources } from '@/modules/source/screens/Sources.tsx'; import { Extensions } from '@/modules/extension/screens/Extensions.tsx'; import { TabPanel } from '@/modules/core/components/tabs/TabPanel.tsx'; import { TabsWrapper } from '@/modules/core/components/tabs/TabsWrapper.tsx'; import { TabsMenu } from '@/modules/core/components/tabs/TabsMenu.tsx'; import { Migration } from '@/modules/migration/screens/Migration.tsx'; import { useResizeObserver } from '@/modules/core/hooks/useResizeObserver.tsx'; import { GROUPED_VIRTUOSO_Z_INDEX } from '@/modules/core/AppRoute.constants.ts'; import { useAppTitle } from '@/modules/navigation-bar/hooks/useAppTitle.ts'; enum Tabs { SOURCE = 'source', EXTENSIONS = 'extensions', MIGRATE = 'migrate', } export function Browse() { const { t } = useTranslation(); useAppTitle(t('global.label.browse')); const tabsMenuRef = useRef(null); const [tabsMenuHeight, setTabsMenuHeight] = useState(0); useResizeObserver( tabsMenuRef, useCallback(() => setTabsMenuHeight(tabsMenuRef.current!.offsetHeight), [tabsMenuRef.current]), ); const [tabSearchParam, setTabSearchParam] = useQueryParam('tab', StringParam, {}); const tabName = (tabSearchParam as Tabs) ?? Tabs.SOURCE; if (!tabSearchParam) { setTabSearchParam(tabName, 'replaceIn'); } return ( setTabSearchParam(newTab, 'replaceIn')} > ); }