From 4ea4053235c94c78dd1673363c6e23348f1dead6 Mon Sep 17 00:00:00 2001 From: Regalijan Date: Tue, 20 Feb 2024 19:08:31 -0500 Subject: [PATCH] Add game night certification to events team page --- app/routes/events-team.tsx | 87 +++++++++++++++++++++++++++++++++++++- 1 file changed, 86 insertions(+), 1 deletion(-) diff --git a/app/routes/events-team.tsx b/app/routes/events-team.tsx index adb1920..fbafdfb 100644 --- a/app/routes/events-team.tsx +++ b/app/routes/events-team.tsx @@ -8,14 +8,22 @@ import { Flex, Heading, Link, + Modal, + ModalBody, + ModalCloseButton, + ModalContent, + ModalFooter, + ModalHeader, + ModalOverlay, Stack, StackDivider, Text, + useDisclosure, useToast, VStack, } from "@chakra-ui/react"; import { useLoaderData } from "@remix-run/react"; -import { type ReactNode } from "react"; +import { type ReactNode, useState } from "react"; export async function loader({ context }: { context: RequestContext }) { const now = new Date(); @@ -47,7 +55,9 @@ export default function () { events: { [k: string]: any }[]; } = useLoaderData(); const eventCards: ReactNode[] = []; + const { isOpen, onClose, onOpen } = useDisclosure(); const toast = useToast(); + const [selectedEvent, setSelectedEvent] = useState(""); async function decide(approved: boolean, eventId: string) { const decisionResp = await fetch( @@ -83,6 +93,40 @@ export default function () { }); } + async function certify(eventId: string) { + const certifyResp = await fetch( + `/api/events-team/events/${eventId}/certify`, + { + body: "{}", + headers: { + "content-type": "application/json", + }, + method: "POST", + }, + ); + + if (!certifyResp.ok) { + let errorMsg = "Unknown error"; + + try { + errorMsg = ((await certifyResp.json()) as { error: string }).error; + } catch {} + + toast({ + description: errorMsg, + status: "error", + title: "Failed to certify game night", + }); + + return; + } + + toast({ + description: "Game night certified", + title: "Success", + }); + } + for (const event of events) { eventCards.push( @@ -126,6 +170,22 @@ export default function () { ) : null} + {can_approve && + event.approved && + event.type === "gamenight" && + !event.reached_minimum_player_count ? ( + <> + + + ) : null} Status:{" "} @@ -138,6 +198,31 @@ export default function () { return ( + + + + Certify Game Night + + + + By certifying this game night, you confirm that the minimum number + of players was met and you were provided proof. + + + + + + + + {eventCards} Book an Event