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 | 2x 2x 2x 2x 2x 2x 2x 36x 43x 43x 2x | import Button from "components/Button";
import {
Dialog,
DialogActions,
DialogContent,
DialogTitle,
} from "components/Dialog";
import UsersList from "components/UsersList";
import { useTranslation } from "i18n";
import { COMMUNITIES } from "i18n/namespaces";
import { useEventAttendees } from "./hooks";
export const ATTENDEES_DIALOG_LABEL_ID = "attendees";
interface EventAttendeesDialogProps {
eventId: number;
open: boolean;
onClose(): void;
}
export default function EventAttendeesDialog({
eventId,
onClose,
open,
}: EventAttendeesDialogProps) {
const { t } = useTranslation([COMMUNITIES]);
const {
error,
fetchNextPage,
hasNextPage,
isFetchingNextPage,
attendeesIds,
} = useEventAttendees({
enabled: open,
eventId,
type: "all",
});
return (
<Dialog
aria-labelledby={ATTENDEES_DIALOG_LABEL_ID}
open={open}
onClose={onClose}
>
<DialogTitle id={ATTENDEES_DIALOG_LABEL_ID}>
{t("communities:attendees")}
</DialogTitle>
<DialogContent>
<UsersList error={error} userIds={attendeesIds} />
</DialogContent>
{hasNextPage && (
<DialogActions>
<Button loading={isFetchingNextPage} onClick={() => fetchNextPage()}>
{t("communities:load_more_attendees")}
</Button>
</DialogActions>
)}
</Dialog>
);
}
|