/* * 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, useContext, useLayoutEffect, 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 '@/screens/Extensions'; 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 '@/screens/Migration.tsx'; import { NavBarContext } from '@/components/context/NavbarContext.tsx'; import { useResizeObserver } from '@/modules/core/hooks/useResizeObserver.tsx'; enum Tabs { SOURCE = 'source', EXTENSIONS = 'extensions', MIGRATE = 'migrate', } export function Browse() { const { t } = useTranslation(); const { setTitle } = useContext(NavBarContext); useLayoutEffect(() => { setTitle(t('global.label.browse')); }, [t]); 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')} > ); }