mirror of
https://github.com/tachiyomiorg/tachiyomi-extensions-inspector.git
synced 2025-01-12 00:39:07 +01:00
Loading placeholder & css fixes
This commit is contained in:
parent
5a75f26791
commit
32dd543562
57
webUI/react/src/components/LoadingPlaceholder.tsx
Normal file
57
webUI/react/src/components/LoadingPlaceholder.tsx
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
||||||
|
/* eslint-disable react/jsx-props-no-spreading */
|
||||||
|
/* eslint-disable react/require-default-props */
|
||||||
|
/*
|
||||||
|
* 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
|
||||||
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
import React from 'react';
|
||||||
|
import { makeStyles } from '@material-ui/core/styles';
|
||||||
|
import CircularProgress from '@material-ui/core/CircularProgress';
|
||||||
|
|
||||||
|
const useStyles = makeStyles({
|
||||||
|
loading: {
|
||||||
|
margin: '10px 0',
|
||||||
|
display: 'flex',
|
||||||
|
justifyContent: 'center',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
interface IProps {
|
||||||
|
shouldRender: boolean | (() => boolean)
|
||||||
|
children?: React.ReactNode
|
||||||
|
component?: string | React.FunctionComponent<any> | React.ComponentClass<any, any>
|
||||||
|
componentProps?: any
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function LoadingPlaceholder(props: IProps) {
|
||||||
|
const {
|
||||||
|
children, shouldRender, component, componentProps,
|
||||||
|
} = props;
|
||||||
|
const classes = useStyles();
|
||||||
|
|
||||||
|
const condition = shouldRender instanceof Function ? shouldRender() : shouldRender;
|
||||||
|
|
||||||
|
if (condition) {
|
||||||
|
if (component) {
|
||||||
|
return React.createElement(component, componentProps);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (children) {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{children}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={classes.loading}>
|
||||||
|
<CircularProgress thickness={5} />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
@ -22,8 +22,13 @@ const useStyles = (inLibrary: string) => makeStyles((theme: Theme) => ({
|
|||||||
root: {
|
root: {
|
||||||
width: '100%',
|
width: '100%',
|
||||||
[theme.breakpoints.up('md')]: {
|
[theme.breakpoints.up('md')]: {
|
||||||
position: 'fixed',
|
position: 'sticky',
|
||||||
|
top: '64px',
|
||||||
|
left: '0px',
|
||||||
width: '50vw',
|
width: '50vw',
|
||||||
|
height: 'calc(100vh - 64px)',
|
||||||
|
alignSelf: 'flex-start',
|
||||||
|
overflowY: 'auto',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
top: {
|
top: {
|
||||||
|
@ -14,6 +14,7 @@ import ChapterCard from '../components/ChapterCard';
|
|||||||
import MangaDetails from '../components/MangaDetails';
|
import MangaDetails from '../components/MangaDetails';
|
||||||
import NavbarContext from '../context/NavbarContext';
|
import NavbarContext from '../context/NavbarContext';
|
||||||
import client from '../util/client';
|
import client from '../util/client';
|
||||||
|
import LoadingPlaceholder from '../components/LoadingPlaceholder';
|
||||||
|
|
||||||
const useStyles = makeStyles((theme: Theme) => ({
|
const useStyles = makeStyles((theme: Theme) => ({
|
||||||
root: {
|
root: {
|
||||||
@ -26,8 +27,10 @@ const useStyles = makeStyles((theme: Theme) => ({
|
|||||||
listStyle: 'none',
|
listStyle: 'none',
|
||||||
padding: 0,
|
padding: 0,
|
||||||
[theme.breakpoints.up('md')]: {
|
[theme.breakpoints.up('md')]: {
|
||||||
width: '50%',
|
width: '50vw',
|
||||||
marginLeft: '50%',
|
height: 'calc(100vh - 64px)',
|
||||||
|
overflowY: 'auto',
|
||||||
|
margin: 0,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -65,20 +68,23 @@ export default function Manga() {
|
|||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const chapterCards = (
|
const chapterCards = (
|
||||||
<ol className={classes.chapters}>
|
<LoadingPlaceholder
|
||||||
{chapters.length === 0
|
shouldRender
|
||||||
&& (
|
>
|
||||||
<div className={classes.loading}>
|
<ol className={classes.chapters}>
|
||||||
<CircularProgress thickness={5} />
|
{chapters.map((chapter) => (<ChapterCard chapter={chapter} />))}
|
||||||
</div>
|
</ol>
|
||||||
) }
|
</LoadingPlaceholder>
|
||||||
{chapters.map((chapter) => (<ChapterCard chapter={chapter} />))}
|
|
||||||
</ol>
|
|
||||||
);
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={classes.root}>
|
<div className={classes.root}>
|
||||||
{manga && <MangaDetails manga={manga} />}
|
<LoadingPlaceholder
|
||||||
|
shouldRender={manga !== undefined}
|
||||||
|
component={MangaDetails}
|
||||||
|
componentProps={{ manga }}
|
||||||
|
/>
|
||||||
{chapterCards}
|
{chapterCards}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user