/* * 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 { Card, CardActionArea, Typography } from '@mui/material'; import React, { useCallback, useContext, useEffect, useMemo, useState } from 'react'; import { Link } from 'react-router-dom'; import { StringParam, useQueryParam } from 'use-query-params'; import { useTranslation } from 'react-i18next'; import { ISource } from '@/typings'; import { requestManager } from '@/lib/requests/RequestManager.ts'; import { useLocalStorage } from '@/util/useLocalStorage'; import { langSortCmp, sourceDefualtLangs, sourceForcedDefaultLangs } from '@/util/language'; import { translateExtensionLanguage } from '@/screens/util/Extensions'; import { AppbarSearch } from '@/components/util/AppbarSearch'; import { LangSelect } from '@/components/navbar/action/LangSelect'; import { MangaGrid } from '@/components/MangaGrid'; import { useDebounce } from '@/components/manga/hooks'; import { NavBarContext, useSetDefaultBackTo } from '@/components/context/NavbarContext.tsx'; type SourceLoadingState = { isLoading: boolean; hasResults: boolean; emptySearch: boolean }; type SourceToLoadingStateMap = Map; function sourceToLangList(sources: ISource[]) { const result: string[] = []; sources.forEach((source) => { if (result.indexOf(source.lang) === -1) { result.push(source.lang); } }); result.sort(langSortCmp); return result; } const compareSourceByName = (sourceA: ISource, sourceB: ISource): -1 | 0 | 1 => { if (sourceA.displayName < sourceB.displayName) { return -1; } if (sourceA.displayName > sourceB.displayName) { return 1; } return 0; }; const compareSourcesBySearchResult = ( sourceA: ISource, sourceB: ISource, sourceToFetchedStateMap: SourceToLoadingStateMap, ): -1 | 0 | 1 => { const isSourceAFetched = !sourceToFetchedStateMap.get(sourceA.id)?.isLoading ?? true; const isSourceBFetched = !sourceToFetchedStateMap.get(sourceB.id)?.isLoading ?? true; if (isSourceAFetched && !isSourceBFetched) { return -1; } if (!isSourceAFetched && isSourceBFetched) { return 1; } if (!isSourceAFetched && !isSourceBFetched) { return 0; } const isSourceASearchResultEmpty = !sourceToFetchedStateMap.get(sourceA.id)?.hasResults; const isSourceBSearchResultEmpty = !sourceToFetchedStateMap.get(sourceB.id)?.hasResults; if (isSourceASearchResultEmpty && !isSourceBSearchResultEmpty) { return 1; } if (isSourceBSearchResultEmpty && !isSourceASearchResultEmpty) { return -1; } return 0; }; const TRIGGER_SEARCH_THRESHOLD = 1000; // ms const SourceSearchPreview = React.memo( ({ source, onSearchRequestFinished, searchString, emptyQuery, }: { source: ISource; onSearchRequestFinished: ( source: ISource, isLoading: boolean, hasResults: boolean, emptySearch: boolean, ) => void; searchString: string | null | undefined; emptyQuery: boolean; }) => { const { t } = useTranslation(); const { id, displayName, lang } = source; const [, results] = requestManager.useSourceSearch(id, searchString ?? '', undefined, 1, { skipRequest: !searchString, addAbortSignal: true, }); const { data: searchResult, isLoading, error, abortRequest } = results[0]!; const mangas = searchResult?.fetchSourceManga.mangas ?? []; const noMangasFound = !isLoading && !mangas.length; useEffect(() => { onSearchRequestFinished(source, isLoading, !noMangasFound, !searchString); }, [isLoading, noMangasFound, searchString]); let errorMessage: string | undefined; if (error) { errorMessage = t('search.error.label.source_search_failed'); } else if (noMangasFound) { errorMessage = t('manga.error.label.no_mangas_found'); } useEffect( () => () => { // INFO: // with strict mode + dev mode the first request will be aborted. due to using SWR there won't be an // immediate second request since it's the same key. instead the "second" request will be the error handling of SWR abortRequest( new Error(`SourceSearchPreview(${source.id}, ${source.displayName}): search string changed`), ); }, [searchString], ); if ((!isLoading && !searchString) || emptyQuery) { return null; } return ( <> {displayName} {translateExtensionLanguage(lang)} undefined} horizontal noFaces message={errorMessage} inLibraryIndicator /> ); }, ); export const SearchAll: React.FC = () => { const { t } = useTranslation(); const { setTitle, setAction } = useContext(NavBarContext); useSetDefaultBackTo('sources'); const [query] = useQueryParam('query', StringParam); const searchString = useDebounce(query, TRIGGER_SEARCH_THRESHOLD); const [shownLangs, setShownLangs] = useLocalStorage('shownSourceLangs', sourceDefualtLangs()); const [showNsfw] = useLocalStorage('showNsfw', true); const { data } = requestManager.useGetSourceList(); const sources = data?.sources.nodes ?? []; const [sourceToLoadingStateMap, setSourceToLoadingStateMap] = useState(new Map()); const debouncedSourceToLoadingStateMap = useDebounce(sourceToLoadingStateMap, 500); const sourcesSortedByName = useMemo(() => [...sources].sort(compareSourceByName), [sources]); const sourcesFilteredByLang = useMemo( () => sourcesSortedByName.filter((source) => shownLangs.includes(source.lang)), [sourcesSortedByName, shownLangs], ); const sourcesFilteredByNsfw = useMemo( () => sourcesFilteredByLang.filter((source) => showNsfw || !source.isNsfw), [sourcesFilteredByLang, showNsfw], ); const sourcesSortedByResult = useMemo( () => [...sourcesFilteredByNsfw].sort((sourceA, sourceB) => compareSourcesBySearchResult(sourceA, sourceB, debouncedSourceToLoadingStateMap), ), [sourcesFilteredByNsfw, debouncedSourceToLoadingStateMap], ); const updateSourceLoadingState = useCallback( ({ id }: ISource, isLoading: boolean, hasResults: boolean, emptySearch: boolean) => { setSourceToLoadingStateMap((currentMap) => { const mapCopy = new Map(currentMap); mapCopy.set(id, { isLoading, hasResults, emptySearch }); return mapCopy; }); }, [setSourceToLoadingStateMap], ); useEffect(() => { setTitle(t('search.title.global_search')); setAction( <> , ); }, [t, shownLangs, setShownLangs, sources]); useEffect(() => { // make sure all of forcedDefaultLangs() exists in shownLangs const missingDefaultLangs = sourceForcedDefaultLangs().filter( (defaultLang) => !shownLangs.includes(defaultLang), ); setShownLangs([...shownLangs, ...missingDefaultLangs]); }, []); return ( <> {sourcesSortedByResult.map((source) => ( ))} ); };