1
Fork 0
mirror of https://github.com/diced/zipline.git synced 2025-04-04 23:21:17 -05:00

fix(api): fix many bugs

This commit is contained in:
diced 2021-08-26 15:18:14 -07:00
parent aeb2638d1e
commit dfa0419a0a
No known key found for this signature in database
GPG key ID: 85AB64C74535D76E
4 changed files with 25 additions and 10 deletions

View file

@ -4,18 +4,15 @@ import { Grid, Pagination, Box, Typography } from '@material-ui/core';
import Backdrop from 'components/Backdrop';
import ZiplineImage from 'components/Image';
import useFetch from 'hooks/useFetch';
import { useStoreSelector } from 'lib/redux/store';
export default function Upload() {
const user = useStoreSelector(state => state.user);
const [pages, setPages] = useState([]);
const [page, setPage] = useState(1);
const [loading, setLoading] = useState(true);
const updatePages = async () => {
setLoading(true);
const pages = await useFetch('/api/user/images?paged=true');
const pages = await useFetch('/api/user/images?paged=true&filter=image');
setPages(pages);
setLoading(false);
};

17
src/pages/404.tsx Normal file
View file

@ -0,0 +1,17 @@
import React from 'react';
import { Box, Typography } from '@material-ui/core';
export default function FourOhFour() {
return (
<>
<Box
display='flex'
justifyContent='center'
alignItems='center'
minHeight='100vh'
>
<Typography variant='h2'>404 - Not Found</Typography>
</Box>
</>
);
}

View file

@ -56,6 +56,10 @@ export const getServerSideProps: GetServerSideProps = async (context) => {
}
});
if (!image) return {
notFound: true
};
const user = await prisma.user.findFirst({
select: {
embedTitle: true,
@ -66,11 +70,7 @@ export const getServerSideProps: GetServerSideProps = async (context) => {
id: image.userId
}
});
if (!image) return {
notFound: true
};
if (!image.mimetype.startsWith('image')) return {
redirect: {
permanent: true,

View file

@ -25,7 +25,7 @@ async function handler(req: NextApiReq, res: NextApiRes) {
return res.json(image);
} else {
const images = await prisma.image.findMany({
let images = await prisma.image.findMany({
where: {
userId: user.id
},
@ -40,6 +40,7 @@ async function handler(req: NextApiReq, res: NextApiRes) {
// @ts-ignore
images.map(image => image.url = `${config.uploader.route}/${image.file}`);
if (req.query.filter && req.query.filter === 'image') images = images.filter(x => x.mimetype.startsWith('image'));
return res.json(req.query.paged ? chunk(images, 16) : images);
}