1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 15:07:27 +00:00
festa/components/ActionEventList.tsx

65 lines
No EOL
1.6 KiB
TypeScript

import { default as classNames } from "classnames";
import { useTranslation } from "next-i18next";
import { HTMLProps } from "react";
import { useMyEventsSWR } from "../hooks/swr/useMyEventsSWR";
import { Loading } from "./Loading";
import { ListEvents } from "./ListEvents";
import { EventCreate } from "./EventCreate";
export function ActionEventList(props: HTMLProps<HTMLFormElement>) {
const { t } = useTranslation()
const { data, error } = useMyEventsSWR()
const newClassName = classNames(props.className, {
"negative": error,
})
let contents: JSX.Element
if (error) {
contents = <>
<p>
{t("eventListError")}
</p>
<code>
{JSON.stringify(error)}
</code>
</>
}
else if (!data) {
contents = <>
<p>
<Loading text={t("eventListLoading")} />
</p>
</>
}
else {
if (data.length === 0) {
contents = <>
<p>
{t("eventListCreateFirst")}
</p>
<EventCreate />
</>
}
else {
contents = <>
<p>
{t("eventListDescription")}
</p>
<ListEvents data={data} />
<p>
{t("eventListCreateAnother")}
</p>
<EventCreate />
</>
}
}
return (
<div className={newClassName}>
{contents}
</div>
)
}