2021-03-26 04:17:02 +04:30
|
|
|
/*
|
|
|
|
|
* 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
|
2023-05-18 13:17:41 +02:00
|
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
|
*/
|
2021-01-26 23:32:12 +03:30
|
|
|
|
2021-09-09 17:51:22 +04:30
|
|
|
import FavoriteIcon from '@mui/icons-material/Favorite';
|
|
|
|
|
import FavoriteBorderIcon from '@mui/icons-material/FavoriteBorder';
|
|
|
|
|
import PublicIcon from '@mui/icons-material/Public';
|
2023-06-04 20:58:44 +02:00
|
|
|
import { styled } from '@mui/material/styles';
|
2023-12-27 18:08:16 +01:00
|
|
|
import React, { useEffect, useMemo, useState } from 'react';
|
2023-03-23 13:59:32 +01:00
|
|
|
import { useTranslation } from 'react-i18next';
|
2023-05-01 23:31:14 +02:00
|
|
|
import { t as translate } from 'i18next';
|
2023-07-04 21:55:39 +02:00
|
|
|
import Button from '@mui/material/Button';
|
2023-10-15 16:03:08 +02:00
|
|
|
import { ISource, TManga } from '@/typings';
|
2023-10-28 00:32:02 +02:00
|
|
|
import { requestManager } from '@/lib/requests/RequestManager.ts';
|
|
|
|
|
import { makeToast } from '@/components/util/Toast';
|
2023-12-27 18:08:16 +01:00
|
|
|
import { useMetadataServerSettings } from '@/util/metadataServerSettings.ts';
|
|
|
|
|
import { CategorySelect } from '@/components/navbar/action/CategorySelect.tsx';
|
2024-02-16 19:38:13 +01:00
|
|
|
import { Mangas } from '@/lib/data/Mangas.ts';
|
2024-02-16 21:21:47 +01:00
|
|
|
import { SpinnerImage } from '@/components/util/SpinnerImage.tsx';
|
2024-03-02 15:23:12 +01:00
|
|
|
import { defaultPromiseErrorHandler } from '@/util/defaultPromiseErrorHandler.ts';
|
|
|
|
|
import { Categories } from '@/lib/data/Categories.ts';
|
2021-02-21 04:27:41 +03:30
|
|
|
|
2023-06-04 20:58:44 +02:00
|
|
|
const DetailsWrapper = styled('div')(({ theme }) => ({
|
|
|
|
|
width: '100%',
|
|
|
|
|
[theme.breakpoints.up('md')]: {
|
|
|
|
|
position: 'sticky',
|
|
|
|
|
top: '64px',
|
|
|
|
|
left: '0px',
|
|
|
|
|
width: '50vw',
|
|
|
|
|
height: 'calc(100vh - 64px)',
|
|
|
|
|
alignSelf: 'flex-start',
|
|
|
|
|
overflowY: 'auto',
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
const TopContentWrapper = styled('div')(() => ({
|
|
|
|
|
padding: '10px',
|
|
|
|
|
// [theme.breakpoints.up('md')]: {
|
|
|
|
|
// minWidth: '50%',
|
|
|
|
|
// },
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
const ThumbnailMetadataWrapper = styled('div')(() => ({
|
|
|
|
|
display: 'flex',
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
const Thumbnail = styled('div')(() => ({
|
|
|
|
|
'& img': {
|
|
|
|
|
borderRadius: 4,
|
|
|
|
|
maxWidth: '100%',
|
|
|
|
|
minWidth: '100%',
|
|
|
|
|
height: 'auto',
|
|
|
|
|
},
|
|
|
|
|
maxWidth: '50%',
|
|
|
|
|
// [theme.breakpoints.up('md')]: {
|
|
|
|
|
// minWidth: '100px',
|
|
|
|
|
// },
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
const Metadata = styled('div')(({ theme }) => ({
|
|
|
|
|
marginLeft: 15,
|
|
|
|
|
maxWidth: '100%',
|
|
|
|
|
'& span': {
|
|
|
|
|
fontWeight: '400',
|
|
|
|
|
},
|
|
|
|
|
[theme.breakpoints.up('lg')]: {
|
|
|
|
|
fontSize: '1.3em',
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
const MangaButtonsContainer = styled('div', { shouldForwardProp: (prop) => prop !== 'inLibrary' })<{
|
|
|
|
|
inLibrary: boolean;
|
2023-07-04 21:55:39 +02:00
|
|
|
}>(({ theme, inLibrary }) => ({
|
2023-06-04 20:58:44 +02:00
|
|
|
display: 'flex',
|
|
|
|
|
justifyContent: 'space-around',
|
|
|
|
|
'& button': {
|
|
|
|
|
color: inLibrary ? '#2196f3' : 'inherit',
|
2023-07-04 21:55:39 +02:00
|
|
|
borderRadius: '25px',
|
|
|
|
|
textTransform: 'none',
|
|
|
|
|
paddingLeft: '20px',
|
|
|
|
|
paddingRight: '20px',
|
|
|
|
|
fontSize: 'x-large',
|
|
|
|
|
[theme.breakpoints.down('sm')]: {
|
|
|
|
|
fontSize: 'larger',
|
|
|
|
|
},
|
2023-06-04 20:58:44 +02:00
|
|
|
},
|
|
|
|
|
'& a': {
|
|
|
|
|
textDecoration: 'none',
|
|
|
|
|
color: '#858585',
|
|
|
|
|
'& button': {
|
|
|
|
|
color: 'inherit',
|
2021-02-21 04:27:41 +03:30
|
|
|
},
|
2023-06-04 20:58:44 +02:00
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
const BottomContentWrapper = styled('div')(({ theme }) => ({
|
|
|
|
|
paddingLeft: '10px',
|
|
|
|
|
paddingRight: '10px',
|
|
|
|
|
[theme.breakpoints.up('md')]: {
|
|
|
|
|
fontSize: '1.2em',
|
|
|
|
|
// maxWidth: '50%',
|
|
|
|
|
},
|
|
|
|
|
[theme.breakpoints.up('lg')]: {
|
|
|
|
|
fontSize: '1.3em',
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
const Description = styled('div')(() => ({
|
|
|
|
|
'& h4': {
|
|
|
|
|
marginTop: '1em',
|
|
|
|
|
marginBottom: 0,
|
|
|
|
|
},
|
|
|
|
|
'& p': {
|
|
|
|
|
textAlign: 'justify',
|
|
|
|
|
textJustify: 'inter-word',
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
const Genres = styled('div')(() => ({
|
|
|
|
|
display: 'flex',
|
|
|
|
|
flexWrap: 'wrap',
|
|
|
|
|
'& h5': {
|
|
|
|
|
border: '2px solid #2196f3',
|
|
|
|
|
borderRadius: '1.13em',
|
|
|
|
|
marginRight: '1em',
|
|
|
|
|
marginTop: 0,
|
|
|
|
|
marginBottom: '10px',
|
|
|
|
|
padding: '0.3em',
|
|
|
|
|
color: '#2196f3',
|
|
|
|
|
},
|
|
|
|
|
}));
|
2021-01-19 20:20:28 +03:30
|
|
|
|
2023-09-08 00:44:01 +02:00
|
|
|
const OpenSourceButton = ({ url }: { url?: string | null }) => {
|
|
|
|
|
const { t } = useTranslation();
|
|
|
|
|
|
|
|
|
|
const button = useMemo(
|
|
|
|
|
() => (
|
|
|
|
|
<Button disabled={!!url} startIcon={<PublicIcon />} size="large">
|
|
|
|
|
{t('global.button.open_site')}
|
|
|
|
|
</Button>
|
|
|
|
|
),
|
|
|
|
|
[url],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (!url) {
|
|
|
|
|
return button;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<a href={url} target="_blank" rel="noreferrer">
|
|
|
|
|
<Button startIcon={<PublicIcon />} size="large">
|
|
|
|
|
{t('global.button.open_site')}
|
|
|
|
|
</Button>
|
|
|
|
|
</a>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
2023-02-06 10:06:33 +01:00
|
|
|
interface IProps {
|
2023-10-15 16:03:08 +02:00
|
|
|
manga: TManga;
|
2021-03-14 23:57:33 +03:30
|
|
|
}
|
|
|
|
|
|
2023-09-08 00:44:01 +02:00
|
|
|
function getSourceName(source?: ISource | null) {
|
2023-05-01 23:31:14 +02:00
|
|
|
if (!source) {
|
|
|
|
|
return translate('global.label.unknown');
|
2021-03-17 19:17:03 +03:30
|
|
|
}
|
2023-05-01 23:31:14 +02:00
|
|
|
|
|
|
|
|
return source.displayName ?? source.id;
|
2021-01-19 20:20:28 +03:30
|
|
|
}
|
|
|
|
|
|
2023-09-08 00:44:01 +02:00
|
|
|
function getValueOrUnknown(val?: string | null) {
|
2021-03-17 19:17:03 +03:30
|
|
|
return val || 'UNKNOWN';
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-28 00:32:02 +02:00
|
|
|
export const MangaDetails: React.FC<IProps> = ({ manga }) => {
|
2023-03-23 13:59:32 +01:00
|
|
|
const { t } = useTranslation();
|
2023-12-27 18:08:16 +01:00
|
|
|
|
|
|
|
|
const {
|
|
|
|
|
settings: { showAddToLibraryCategorySelectDialog },
|
|
|
|
|
loading: areSettingsLoading,
|
|
|
|
|
} = useMetadataServerSettings();
|
|
|
|
|
|
2024-03-02 15:23:12 +01:00
|
|
|
const categories = requestManager.useGetCategories();
|
|
|
|
|
const userCreatedCategories = useMemo(
|
|
|
|
|
() => Categories.getUserCreated(categories.data?.categories.nodes ?? []),
|
|
|
|
|
[categories.data?.categories.nodes],
|
|
|
|
|
);
|
|
|
|
|
|
2023-12-27 18:08:16 +01:00
|
|
|
const [isCategorySelectOpen, setIsCategorySelectOpen] = useState(false);
|
2023-03-23 13:59:32 +01:00
|
|
|
|
2023-05-02 00:35:56 +02:00
|
|
|
useEffect(() => {
|
|
|
|
|
if (!manga.source) {
|
|
|
|
|
makeToast(translate('source.error.label.source_not_found'), 'error');
|
|
|
|
|
}
|
|
|
|
|
}, [manga.source]);
|
2023-05-01 23:31:14 +02:00
|
|
|
|
2024-03-02 15:26:15 +01:00
|
|
|
const addToLibrary = (addToCategories: number[] = [], removeFromCategories: number[] = []) => {
|
2023-12-27 18:08:16 +01:00
|
|
|
requestManager
|
2024-03-02 15:26:15 +01:00
|
|
|
.updateManga(manga.id, {
|
|
|
|
|
updateManga: { inLibrary: true },
|
|
|
|
|
updateMangaCategories: { addToCategories, removeFromCategories },
|
|
|
|
|
})
|
2023-12-27 18:08:16 +01:00
|
|
|
.response.then(() => makeToast(t('library.info.label.added_to_library'), 'success'))
|
2023-10-19 20:48:43 +02:00
|
|
|
.catch(() => {
|
|
|
|
|
makeToast(t('library.error.label.add_to_library'), 'error');
|
|
|
|
|
});
|
2022-11-09 18:09:15 +01:00
|
|
|
};
|
2021-02-13 21:12:18 +03:30
|
|
|
|
2023-12-27 18:08:16 +01:00
|
|
|
const handleAddToLibraryClick = () => {
|
2024-03-02 15:23:12 +01:00
|
|
|
if (categories.loading) {
|
|
|
|
|
makeToast(t('global.label.load_in_progress'), 'info');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (categories.error) {
|
|
|
|
|
makeToast(t('category.error.label.request_failure'), 'error');
|
|
|
|
|
categories
|
|
|
|
|
.refetch()
|
|
|
|
|
.catch(defaultPromiseErrorHandler('MangaDetails::handleAddToLibraryClick: refetch categories'));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const showCategorySelectDialog = showAddToLibraryCategorySelectDialog && !!userCreatedCategories.length;
|
|
|
|
|
if (!showCategorySelectDialog) {
|
2024-03-02 15:26:15 +01:00
|
|
|
addToLibrary(Categories.getIds(Categories.getDefaults(userCreatedCategories!)));
|
2023-12-27 18:08:16 +01:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setIsCategorySelectOpen(true);
|
|
|
|
|
};
|
|
|
|
|
|
2022-11-09 18:09:15 +01:00
|
|
|
const removeFromLibrary = () => {
|
2024-03-02 15:28:58 +01:00
|
|
|
Mangas.removeFromLibrary([manga.id]).catch(defaultPromiseErrorHandler('MangaDetails::removeFromLibrary'));
|
2022-11-09 18:09:15 +01:00
|
|
|
};
|
2021-01-19 20:20:28 +03:30
|
|
|
|
|
|
|
|
return (
|
2023-12-27 18:08:16 +01:00
|
|
|
<>
|
|
|
|
|
<DetailsWrapper>
|
|
|
|
|
<TopContentWrapper>
|
|
|
|
|
<ThumbnailMetadataWrapper>
|
|
|
|
|
<Thumbnail>
|
2024-02-16 21:21:47 +01:00
|
|
|
<SpinnerImage src={Mangas.getThumbnailUrl(manga)} alt="Manga Thumbnail" />
|
2023-12-27 18:08:16 +01:00
|
|
|
</Thumbnail>
|
|
|
|
|
<Metadata>
|
|
|
|
|
<h1>{manga.title}</h1>
|
|
|
|
|
<h3>
|
|
|
|
|
{`${t('manga.label.author')}: `}
|
|
|
|
|
<span>{getValueOrUnknown(manga.author)}</span>
|
|
|
|
|
</h3>
|
|
|
|
|
<h3>
|
|
|
|
|
{`${t('manga.label.artist')}: `}
|
|
|
|
|
<span>{getValueOrUnknown(manga.artist)}</span>
|
|
|
|
|
</h3>
|
|
|
|
|
<h3>{`${t('manga.label.status')}: ${manga.status}`}</h3>
|
|
|
|
|
<h3>{`${t('source.title')}: ${getSourceName(manga.source)}`}</h3>
|
|
|
|
|
</Metadata>
|
|
|
|
|
</ThumbnailMetadataWrapper>
|
|
|
|
|
<MangaButtonsContainer inLibrary={manga.inLibrary}>
|
|
|
|
|
<div>
|
|
|
|
|
<Button
|
2024-03-02 15:23:12 +01:00
|
|
|
disabled={areSettingsLoading || categories.loading}
|
2023-12-27 18:08:16 +01:00
|
|
|
startIcon={manga.inLibrary ? <FavoriteIcon /> : <FavoriteBorderIcon />}
|
|
|
|
|
onClick={manga.inLibrary ? removeFromLibrary : handleAddToLibraryClick}
|
|
|
|
|
size="large"
|
|
|
|
|
>
|
|
|
|
|
{manga.inLibrary ? t('manga.button.in_library') : t('manga.button.add_to_library')}
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
<OpenSourceButton url={manga.realUrl} />
|
|
|
|
|
</MangaButtonsContainer>
|
|
|
|
|
</TopContentWrapper>
|
|
|
|
|
<BottomContentWrapper>
|
|
|
|
|
<Description>
|
|
|
|
|
<h4>{t('settings.about.title')}</h4>
|
|
|
|
|
<p style={{ whiteSpace: 'pre-line' }}>{manga.description}</p>
|
|
|
|
|
</Description>
|
|
|
|
|
<Genres>
|
|
|
|
|
{manga.genre.map((g) => (
|
|
|
|
|
<h5 key={g}>{g}</h5>
|
|
|
|
|
))}
|
|
|
|
|
</Genres>
|
|
|
|
|
</BottomContentWrapper>
|
|
|
|
|
</DetailsWrapper>
|
|
|
|
|
{isCategorySelectOpen && (
|
|
|
|
|
<CategorySelect
|
|
|
|
|
open={isCategorySelectOpen}
|
2024-03-02 15:26:15 +01:00
|
|
|
onClose={(didUpdateCategories, addToCategories, removeFromCategories) => {
|
2023-12-27 18:08:16 +01:00
|
|
|
setIsCategorySelectOpen(false);
|
|
|
|
|
|
|
|
|
|
if (didUpdateCategories) {
|
2024-03-02 15:26:15 +01:00
|
|
|
addToLibrary(addToCategories, removeFromCategories);
|
2023-12-27 18:08:16 +01:00
|
|
|
}
|
|
|
|
|
}}
|
|
|
|
|
mangaId={manga.id}
|
|
|
|
|
addToLibrary
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</>
|
2021-01-19 20:20:28 +03:30
|
|
|
);
|
2022-11-09 18:09:15 +01:00
|
|
|
};
|