Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make event approval buttons do something
  • Loading branch information
regalijan committed Feb 20, 2024
1 parent 51b8822 commit a64e949
Showing 1 changed file with 49 additions and 3 deletions.
52 changes: 49 additions & 3 deletions app/routes/events-team.tsx
Expand Up @@ -11,6 +11,7 @@ import {
Stack,
StackDivider,
Text,
useToast,
VStack,
} from "@chakra-ui/react";
import { useLoaderData } from "@remix-run/react";
Expand All @@ -19,7 +20,7 @@ import { type ReactNode } from "react";
export async function loader({ context }: { context: RequestContext }) {
const now = new Date();
const monthEventList = await context.env.D1.prepare(
"SELECT approved, created_by, day, month, pending, type, year FROM events WHERE month = ? AND year = ?;",
"SELECT approved, created_by, day, id, month, pending, type, year FROM events WHERE month = ? AND year = ?;",
)
.bind(now.getUTCMonth() + 1, now.getUTCFullYear())
.all();
Expand All @@ -46,6 +47,41 @@ export default function () {
events: { [k: string]: any }[];
} = useLoaderData<typeof loader>();
const eventCards: ReactNode[] = [];
const toast = useToast();

async function decide(approved: boolean, eventId: string) {
const decisionResp = await fetch(
`/api/events-team/events/${eventId}/decision`,
{
body: JSON.stringify({ approved }),
headers: {
"content-type": "application/json",
},
method: "POST",
},
);

if (!decisionResp.ok) {
let errorMsg = "Unknown error";

try {
errorMsg = ((await decisionResp.json()) as { error: string }).error;
} catch {}

toast({
description: errorMsg,
status: "error",
title: "Oops!",
});

return;
}

toast({
description: `Event ${approved ? "approved" : "rejected"}`,
title: "Success",
});
}

for (const event of events) {
eventCards.push(
Expand Down Expand Up @@ -76,8 +112,18 @@ export default function () {
<Flex gap="16px">
{can_approve && event.pending ? (
<>
<Button colorScheme="red">Deny</Button>
<Button colorScheme="blue">Approve</Button>
<Button
colorScheme="red"
onClick={async () => await decide(false, event.id)}
>
Reject
</Button>
<Button
colorScheme="blue"
onClick={async () => await decide(true, event.id)}
>
Approve
</Button>
</>
) : null}
</Flex>
Expand Down

0 comments on commit a64e949

Please sign in to comment.