Add option to remove non library mangas from categories (#520)
It's currently not possible to filter out non library mangas from the mangas field of categories, thus, the totalCount of mangas in a category might be greater than what is actually displayed in the library.
This commit is contained in:
@@ -307,6 +307,7 @@
|
|||||||
"title": "Display mode"
|
"title": "Display mode"
|
||||||
},
|
},
|
||||||
"label": {
|
"label": {
|
||||||
|
"advanced": "Advanced",
|
||||||
"browse": "Browse",
|
"browse": "Browse",
|
||||||
"client": "Client",
|
"client": "Client",
|
||||||
"close": "Close",
|
"close": "Close",
|
||||||
@@ -403,6 +404,18 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
|
"advanced": {
|
||||||
|
"database": {
|
||||||
|
"cleanup": {
|
||||||
|
"label": {
|
||||||
|
"description": "Remove non library manga from categories",
|
||||||
|
"error": "Could not remove non library manga from categories",
|
||||||
|
"success": "Removed non library manga from categories",
|
||||||
|
"title": "Cleanup database"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"general": {
|
"general": {
|
||||||
"add_to_library": {
|
"add_to_library": {
|
||||||
"category_selection": {
|
"category_selection": {
|
||||||
|
|||||||
@@ -1341,6 +1341,13 @@ export class RequestManager {
|
|||||||
return this.doRequest(GQLMethod.USE_QUERY, GET_MANGAS, variables, options);
|
return this.doRequest(GQLMethod.USE_QUERY, GET_MANGAS, variables, options);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public getMangas(
|
||||||
|
variables: GetMangasQueryVariables,
|
||||||
|
options?: QueryOptions<GetMangasQueryVariables, GetMangasQuery>,
|
||||||
|
): AbortabaleApolloQueryResponse<GetMangasQuery> {
|
||||||
|
return this.doRequest(GQLMethod.QUERY, GET_MANGAS, variables, options);
|
||||||
|
}
|
||||||
|
|
||||||
public getMangaThumbnailUrl(mangaId: number): string {
|
public getMangaThumbnailUrl(mangaId: number): string {
|
||||||
return this.getValidImgUrlFor(`manga/${mangaId}/thumbnail`);
|
return this.getValidImgUrlFor(`manga/${mangaId}/thumbnail`);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,14 +8,36 @@
|
|||||||
|
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
import { useContext, useEffect } from 'react';
|
import { useContext, useEffect } from 'react';
|
||||||
import { List, ListItem, ListItemText, Switch } from '@mui/material';
|
import { List, ListItem, ListItemButton, ListItemText, Switch } from '@mui/material';
|
||||||
import ListSubheader from '@mui/material/ListSubheader';
|
import ListSubheader from '@mui/material/ListSubheader';
|
||||||
|
import { t as translate } from 'i18next';
|
||||||
import { NavBarContext, useSetDefaultBackTo } from '@/components/context/NavbarContext.tsx';
|
import { NavBarContext, useSetDefaultBackTo } from '@/components/context/NavbarContext.tsx';
|
||||||
import { GlobalUpdateSettings } from '@/components/settings/globalUpdate/GlobalUpdateSettings.tsx';
|
import { GlobalUpdateSettings } from '@/components/settings/globalUpdate/GlobalUpdateSettings.tsx';
|
||||||
import { MetadataServerSettingKeys, MetadataServerSettings } from '@/typings.ts';
|
import { MetadataServerSettingKeys, MetadataServerSettings } from '@/typings.ts';
|
||||||
import { convertToGqlMeta, requestUpdateServerMetadata } from '@/util/metadata.ts';
|
import { convertToGqlMeta, requestUpdateServerMetadata } from '@/util/metadata.ts';
|
||||||
import { makeToast } from '@/components/util/Toast.tsx';
|
import { makeToast } from '@/components/util/Toast.tsx';
|
||||||
import { useMetadataServerSettings } from '@/util/metadataServerSettings.ts';
|
import { useMetadataServerSettings } from '@/util/metadataServerSettings.ts';
|
||||||
|
import { requestManager } from '@/lib/requests/RequestManager.ts';
|
||||||
|
import { Mangas } from '@/lib/data/Mangas.ts';
|
||||||
|
|
||||||
|
const removeNonLibraryMangasFromCategories = async (): Promise<void> => {
|
||||||
|
try {
|
||||||
|
const nonLibraryMangas = await requestManager.getMangas({
|
||||||
|
filter: { inLibrary: { equalTo: false }, categoryId: { isNull: false } },
|
||||||
|
}).response;
|
||||||
|
|
||||||
|
const mangaIdsToRemove = Mangas.getIds(nonLibraryMangas.data.mangas.nodes);
|
||||||
|
|
||||||
|
if (!mangaIdsToRemove.length) {
|
||||||
|
await requestManager.updateMangasCategories(mangaIdsToRemove, {
|
||||||
|
clearCategories: true,
|
||||||
|
}).response;
|
||||||
|
}
|
||||||
|
makeToast(translate('library.settings.advanced.database.cleanup.label.success'), 'success');
|
||||||
|
} catch (e) {
|
||||||
|
makeToast(translate('library.settings.advanced.database.cleanup.label.error'), 'error');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
export function LibrarySettings() {
|
export function LibrarySettings() {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
@@ -72,6 +94,20 @@ export function LibrarySettings() {
|
|||||||
</ListItem>
|
</ListItem>
|
||||||
</List>
|
</List>
|
||||||
<GlobalUpdateSettings />
|
<GlobalUpdateSettings />
|
||||||
|
<List
|
||||||
|
subheader={
|
||||||
|
<ListSubheader component="div" id="library-advanced">
|
||||||
|
{t('global.label.advanced')}
|
||||||
|
</ListSubheader>
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<ListItemButton onClick={() => removeNonLibraryMangasFromCategories()}>
|
||||||
|
<ListItemText
|
||||||
|
primary={t('library.settings.advanced.database.cleanup.label.title')}
|
||||||
|
secondary={t('library.settings.advanced.database.cleanup.label.description')}
|
||||||
|
/>
|
||||||
|
</ListItemButton>
|
||||||
|
</List>
|
||||||
</List>
|
</List>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user