Files
suwayomi-material-you-webui/src/modules/source/screens/Sources.tsx

199 lines
7.6 KiB
TypeScript
Raw Normal View History

/*
* Copyright (C) Contributors to the Suwayomi project
*
* This Source Code Form is subject to the terms of the Mozilla Public
2021-01-26 23:32:12 +03:30
* 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/.
*/
2021-01-26 23:32:12 +03:30
2025-01-21 20:34:17 +01:00
import { Fragment, useEffect, useLayoutEffect, useMemo } from 'react';
import IconButton from '@mui/material/IconButton';
import Typography from '@mui/material/Typography';
import TravelExploreIcon from '@mui/icons-material/TravelExplore';
import { useNavigate } from 'react-router-dom';
import { useTranslation } from 'react-i18next';
import { CustomTooltip } from '@/modules/core/components/CustomTooltip.tsx';
import { requestManager } from '@/lib/requests/RequestManager.ts';
2024-10-05 16:09:34 +02:00
import { useLocalStorage } from '@/modules/core/hooks/useStorage.tsx';
2024-10-05 23:22:42 +02:00
import {
sourceDefualtLangs,
sourceForcedDefaultLangs,
langSortCmp,
DefaultLanguage,
} from '@/modules/core/utils/Languages.ts';
2024-10-05 16:09:34 +02:00
import { LoadingPlaceholder } from '@/modules/core/components/placeholder/LoadingPlaceholder.tsx';
2024-10-05 21:22:12 +02:00
import { SourceCard } from '@/modules/source/components/SourceCard.tsx';
2024-10-05 16:09:34 +02:00
import { LangSelect } from '@/modules/core/components/inputs/LangSelect.tsx';
import { EmptyViewAbsoluteCentered } from '@/modules/core/components/placeholder/EmptyViewAbsoluteCentered.tsx';
import { defaultPromiseErrorHandler } from '@/lib/DefaultPromiseErrorHandler.ts';
import { SourceType } from '@/lib/graphql/generated/graphql.ts';
import { translateExtensionLanguage } from '@/modules/extension/Extensions.utils.ts';
2024-12-11 20:10:59 +01:00
import { AppRoutes } from '@/modules/core/AppRoute.constants.ts';
2024-12-21 23:27:03 +01:00
import { getErrorMessage } from '@/lib/HelperFunctions.ts';
2025-01-21 20:34:17 +01:00
import { useNavBarContext } from '@/modules/navigation-bar/contexts/NavbarContext.tsx';
2021-03-09 16:44:09 +03:30
function sourceToLangList(sources: Pick<SourceType, 'id' | 'lang'>[]) {
const result = new Set<string>();
2021-03-09 16:44:09 +03:30
sources.forEach((source) => {
const isLocalSource = Number(source.id) === 0;
const lang = isLocalSource ? DefaultLanguage.OTHER : source.lang;
result.add(lang);
2021-03-09 16:44:09 +03:30
});
return [...result].sort(langSortCmp);
2021-03-09 16:44:09 +03:30
}
2024-09-30 03:45:54 +02:00
function groupByLang<Source extends Pick<SourceType, 'id' | 'name' | 'lang'>>(
sources: Source[],
): Record<string, Source[]> {
const result: Record<string, Source[]> = {};
2021-03-09 16:44:09 +03:30
sources.forEach((source) => {
const isLocalSource = Number(source.id) === 0;
const lang = isLocalSource ? DefaultLanguage.OTHER : source.lang;
result[lang] ??= [];
result[lang].push(source);
2021-03-09 16:44:09 +03:30
});
2024-09-30 03:45:54 +02:00
Object.values(result).forEach((langSources) => langSources.sort((a, b) => a.name.localeCompare(b.name)));
2021-03-09 16:44:09 +03:30
return result;
}
2021-01-19 14:47:07 +03:30
2024-12-22 21:45:34 +01:00
export function Sources() {
const { t } = useTranslation();
2025-01-21 20:34:17 +01:00
const { setAction } = useNavBarContext();
2021-03-09 16:44:09 +03:30
const [shownLangs, setShownLangs] = useLocalStorage<string[]>('shownSourceLangs', sourceDefualtLangs());
2021-09-05 01:25:37 +04:30
const [showNsfw] = useLocalStorage<boolean>('showNsfw', true);
2021-03-09 16:44:09 +03:30
2024-04-27 22:28:55 +02:00
const {
data,
loading: isLoading,
error,
refetch,
} = requestManager.useGetSourceList({ notifyOnNetworkStatusChange: true });
2023-09-01 20:29:19 +02:00
const sources = data?.sources.nodes;
2021-01-19 14:47:07 +03:30
const areSourcesFromDifferentRepos = useMemo(() => {
if (!sources || !!sources?.length) {
return false;
}
const { repo } = sources[0].extension;
return sources.some((source) => source.extension.repo !== repo);
}, [sources]);
const navigate = useNavigate();
useEffect(() => {
// make sure all of forcedDefaultLangs() exists in shownLangs
sourceForcedDefaultLangs().forEach((forcedLang) => {
let hasLang = false;
shownLangs.forEach((lang) => {
if (lang === forcedLang) hasLang = true;
});
if (!hasLang) {
setShownLangs((shownLangsCopy) => {
shownLangsCopy.push(forcedLang);
return shownLangsCopy;
});
}
});
2021-10-18 14:22:33 +03:30
}, []);
useLayoutEffect(() => {
2021-03-09 16:44:09 +03:30
setAction(
<>
<CustomTooltip title={t('search.title.global_search')}>
2024-12-11 20:10:59 +01:00
<IconButton
onClick={() => navigate(AppRoutes.sources.childRoutes.searchAll.path)}
size="large"
color="inherit"
>
2023-11-05 17:22:29 +01:00
<TravelExploreIcon />
</IconButton>
</CustomTooltip>
<LangSelect
shownLangs={shownLangs}
setShownLangs={setShownLangs}
allLangs={sourceToLangList(sources ?? [])}
forcedLangs={sourceForcedDefaultLangs()}
/>
</>,
2021-03-09 16:44:09 +03:30
);
return () => {
setAction(null);
};
}, [t, shownLangs, sources]);
2021-03-09 16:44:09 +03:30
if (isLoading) return <LoadingPlaceholder />;
2021-01-19 14:47:07 +03:30
2024-04-27 22:28:55 +02:00
if (error) {
return (
2024-04-29 15:29:33 +02:00
<EmptyViewAbsoluteCentered
2024-04-27 22:28:55 +02:00
message={t('global.error.label.failed_to_load_data')}
2024-12-21 23:27:03 +01:00
messageExtra={getErrorMessage(error)}
2024-04-27 22:28:55 +02:00
retry={() => refetch().catch(defaultPromiseErrorHandler('Sources::refetch'))}
/>
);
}
if (sources?.length === 0) {
return <EmptyViewAbsoluteCentered message={t('source.error.label.no_sources_found')} />;
2021-01-19 14:47:07 +03:30
}
2021-03-09 16:44:09 +03:30
return (
<>
{Object.entries(groupByLang(sources ?? []))
.sort((a, b) => langSortCmp(a[0], b[0]))
.map(
([lang, list]) =>
(lang === DefaultLanguage.OTHER || shownLangs.includes(lang)) && (
<Fragment key={lang}>
<Typography
key={lang}
2024-08-30 21:54:11 +02:00
variant="h5"
component="h2"
sx={{
paddingLeft: 3,
paddingTop: 1,
paddingBottom: 2,
fontWeight: 'bold',
}}
>
{translateExtensionLanguage(lang)}
</Typography>
{list
.filter((source) => {
const isLangOther = lang === DefaultLanguage.OTHER;
if (isLangOther) {
const isLocalSource = Number(source.id) === 0;
const isLangShown = shownLangs.includes(lang);
const isLangOtherSourceShown = isLangShown || isLocalSource;
if (!isLangOtherSourceShown) {
return false;
}
}
return showNsfw || !source.isNsfw;
})
.map((source) => (
<SourceCard
key={source.id}
source={source}
showSourceRepo={areSourcesFromDifferentRepos}
/>
))}
</Fragment>
),
)}
2021-03-09 16:44:09 +03:30
</>
);
2021-01-19 14:47:07 +03:30
}