92 lines
2.9 KiB
TypeScript
92 lines
2.9 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
/* 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 CircularProgress from '@material-ui/core/CircularProgress';
|
|
import { makeStyles } from '@material-ui/core/styles';
|
|
import React, { useContext, useEffect, useState } from 'react';
|
|
import { useParams } from 'react-router-dom';
|
|
import Page from '../components/Page';
|
|
import ReaderNavBar, { IReaderSettings } from '../components/ReaderNavBar';
|
|
import NavbarContext from '../context/NavbarContext';
|
|
import client from '../util/client';
|
|
import useLocalStorage from '../util/useLocalStorage';
|
|
|
|
const useStyles = makeStyles({
|
|
reader: {
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
justifyContent: 'center',
|
|
margin: '0 auto',
|
|
},
|
|
|
|
loading: {
|
|
margin: '50px auto',
|
|
},
|
|
});
|
|
|
|
const range = (n:number) => Array.from({ length: n }, (value, key) => key);
|
|
|
|
export default function Reader() {
|
|
const classes = useStyles();
|
|
|
|
const [settings, setSettings] = useState<IReaderSettings>({});
|
|
|
|
const [serverAddress] = useLocalStorage<String>('serverBaseURL', '');
|
|
|
|
const { chapterId, mangaId } = useParams<{chapterId: string, mangaId: string}>();
|
|
const [manga, setManga] = useState<IMangaCard | IManga>({ id: +mangaId, title: '', thumbnailUrl: '' });
|
|
const [pageCount, setPageCount] = useState<number>(-1);
|
|
|
|
const { setOverride, setTitle } = useContext(NavbarContext);
|
|
useEffect(() => {
|
|
setOverride(
|
|
{
|
|
status: true,
|
|
value: <ReaderNavBar
|
|
settings={settings}
|
|
setSettings={setSettings}
|
|
manga={manga}
|
|
/>,
|
|
},
|
|
);
|
|
|
|
// clean up for when we leave the reader
|
|
return () => setOverride({ status: false, value: <div /> });
|
|
}, [manga]);
|
|
|
|
useEffect(() => {
|
|
setTitle('Reader');
|
|
client.get(`/api/v1/manga/${mangaId}/`)
|
|
.then((response) => response.data)
|
|
.then((data: IManga) => {
|
|
setManga(data);
|
|
setTitle(data.title);
|
|
});
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
client.get(`/api/v1/manga/${mangaId}/chapter/${chapterId}`)
|
|
.then((response) => response.data)
|
|
.then((data:IChapter) => {
|
|
setPageCount(data.pageCount);
|
|
});
|
|
}, []);
|
|
|
|
if (pageCount === -1) {
|
|
return (
|
|
<div className={classes.loading}>
|
|
<CircularProgress thickness={5} />
|
|
</div>
|
|
);
|
|
}
|
|
return (
|
|
<div className={classes.reader}>
|
|
{range(pageCount).map((index) => (
|
|
<Page key={index} index={index} src={`${serverAddress}/api/v1/manga/${mangaId}/chapter/${chapterId}/page/${index}`} />
|
|
))}
|
|
</div>
|
|
);
|
|
}
|