mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-06 14:38:48 +00:00
fix double posts on double click
This commit is contained in:
parent
0a3a406180
commit
2641e5cf19
1 changed files with 294 additions and 239 deletions
|
@ -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,9 +21,9 @@ import "./postCreation.css";
|
|||
const theme = createTheme({
|
||||
palette: {
|
||||
primary: {
|
||||
main:'#e79a0e;'
|
||||
}
|
||||
}
|
||||
main: "#e79a0e;",
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
function PostCreation() {
|
||||
|
@ -25,6 +32,7 @@ function PostCreation(){
|
|||
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>("");
|
||||
|
@ -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) {
|
||||
inputFile.current?.click();
|
||||
}
|
||||
}
|
||||
};
|
||||
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);
|
||||
|
||||
event.preventDefault();
|
||||
if (!fileList) {
|
||||
return;
|
||||
|
@ -102,21 +118,22 @@ 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);
|
||||
})
|
||||
});
|
||||
|
||||
try {
|
||||
await api.post("/posts/upload", fData)
|
||||
navigate(`/profile/${user?.username}`)
|
||||
await api.post("/posts/upload", fData);
|
||||
navigate(`/profile/${user?.username}`);
|
||||
} catch (error: any) {
|
||||
console.log(error);
|
||||
}
|
||||
}
|
||||
};
|
||||
const onCancel = () => {
|
||||
navigate(`/profile/${user?.username}`)
|
||||
navigate(`/profile/${user?.username}`);
|
||||
};
|
||||
|
||||
const files = fileList ? [...fileList] : [];
|
||||
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue