Files
suwayomi-material-you-webui/src/features/navigation-bar/NavigationBar.constants.ts
schroda 65a9a905be Migrate to lingui
Switch to "lingui" for better DX.
Tried to persist existing languages as much as possible.

Removed "vite-plugin-node-polyfills" because it's incompatible with "lingui"
2026-01-13 17:33:36 +01:00

151 lines
5.4 KiB
TypeScript

/*
* 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 CollectionsBookmarkIcon from '@mui/icons-material/CollectionsBookmark';
import CollectionsOutlinedBookmarkIcon from '@mui/icons-material/CollectionsBookmarkOutlined';
import NewReleasesIcon from '@mui/icons-material/NewReleases';
import NewReleasesOutlinedIcon from '@mui/icons-material/NewReleasesOutlined';
import HistoryIcon from '@mui/icons-material/History';
import HistoryOutlinedIcon from '@mui/icons-material/HistoryOutlined';
import ExploreIcon from '@mui/icons-material/Explore';
import ExploreOutlinedIcon from '@mui/icons-material/ExploreOutlined';
import GetAppIcon from '@mui/icons-material/GetApp';
import GetAppOutlinedIcon from '@mui/icons-material/GetAppOutlined';
import MoreHorizIcon from '@mui/icons-material/MoreHoriz';
import SettingsIcon from '@mui/icons-material/Settings';
import InfoIcon from '@mui/icons-material/Info';
import { useLingui } from '@lingui/react/macro';
import { msg, plural } from '@lingui/core/macro';
import { NavbarItem, NavBarItemMoreGroup } from '@/features/navigation-bar/NavigationBar.types.ts';
import { AppRoutes } from '@/base/AppRoute.constants.ts';
import { requestManager } from '@/lib/requests/RequestManager.ts';
import { DownloaderState } from '@/lib/graphql/generated/graphql.ts';
type RestrictedNavBarItem<Show extends NavbarItem['show']> = Omit<NavbarItem, 'show'> & { show: Show };
const NAVIGATION_BAR_BASE_ITEMS = [
{
path: AppRoutes.library.path() as RestrictedNavBarItem<'both'>['path'],
title: msg`Library`,
SelectedIconComponent: CollectionsBookmarkIcon,
IconComponent: CollectionsOutlinedBookmarkIcon,
show: 'both',
moreGroup: NavBarItemMoreGroup.GENERAL,
},
{
path: AppRoutes.updates.path,
title: msg`Updates`,
SelectedIconComponent: NewReleasesIcon,
IconComponent: NewReleasesOutlinedIcon,
show: 'both',
moreGroup: NavBarItemMoreGroup.GENERAL,
},
{
path: AppRoutes.history.path,
title: msg`History`,
SelectedIconComponent: HistoryIcon,
IconComponent: HistoryOutlinedIcon,
show: 'both',
moreGroup: NavBarItemMoreGroup.GENERAL,
},
{
path: AppRoutes.browse.path() as RestrictedNavBarItem<'both'>['path'],
title: msg`Browse`,
SelectedIconComponent: ExploreIcon,
IconComponent: ExploreOutlinedIcon,
show: 'both',
moreGroup: NavBarItemMoreGroup.GENERAL,
useBadge: () => {
const { data } = requestManager.useGetExtensionList({ fetchPolicy: 'cache-only' });
const extensions = data?.extensions.nodes ?? [];
const availableUpdates = extensions.filter((extension) => extension.hasUpdate).length;
if (!availableUpdates) {
return {
count: availableUpdates,
title: '',
};
}
return {
count: availableUpdates,
title: plural(availableUpdates, {
one: '# update available',
other: '# updates available',
}),
};
},
},
] as const satisfies RestrictedNavBarItem<'both'>[];
const NAVIGATION_BAR_DESKTOP_ITEMS = [
{
path: AppRoutes.downloads.path,
title: msg`Downloads`,
moreTitle: msg`Download queue`,
SelectedIconComponent: GetAppIcon,
IconComponent: GetAppOutlinedIcon,
show: 'desktop',
moreGroup: NavBarItemMoreGroup.HIDDEN_ITEM,
useBadge: () => {
const { t } = useLingui();
const { data } = requestManager.useGetDownloadStatus();
const downloadStatus = data?.downloadStatus;
const isPaused = downloadStatus?.state === DownloaderState.Stopped;
const count = downloadStatus?.queue.length ?? 0;
if (!count) {
return {
count,
title: '',
};
}
return {
count,
title: isPaused ? t`Paused — ${count} remaining` : t`${count} remaining`,
};
},
},
{
path: AppRoutes.settings.path,
title: msg`Settings`,
SelectedIconComponent: SettingsIcon,
IconComponent: SettingsIcon,
show: 'desktop',
moreGroup: NavBarItemMoreGroup.SETTING_INFO,
},
{
path: AppRoutes.about.path,
title: msg`About`,
SelectedIconComponent: InfoIcon,
IconComponent: InfoIcon,
show: 'desktop',
moreGroup: NavBarItemMoreGroup.SETTING_INFO,
},
] as const satisfies RestrictedNavBarItem<'desktop'>[];
export const NAVIGATION_BAR_MOBILE_ITEMS = [
{
path: AppRoutes.more.path,
title: msg`More`,
SelectedIconComponent: MoreHorizIcon,
IconComponent: MoreHorizIcon,
show: 'mobile',
moreGroup: NavBarItemMoreGroup.GENERAL,
},
] as const satisfies RestrictedNavBarItem<'mobile'>[];
export const NAVIGATION_BAR_ITEMS = [
...NAVIGATION_BAR_BASE_ITEMS,
...NAVIGATION_BAR_DESKTOP_ITEMS,
...NAVIGATION_BAR_MOBILE_ITEMS,
] as const satisfies NavbarItem[];