fix double posts on double click

This commit is contained in:
Niklas 2025-07-04 11:25:18 +02:00 committed by MisbehavedNinjaRadiator
parent 0a3a406180
commit 2641e5cf19

View file

@ -1,6 +1,13 @@
import { useState, useEffect, useRef } from "react";
import { useNavigate } from "react-router-dom";
import { Box, Card, CardMedia, CardActionArea, IconButton, Typography } from "@mui/material";
import {
Box,
Card,
CardMedia,
CardActionArea,
IconButton,
Typography,
} from "@mui/material";
import Chip from "@mui/material/Chip";
import Autocomplete from "@mui/material/Autocomplete";
import TextField from "@mui/material/TextField";
@ -14,17 +21,18 @@ import "./postCreation.css";
const theme = createTheme({
palette: {
primary: {
main:'#e79a0e;'
}
}
main: "#e79a0e;",
},
},
});
function PostCreation(){
const {user} = useAuth();
function PostCreation() {
const { user } = useAuth();
interface ImageItem {
src: string;
title: string;
}
const [isSend, setIsSend] = useState<boolean>(false);
const [options, setOptions] = useState<string[]>([]);
const [tags, setTags] = useState<string[]>([]);
const [description, setDescription] = useState<string>("");
@ -33,7 +41,7 @@ function PostCreation(){
const [data, setData] = useState<ImageItem[]>([]);
const navigate = useNavigate();
const [fileList,setFileList] = useState<File[]>([]);
const [fileList, setFileList] = useState<File[]>([]);
const inputFile = useRef<HTMLInputElement | null>(null);
useEffect(() => {
@ -46,7 +54,9 @@ function PostCreation(){
console.log(err);
}
})();
return () => { cancelled = true; };
return () => {
cancelled = true;
};
}, []);
const handleChange = (event: React.ChangeEvent<HTMLTextAreaElement>) => {
@ -69,31 +79,37 @@ function PostCreation(){
const newItems: ImageItem[] = Array.from(files).map((file) => ({
src: URL.createObjectURL(file),
title: file.name,
}
));
}));
const lastImageUrl = newItems[newItems.length - 1].src;
setData((prev) => [...prev, ...newItems]);
setSelectedImage(lastImageUrl);
setFileList(prev => [...prev, ...fileArr]);
setFileList((prev) => [...prev, ...fileArr]);
}
};
const onEmptyImgClick = () =>{
if(inputFile.current){
const onEmptyImgClick = () => {
if (inputFile.current) {
inputFile.current?.click();
}
}
const handleDelete = (idx: number) =>{
};
const handleDelete = (idx: number) => {
setData((prev) => prev.filter((_, i) => i !== idx));
if((idx-1)<0){
if(data.length == 1){setSelectedImage("");}
else{setSelectedImage(data[idx+1].src);}
if (idx - 1 < 0) {
if (data.length == 1) {
setSelectedImage("");
} else {
setSelectedImage(data[idx + 1].src);
}
else {setSelectedImage(data[idx-1].src);}
} else {
setSelectedImage(data[idx - 1].src);
}
};
const onSubmit = async (event: React.FormEvent) => {
if (!isSend) {
setIsSend(true);
const onSubmit = async(event: React.FormEvent) =>{
event.preventDefault();
if (!fileList) {
return;
@ -102,26 +118,27 @@ function PostCreation(){
files.forEach((file, i) => {
fData.append(`images`, file, file.name);
});
fData.append('status','PUBLIC');
fData.append('description', description);
fData.append("status", "PUBLIC");
fData.append("description", description);
tags.forEach((tag) => {
fData.append("tags" ,tag);
})
fData.append("tags", tag);
});
try {
await api.post("/posts/upload", fData)
navigate(`/profile/${user?.username}`)
} catch (error:any) {
await api.post("/posts/upload", fData);
navigate(`/profile/${user?.username}`);
} catch (error: any) {
console.log(error);
}
}
};
const onCancel= () => {
navigate(`/profile/${user?.username}`)
const onCancel = () => {
navigate(`/profile/${user?.username}`);
};
const files = fileList ? [...fileList] : [];
return(
return (
<ThemeProvider theme={theme}>
<div className="create-display">
<div className="create-part">
@ -129,30 +146,44 @@ function PostCreation(){
<h1>Create Post</h1>
<div className="create-layout">
<div className="create-preview">
{selectedImage?
<img src={selectedImage} className="create-post-image" alt="Add an Image"></img>:
<label className="create-post-img-layer" onClick={onEmptyImgClick}>
{selectedImage ? (
<img
src={selectedImage}
className="create-post-image"
alt="Add an Image"
></img>
) : (
<label
className="create-post-img-layer"
onClick={onEmptyImgClick}
>
<strong>Add Picture</strong>
</label>}
</label>
)}
</div>
<div className="create-post-desc">
<h2>Description*</h2>
<textarea className="create-post-description" value={description} onChange={handleChange} required></textarea>
<textarea
className="create-post-description"
value={description}
onChange={handleChange}
required
></textarea>
</div>
<Box
className="strip"
sx={{
display: 'flex',
display: "flex",
gap: 1,
py: 1,
overflowX: 'auto',
overflowY: 'hidden',
width: '100%',
maxWidth: { xs: '90vw', sm: '600px' },
mx: 'auto',
scrollSnapType: 'x mandatory',
'& > *': { scrollSnapAlign: 'center' },
'::-webkit-scrollbar': { display: 'none' },
overflowX: "auto",
overflowY: "hidden",
width: "100%",
maxWidth: { xs: "90vw", sm: "600px" },
mx: "auto",
scrollSnapType: "x mandatory",
"& > *": { scrollSnapAlign: "center" },
"::-webkit-scrollbar": { display: "none" },
}}
>
{/* Upload card */}
@ -163,21 +194,27 @@ function PostCreation(){
minWidth: 60,
width: 60,
height: 60,
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
display: "flex",
alignItems: "center",
justifyContent: "center",
flexShrink: 0,
}}
>
<label style={{ cursor: 'pointer', width: '100%', height: '100%' }}>
<img src="/assets/icons/add-plus.svg" alt="Upload" style={{ width: '100%', height: '100%' }}/>
<label
style={{ cursor: "pointer", width: "100%", height: "100%" }}
>
<img
src="/assets/icons/add-plus.svg"
alt="Upload"
style={{ width: "100%", height: "100%" }}
/>
<input
id="create-file-upload"
type="file"
accept="image/*"
multiple
onChange={handleImageUpload}
style={{ display: 'none' }}
style={{ display: "none" }}
ref={inputFile}
required
/>
@ -190,7 +227,7 @@ function PostCreation(){
key={`${item.title}-${idx}`}
variant="outlined"
sx={{
position: 'relative',
position: "relative",
minWidth: 60,
width: 60,
height: 60,
@ -206,22 +243,26 @@ function PostCreation(){
handleDelete(idx);
}}
sx={{
position: 'absolute',
position: "absolute",
top: 2,
right: 2,
backgroundColor: 'background.paper',
backgroundColor: "background.paper",
zIndex: 1,
}}
>
<CloseIcon fontSize="small" />
</IconButton>
<CardActionArea sx={{ width: '100%', height: '100%' }}>
<CardActionArea sx={{ width: "100%", height: "100%" }}>
<CardMedia
component="img"
image={item.src}
alt={item.title}
sx={{ width: '100%', height: '100%', objectFit: 'cover' }}
sx={{
width: "100%",
height: "100%",
objectFit: "cover",
}}
/>
</CardActionArea>
</Card>
@ -241,7 +282,12 @@ function PostCreation(){
value.map((tags: string, index: number) => {
const { key, ...itemProps } = getItemProps({ index });
return (
<Chip variant="outlined" label={tags} key={key} {...itemProps} />
<Chip
variant="outlined"
label={tags}
key={key}
{...itemProps}
/>
);
})
}
@ -249,15 +295,24 @@ function PostCreation(){
<TextField
{...params}
variant="outlined"
color='primary'
color="primary"
label="Tags"
placeholder="Add Tags"
/>
)}
/>
<div className="create-buttons">
<ButtonPrimary style="secondary" label="Cancel" type="button" onClick={onCancel} ></ButtonPrimary>
<ButtonPrimary style="primary" label="Post" type="submit" ></ButtonPrimary>
<ButtonPrimary
style="secondary"
label="Cancel"
type="button"
onClick={onCancel}
></ButtonPrimary>
<ButtonPrimary
style="primary"
label="Post"
type="submit"
></ButtonPrimary>
</div>
</div>
</form>