import { faPlus } from "@fortawesome/free-solid-svg-icons" import { Event } from "@prisma/client" import classNames from "classnames" import { useTranslation } from "next-i18next" import Link from "next/link" import { useRouter } from "next/router" import { useEffect, useState } from "react" import { default as useSWR } from "swr" import { useAxiosRequest } from "../../auth/requests" import { ErrorBlock } from "../../generic/errors/renderers" import { promiseMultiplexer, UsePromiseStatus } from "../../generic/loading/promise" import { swrMultiplexer } from "../../generic/loading/swr" import { LoadingInline } from "../../generic/loading/renderers" import { FestaIcon } from "../../generic/renderers/fontawesome" import style from "./events.module.css" import mood from "../../../styles/mood.module.css" /** * Displayed if the user has never created an event on Festa. */ const LandingActionEventsFirst = () => { const { t } = useTranslation() return (
) } /** * Displayed if the user has one or more events created on Festa. */ const LandingActionEventsList = ({ data }: { data: Event[] }) => { const { t } = useTranslation() return ( <>
{t("landingEventsDescription")}
> ) } /** * One-line form to create a new event on Festa. */ const LandingActionEventsFormCreate = () => { const { t } = useTranslation() const router = useRouter() const [name, setName] = useState