mirror of
https://github.com/qwertyforce/scenery.git
synced 2025-05-02 13:39:40 +00:00
69 lines
1.8 KiB
TypeScript
69 lines
1.8 KiB
TypeScript
import AppBar from '../components/AppBar'
|
|
import db_ops from '../server/helpers/db_ops'
|
|
import Button from '@material-ui/core/Button';
|
|
import axios from 'axios'
|
|
import TextField from '@material-ui/core/TextField';
|
|
|
|
import ErrorPage from 'next/error'
|
|
import { useState } from 'react';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
export default function deleteImage(props: any) {
|
|
if (props.err) {
|
|
return <ErrorPage statusCode={404} />
|
|
}
|
|
const [ImageID, setID] = useState(0);
|
|
const handleKeyPress = (e: React.KeyboardEvent<HTMLDivElement>) => {
|
|
if (e.keyCode === 13 || e.which === 13) {
|
|
delete_image();
|
|
}
|
|
};
|
|
const delete_image = () => {
|
|
axios(`/delete_image`, {
|
|
method: "post",
|
|
data: { id: ImageID },
|
|
withCredentials: true
|
|
}).then((resp) => {
|
|
alert(JSON.stringify(resp.data))
|
|
setID(0)
|
|
}).catch((err) => {
|
|
alert('check console for error message')
|
|
console.log(err)
|
|
setID(0)
|
|
})
|
|
}
|
|
|
|
|
|
return (
|
|
<div>
|
|
<AppBar />
|
|
<TextField
|
|
value ={ImageID}
|
|
fullWidth
|
|
type="number"
|
|
label=" image id"
|
|
placeholder="image id"
|
|
margin="normal"
|
|
onChange={(e) => setID(parseInt(e.target.value)||0)}
|
|
onKeyPress={(e) => handleKeyPress(e)}
|
|
/>
|
|
<Button onClick={() => { delete_image() }} variant="contained" color="primary" >Delete image</Button>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
export async function getServerSideProps(context: any) {
|
|
if (context.req.session.authed && context.req.session.user_id) {
|
|
const user = await db_ops.activated_user.find_user_by_id(context.req.session.user_id)
|
|
if (user[0].isAdmin) {
|
|
return {
|
|
props: {},
|
|
}
|
|
}
|
|
}
|
|
return {
|
|
props: { err: true },
|
|
}
|
|
}
|