migrate PageNumber to Mui 5 (#90)
* migrate PageNumber to Mui 5 * Update src/components/reader/PageNumber.tsx Co-authored-by: Sascha Hahne <ntbm@users.noreply.github.com> Co-authored-by: Sascha Hahne <ntbm@users.noreply.github.com>
This commit is contained in:
@@ -5,21 +5,8 @@
|
|||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
* 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/. */
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
import makeStyles from '@mui/styles/makeStyles';
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import { Box } from '@mui/system';
|
||||||
const useStyles = (settings: IReaderSettings) => makeStyles({
|
|
||||||
pageNumber: {
|
|
||||||
display: settings.showPageNumber ? 'block' : 'none',
|
|
||||||
position: 'fixed',
|
|
||||||
bottom: '50px',
|
|
||||||
right: settings.staticNav ? 'calc((100vw - 325px)/2)' : 'calc((100vw - 25px)/2)',
|
|
||||||
padding: '2px',
|
|
||||||
textAlign: 'center',
|
|
||||||
backgroundColor: 'rgba(0, 0, 0, 0.3)',
|
|
||||||
borderRadius: '10px',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
interface IProps {
|
interface IProps {
|
||||||
settings: IReaderSettings
|
settings: IReaderSettings
|
||||||
@@ -29,11 +16,22 @@ interface IProps {
|
|||||||
|
|
||||||
export default function PageNumber(props: IProps) {
|
export default function PageNumber(props: IProps) {
|
||||||
const { settings, curPage, pageCount } = props;
|
const { settings, curPage, pageCount } = props;
|
||||||
const classes = useStyles(settings)();
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={classes.pageNumber}>
|
<Box sx={{
|
||||||
|
display: settings.showPageNumber ? 'block' : 'none',
|
||||||
|
position: 'fixed',
|
||||||
|
bottom: '50px',
|
||||||
|
right: settings.staticNav ? 'calc((100vw - 325px)/2)' : 'calc((100vw - 25px)/2)',
|
||||||
|
padding: '2px',
|
||||||
|
paddingLeft: '4px',
|
||||||
|
paddingRight: '4px',
|
||||||
|
textAlign: 'center',
|
||||||
|
backgroundColor: 'rgba(0, 0, 0, 0.3)',
|
||||||
|
borderRadius: '10px',
|
||||||
|
}}
|
||||||
|
>
|
||||||
{`${curPage + 1} / ${pageCount}`}
|
{`${curPage + 1} / ${pageCount}`}
|
||||||
</div>
|
</Box>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user