2021-09-28 00:41:12 +03:30
|
|
|
/*
|
|
|
|
|
* 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
|
2023-05-18 13:17:41 +02:00
|
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
|
*/
|
2021-09-28 00:41:12 +03:30
|
|
|
|
2022-11-26 13:51:56 +01:00
|
|
|
import DownloadIcon from '@mui/icons-material/Download';
|
2023-06-04 21:08:39 +02:00
|
|
|
import { Box, CardActionArea, styled } from '@mui/material';
|
2022-11-26 13:51:56 +01:00
|
|
|
import Avatar from '@mui/material/Avatar';
|
2021-09-28 00:41:12 +03:30
|
|
|
import Card from '@mui/material/Card';
|
|
|
|
|
import CardContent from '@mui/material/CardContent';
|
|
|
|
|
import IconButton from '@mui/material/IconButton';
|
|
|
|
|
import Typography from '@mui/material/Typography';
|
2021-10-30 16:10:34 +03:30
|
|
|
import NavbarContext from 'components/context/NavbarContext';
|
2022-11-26 13:51:56 +01:00
|
|
|
import DownloadStateIndicator from 'components/molecules/DownloadStateIndicator';
|
2021-11-10 23:04:04 +03:30
|
|
|
import EmptyView from 'components/util/EmptyView';
|
|
|
|
|
import LoadingPlaceholder from 'components/util/LoadingPlaceholder';
|
2023-05-18 13:48:01 +02:00
|
|
|
import React, { useCallback, useContext, useEffect, useMemo, useState } from 'react';
|
2022-11-26 13:51:56 +01:00
|
|
|
import { Link, useHistory } from 'react-router-dom';
|
2023-05-18 13:48:01 +02:00
|
|
|
import { IChapter, IMangaChapter, IQueue } from 'typings';
|
2023-03-23 13:59:32 +01:00
|
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
|
import { t as translate } from 'i18next';
|
2023-05-18 13:25:19 +02:00
|
|
|
import requestManager from 'lib/RequestManager';
|
2023-05-18 13:48:01 +02:00
|
|
|
import { GroupedVirtuoso } from 'react-virtuoso';
|
|
|
|
|
|
|
|
|
|
const StyledGroupedVirtuoso = styled(GroupedVirtuoso)(({ theme }) => ({
|
|
|
|
|
// 64px header
|
|
|
|
|
height: 'calc(100vh - 64px)',
|
|
|
|
|
[theme.breakpoints.down('sm')]: {
|
|
|
|
|
// 64px header (margin); 64px menu (margin);
|
|
|
|
|
height: 'calc(100vh - 64px - 64px)',
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
const StyledGroupHeader = styled(Typography, { shouldForwardProp: (prop) => prop !== 'isFirstItem' })<{
|
|
|
|
|
isFirstItem: boolean;
|
|
|
|
|
}>(({ theme, isFirstItem }) => ({
|
|
|
|
|
paddingLeft: '24px',
|
|
|
|
|
// 16px - 10px (bottom padding of the group items)
|
|
|
|
|
paddingTop: '6px',
|
|
|
|
|
paddingBottom: '16px',
|
|
|
|
|
fontWeight: 700,
|
|
|
|
|
textTransform: 'uppercase',
|
|
|
|
|
backgroundColor: theme.palette.background.default,
|
|
|
|
|
[theme.breakpoints.down('sm')]: {
|
|
|
|
|
// 16px - 8px (margin of header)
|
|
|
|
|
paddingTop: isFirstItem ? '8px' : '6px',
|
|
|
|
|
},
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
const StyledGroupItemWrapper = styled(Box, { shouldForwardProp: (prop) => prop !== 'isLastItem' })<{
|
|
|
|
|
isLastItem: boolean;
|
|
|
|
|
}>(({ isLastItem }) => ({
|
|
|
|
|
padding: '0 10px',
|
|
|
|
|
paddingBottom: isLastItem ? '0' : '10px',
|
|
|
|
|
}));
|
2021-09-28 00:41:12 +03:30
|
|
|
|
|
|
|
|
function epochToDate(epoch: number) {
|
|
|
|
|
const date = new Date(0); // The 0 there is the key, which sets the date to the epoch
|
|
|
|
|
date.setUTCSeconds(epoch);
|
|
|
|
|
return date;
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-06 10:06:33 +01:00
|
|
|
function isTheSameDay(first: Date, second: Date) {
|
|
|
|
|
return (
|
|
|
|
|
first.getDate() === second.getDate() &&
|
|
|
|
|
first.getMonth() === second.getMonth() &&
|
|
|
|
|
first.getFullYear() === second.getFullYear()
|
|
|
|
|
);
|
2021-09-28 00:41:12 +03:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getDateString(date: Date) {
|
|
|
|
|
const today = new Date();
|
2023-03-23 13:59:32 +01:00
|
|
|
if (isTheSameDay(today, date)) return translate('global.date.label.today');
|
2021-09-28 00:41:12 +03:30
|
|
|
// calculate yesterday
|
|
|
|
|
const yesterday = new Date();
|
|
|
|
|
yesterday.setDate(today.getDate() - 1);
|
2023-03-23 13:59:32 +01:00
|
|
|
if (isTheSameDay(yesterday, date)) return translate('global.date.label.yesterday');
|
2021-09-28 00:41:12 +03:30
|
|
|
return date.toLocaleDateString();
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-18 13:48:01 +02:00
|
|
|
const groupByDate = (updates: IMangaChapter[]): [date: string, items: number][] => {
|
|
|
|
|
if (!updates.length) {
|
|
|
|
|
return [];
|
|
|
|
|
}
|
2021-09-28 00:41:12 +03:30
|
|
|
|
2023-05-18 13:48:01 +02:00
|
|
|
const dateToItemMap = new Map<string, number>();
|
|
|
|
|
updates.forEach((item) => {
|
|
|
|
|
const date = getDateString(epochToDate(item.chapter.fetchedAt));
|
|
|
|
|
dateToItemMap.set(date, (dateToItemMap.get(date) ?? 0) + 1);
|
2021-09-28 00:41:12 +03:30
|
|
|
});
|
|
|
|
|
|
2023-05-18 13:48:01 +02:00
|
|
|
return [...dateToItemMap.entries()];
|
|
|
|
|
};
|
2021-09-28 00:41:12 +03:30
|
|
|
|
|
|
|
|
const initialQueue = {
|
|
|
|
|
status: 'Stopped',
|
|
|
|
|
queue: [],
|
|
|
|
|
} as IQueue;
|
|
|
|
|
|
2022-11-26 13:51:56 +01:00
|
|
|
const Updates: React.FC = () => {
|
2023-03-23 13:59:32 +01:00
|
|
|
const { t } = useTranslation();
|
2021-09-28 00:41:12 +03:30
|
|
|
const history = useHistory();
|
|
|
|
|
|
|
|
|
|
const { setTitle, setAction } = useContext(NavbarContext);
|
2023-05-18 13:48:01 +02:00
|
|
|
const {
|
|
|
|
|
data: pages = [{ hasNextPage: false, page: [] }],
|
|
|
|
|
isLoading,
|
|
|
|
|
size: loadedPages,
|
|
|
|
|
setSize: setPages,
|
|
|
|
|
} = requestManager.useGetRecentlyUpdatedChapters();
|
|
|
|
|
const { hasNextPage } = pages[pages.length - 1];
|
|
|
|
|
const updateEntries = useMemo(
|
|
|
|
|
() => pages.map((page) => page.page).reduce((lastPageChapters, chapters) => [...lastPageChapters, ...chapters]),
|
|
|
|
|
[pages],
|
|
|
|
|
);
|
|
|
|
|
const groupedUpdates = useMemo(() => groupByDate(updateEntries), [updateEntries]);
|
|
|
|
|
const groupCounts: number[] = useMemo(() => groupedUpdates.map((group) => group[1]), [groupedUpdates]);
|
2021-09-28 00:41:12 +03:30
|
|
|
|
|
|
|
|
const [, setWsClient] = useState<WebSocket>();
|
|
|
|
|
const [{ queue }, setQueueState] = useState<IQueue>(initialQueue);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
2023-05-18 13:25:19 +02:00
|
|
|
const wsc = requestManager.getDownloadWebSocket();
|
2021-09-28 00:41:12 +03:30
|
|
|
wsc.onmessage = (e) => {
|
|
|
|
|
const data = JSON.parse(e.data) as IQueue;
|
|
|
|
|
setQueueState(data);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
setWsClient(wsc);
|
|
|
|
|
|
|
|
|
|
return () => wsc.close();
|
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
2023-03-23 13:59:32 +01:00
|
|
|
setTitle(t('updates.title'));
|
2021-09-28 00:41:12 +03:30
|
|
|
|
2023-03-11 18:05:58 +01:00
|
|
|
setAction(null);
|
2023-03-28 23:14:03 +02:00
|
|
|
}, [t]);
|
2021-09-28 00:41:12 +03:30
|
|
|
|
2023-05-18 13:48:01 +02:00
|
|
|
if (!isLoading && updateEntries.length === 0) {
|
2023-03-23 13:59:32 +01:00
|
|
|
return <EmptyView message={t('updates.error.label.no_updates_available')} />;
|
2023-02-06 10:06:33 +01:00
|
|
|
}
|
2021-09-28 00:41:12 +03:30
|
|
|
|
2022-11-26 13:51:56 +01:00
|
|
|
const downloadForChapter = (chapter: IChapter) => {
|
|
|
|
|
const { index, mangaId } = chapter;
|
|
|
|
|
return queue.find((q) => index === q.chapterIndex && mangaId === q.mangaId);
|
2021-09-28 00:41:12 +03:30
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const downloadChapter = (chapter: IChapter) => {
|
2023-05-18 13:25:19 +02:00
|
|
|
requestManager.addChapterToDownloadQueue(chapter.mangaId, chapter.index);
|
2021-09-28 00:41:12 +03:30
|
|
|
};
|
|
|
|
|
|
2023-05-18 13:48:01 +02:00
|
|
|
const loadMore = useCallback(() => {
|
|
|
|
|
if (!hasNextPage) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setPages(loadedPages + 1);
|
|
|
|
|
}, [hasNextPage, loadedPages]);
|
|
|
|
|
|
2021-09-28 00:41:12 +03:30
|
|
|
return (
|
2023-05-18 13:48:01 +02:00
|
|
|
<StyledGroupedVirtuoso
|
|
|
|
|
style={{
|
|
|
|
|
// override Virtuoso default values and set them with class
|
|
|
|
|
height: 'undefined',
|
|
|
|
|
}}
|
|
|
|
|
components={{
|
|
|
|
|
Footer: () => (isLoading ? <LoadingPlaceholder usePadding /> : null),
|
|
|
|
|
}}
|
|
|
|
|
overscan={window.innerHeight * 0.5}
|
|
|
|
|
endReached={loadMore}
|
|
|
|
|
groupCounts={groupCounts}
|
|
|
|
|
groupContent={(index) => (
|
|
|
|
|
<StyledGroupHeader variant="h5" isFirstItem={index === 0}>
|
|
|
|
|
{groupedUpdates[index][0]}
|
|
|
|
|
</StyledGroupHeader>
|
|
|
|
|
)}
|
|
|
|
|
itemContent={(index) => {
|
|
|
|
|
const { chapter, manga } = updateEntries[index];
|
|
|
|
|
const download = downloadForChapter(chapter);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<StyledGroupItemWrapper key={index} isLastItem={index === updateEntries.length - 1}>
|
|
|
|
|
<Card>
|
|
|
|
|
<CardActionArea
|
|
|
|
|
component={Link}
|
|
|
|
|
to={{
|
|
|
|
|
pathname: `/manga/${chapter.mangaId}/chapter/${chapter.index}`,
|
|
|
|
|
state: history.location.state,
|
|
|
|
|
}}
|
2021-11-10 23:04:04 +03:30
|
|
|
>
|
2023-05-18 13:48:01 +02:00
|
|
|
<CardContent
|
|
|
|
|
sx={{
|
|
|
|
|
display: 'flex',
|
|
|
|
|
justifyContent: 'space-between',
|
|
|
|
|
alignItems: 'center',
|
|
|
|
|
padding: 2,
|
2023-02-06 10:06:33 +01:00
|
|
|
}}
|
2022-11-26 13:51:56 +01:00
|
|
|
>
|
2023-05-18 13:48:01 +02:00
|
|
|
<Box sx={{ display: 'flex' }}>
|
|
|
|
|
<Avatar
|
|
|
|
|
variant="rounded"
|
|
|
|
|
sx={{
|
|
|
|
|
width: 56,
|
|
|
|
|
height: 56,
|
|
|
|
|
flex: '0 0 auto',
|
|
|
|
|
marginRight: 2,
|
|
|
|
|
imageRendering: 'pixelated',
|
|
|
|
|
}}
|
|
|
|
|
src={requestManager.getValidImgUrlFor(manga.thumbnailUrl)}
|
|
|
|
|
/>
|
|
|
|
|
<Box sx={{ display: 'flex', flexDirection: 'column' }}>
|
|
|
|
|
<Typography variant="h5" component="h2">
|
|
|
|
|
{manga.title}
|
|
|
|
|
</Typography>
|
|
|
|
|
<Typography variant="caption" display="block" gutterBottom>
|
|
|
|
|
{chapter.name}
|
|
|
|
|
</Typography>
|
2022-11-26 13:51:56 +01:00
|
|
|
</Box>
|
2023-05-18 13:48:01 +02:00
|
|
|
</Box>
|
|
|
|
|
{download && <DownloadStateIndicator download={download} />}
|
|
|
|
|
{download == null && !chapter.downloaded && (
|
|
|
|
|
<IconButton
|
|
|
|
|
onClick={(e) => {
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
downloadChapter(chapter);
|
|
|
|
|
}}
|
|
|
|
|
size="large"
|
|
|
|
|
>
|
|
|
|
|
<DownloadIcon />
|
|
|
|
|
</IconButton>
|
|
|
|
|
)}
|
|
|
|
|
</CardContent>
|
|
|
|
|
</CardActionArea>
|
|
|
|
|
</Card>
|
|
|
|
|
</StyledGroupItemWrapper>
|
|
|
|
|
);
|
|
|
|
|
}}
|
|
|
|
|
/>
|
2021-09-28 00:41:12 +03:30
|
|
|
);
|
2022-11-26 13:51:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default Updates;
|