236 lines
7.6 KiB
TypeScript
236 lines
7.6 KiB
TypeScript
import {
|
|
getKeyValue,
|
|
Table,
|
|
TableBody,
|
|
TableCell,
|
|
TableColumn,
|
|
TableHeader,
|
|
TableRow,
|
|
Button,
|
|
Tooltip,
|
|
Avatar,
|
|
Modal,
|
|
ModalContent,
|
|
ModalHeader,
|
|
ModalBody,
|
|
ModalFooter,
|
|
} from "@nextui-org/react";
|
|
import { useEffect, useState } from "react";
|
|
import instance from "../security/http";
|
|
import config from "../config";
|
|
import { popErrorToast, popToast } from "../utilities";
|
|
import { ClipboardDocumentIcon, TrashDeleteIcon } from "../icons";
|
|
|
|
export default function CommunityPostManagement() {
|
|
const [userInformationList, setUserInformationList] = useState<any[]>([]);
|
|
const [communityPostList, setCommunityPostList] = useState<any[]>([]);
|
|
const [mergedList, setMergedList] = useState<any[]>([]);
|
|
const [isModalOpen, setIsModalOpen] = useState(false);
|
|
const [postToDelete, setPostToDelete] = useState<any>(null);
|
|
|
|
const columns = [
|
|
{ key: "profilePicture", label: "PROFILE PICTURE" },
|
|
{ key: "firstName", label: "FIRST NAME" },
|
|
{ key: "lastName", label: "LAST NAME" },
|
|
{ key: "title", label: "TITLE" },
|
|
{ key: "content", label: "CONTENT" },
|
|
{ key: "postImage", label: "IMAGE" },
|
|
{ key: "actions", label: "ACTIONS" }
|
|
];
|
|
|
|
const populateUserInformationList = () => {
|
|
instance
|
|
.get(`${config.serverAddress}/users/all`)
|
|
.then((response) => {
|
|
const users = response.data;
|
|
const usersWithProfilePictures = users.map((user: { id: string; }) => ({
|
|
...user,
|
|
profilePicture: `${config.serverAddress}/users/profile-image/${user.id}`,
|
|
}));
|
|
setUserInformationList(usersWithProfilePictures);
|
|
console.log("userwithpfp:", usersWithProfilePictures); // Ensure URLs are correct
|
|
})
|
|
.catch((error) => {
|
|
popErrorToast(error);
|
|
});
|
|
};
|
|
|
|
useEffect(() => {
|
|
populateUserInformationList();
|
|
}, []);
|
|
|
|
const populateCommunityPostList = () => {
|
|
instance
|
|
.get(`${config.serverAddress}/post`)
|
|
.then((response) => {
|
|
setCommunityPostList(response.data);
|
|
console.log(response.data);
|
|
})
|
|
.catch((error) => {
|
|
popErrorToast(error);
|
|
});
|
|
};
|
|
|
|
useEffect(() => {
|
|
populateCommunityPostList();
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (userInformationList.length > 0 && communityPostList.length > 0) {
|
|
const mergedData = communityPostList.map((post) => {
|
|
const user = userInformationList.find(
|
|
(user) => user.id === post.userId
|
|
);
|
|
return {
|
|
postId: post.id,
|
|
userId: user?.id,
|
|
...post,
|
|
...user,
|
|
uniqueKey: `${post.id}-${user?.id}`
|
|
};
|
|
});
|
|
|
|
// Remove the duplicate 'id' field from merged data
|
|
const removeDuplicateId = mergedData.map(item => {
|
|
const { id, ...rest } = item;
|
|
return { ...rest };
|
|
});
|
|
|
|
setMergedList(removeDuplicateId);
|
|
console.log("merged data: ", removeDuplicateId);
|
|
}
|
|
}, [userInformationList, communityPostList]);
|
|
|
|
const handleCopyID = (postId: string, title: string) => {
|
|
navigator.clipboard.writeText(postId);
|
|
popToast(title + "'s Post ID has been copied!", 1);
|
|
};
|
|
|
|
const handleDeleteClick = (item: any) => {
|
|
setPostToDelete(item);
|
|
setIsModalOpen(true);
|
|
};
|
|
|
|
const handleDeleteConfirm = async () => {
|
|
if (postToDelete) {
|
|
try {
|
|
await instance.delete(`${config.serverAddress}/post/${postToDelete.postId}`);
|
|
populateCommunityPostList();
|
|
setIsModalOpen(false);
|
|
} catch (error) {
|
|
console.error("Error deleting post:", error);
|
|
}
|
|
}
|
|
};
|
|
|
|
// Function to safely render item values
|
|
const renderCellValue = (item: any, columnKey: any) => {
|
|
const value = getKeyValue(item, columnKey);
|
|
if (typeof value === "object" && value !== null) {
|
|
return JSON.stringify(value); // Convert object to string
|
|
}
|
|
return value;
|
|
};
|
|
|
|
return (
|
|
<div>
|
|
{mergedList.length > 0 && (
|
|
<div className="flex flex-col p-8">
|
|
<p className="text-4xl font-bold">Community Post</p>
|
|
<Table aria-label="User Information Table">
|
|
<TableHeader columns={columns}>
|
|
{(column) => (
|
|
<TableColumn key={column.key}>{column.label}</TableColumn>
|
|
)}
|
|
</TableHeader>
|
|
<TableBody items={mergedList}>
|
|
{(item) => (
|
|
<TableRow key={item.postId}>
|
|
{(columnKey) => {
|
|
const value = renderCellValue(item, columnKey);
|
|
|
|
return (
|
|
<TableCell>
|
|
{columnKey === "profilePicture" ? (
|
|
item.profilePicture ? (
|
|
<Avatar
|
|
src={item.profilePicture}
|
|
alt="Profile"
|
|
size="lg"
|
|
/>
|
|
) : (
|
|
"No Image"
|
|
)
|
|
) : columnKey === "postImage" ? (
|
|
value ? (
|
|
<img src={`${config.serverAddress}/post/post-image/${item.postId}`}
|
|
className="w-[150px] h-auto rounded-lg object-cover"/>
|
|
) : (
|
|
"No Image"
|
|
)
|
|
) : columnKey === "actions" ? (
|
|
<div className="flex gap-2">
|
|
<Tooltip content="Copy ID">
|
|
<Button
|
|
variant="light"
|
|
isIconOnly
|
|
onClick={() =>
|
|
handleCopyID(item.postId, item.title)
|
|
}
|
|
aria-label="Copy postId, title"
|
|
>
|
|
<ClipboardDocumentIcon />
|
|
</Button>
|
|
</Tooltip>
|
|
<Tooltip content="Delete">
|
|
<Button
|
|
variant="light"
|
|
isIconOnly
|
|
aria-label="Delete-Post"
|
|
className="text-red-500"
|
|
onClick={() => handleDeleteClick(item)}
|
|
>
|
|
<TrashDeleteIcon />
|
|
</Button>
|
|
</Tooltip>
|
|
</div>
|
|
) : (
|
|
<p>
|
|
{value}
|
|
</p>
|
|
)}
|
|
|
|
</TableCell>
|
|
);
|
|
}}
|
|
</TableRow>
|
|
)}
|
|
</TableBody>
|
|
</Table>
|
|
</div>
|
|
)}
|
|
|
|
<Modal isOpen={isModalOpen} onClose={() => setIsModalOpen(false)} isDismissable={false} isKeyboardDismissDisabled={true}>
|
|
<ModalContent>
|
|
<>
|
|
<ModalHeader className="flex flex-col text-danger gap-1">
|
|
{postToDelete?.title ? `DELETING POST: ${postToDelete.title}` : "Delete Post"}
|
|
</ModalHeader>
|
|
<ModalBody>
|
|
<p>Are you sure you want to delete this post?</p>
|
|
</ModalBody>
|
|
<ModalFooter>
|
|
<Button color="danger" variant="light" onPress={() => setIsModalOpen(false)}>
|
|
Cancel
|
|
</Button>
|
|
<Button color="danger" onPress={handleDeleteConfirm}>
|
|
Delete
|
|
</Button>
|
|
</ModalFooter>
|
|
</>
|
|
</ModalContent>
|
|
</Modal>
|
|
</div>
|
|
);
|
|
}
|