Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | 1x 17x 17x 17x 17x 17x 3x 17x 17x 4x 17x 3x 14x | import React from "react";
import BasicLayout from "main/layouts/BasicLayout/BasicLayout";
import AnnouncementForm from "main/components/Announcement/AnnouncementForm";
import { useParams, Navigate } from 'react-router-dom'
import { toast } from "react-toastify"
import { useBackend, useBackendMutation } from "main/utils/useBackend";
const AdminCreateAnnouncementsPage = () => {
const objectToAxiosParams = (newAnnouncement) => ({
url:`/api/announcements/post/${commonsId}`,
method: "POST",
params: {
announcementText: newAnnouncement.announcementText,
startDate: newAnnouncement.startDate,
endDate: newAnnouncement.endDate,
}
});
const { commonsId } = useParams();
// Stryker disable all (Copied from frontend/src/main/pages/AdminViewPlayPage.js)
const { data: commonsPlus } = useBackend(
[`/api/commons/plus?id=${commonsId}`],
{
method: "GET",
url: "/api/commons/plus",
params: {
id: commonsId,
},
}
);
// Stryker restore all
const commonsName = commonsPlus?.commons.name;
const onSuccess = (announcement) => {
toast(
<div>
<p>Announcement successfully created!</p>
<ul>
<li>{`ID: ${announcement.id}`}</li>
<li>{`Start Date: ${announcement.startDate}`}</li>
<li>{`End Date: ${announcement.endDate}`}</li>
<li>{`Announcement: ${announcement.announcementText}`}</li>
</ul>
</div>
);
};
// Stryker disable all (Copied from frontend/src/main/pages/AdminCreateCommonsPage.js)
const mutation = useBackendMutation(
objectToAxiosParams,
{ onSuccess },
["/api/announcements/getbycommonsid"]
);
// Stryker restore all
const submitAction = async (data) => {
mutation.mutate(data);
}
if (mutation.isSuccess) {
return <Navigate to="/" />
}
return (
<BasicLayout>
<h2>Create Announcement for {commonsName}</h2>
<AnnouncementForm
submitAction={submitAction}
/>
</BasicLayout>
);
};
export default AdminCreateAnnouncementsPage; |