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 63 | 4x 4x 4x 4x 4x 4x 89x 31x 89x 89x | import { Card, styled, Typography } from "@mui/material";
import Button from "components/Button";
import { EllipsisMenuItem } from "components/EllipsisMenu";
import UsersList from "components/UsersList";
import { RpcError } from "grpc-web";
import { useTranslation } from "i18n";
import { COMMUNITIES } from "i18n/namespaces";
import { LiteUser } from "proto/api_pb";
import { theme } from "theme";
const StyledWrapper = styled(Card)(() => ({
padding: theme.spacing(2),
}));
const StyledSeeAllButton = styled(Button)(() => ({
justifySelf: "center",
}));
export interface EventUsersProps {
emptyState: string;
error: RpcError | null;
hasNextPage?: boolean;
onSeeAllClick?(): void;
userIds: number[] | undefined;
title: string;
getUserMenuItems?: (
user: LiteUser.AsObject,
) => EllipsisMenuItem[] | undefined;
}
export default function EventUsers({
emptyState,
error,
hasNextPage,
onSeeAllClick,
userIds,
title,
getUserMenuItems,
}: EventUsersProps) {
const { t } = useTranslation([COMMUNITIES]);
return (
<StyledWrapper>
<Typography variant="h2">{title}</Typography>
<UsersList
error={error}
userIds={userIds}
endChildren={
hasNextPage && (
<StyledSeeAllButton onClick={onSeeAllClick}>
{t("communities:see_all")}
</StyledSeeAllButton>
)
}
emptyListChildren={
<Typography variant="body1">{emptyState}</Typography>
}
getUserMenuItems={getUserMenuItems}
/>
</StyledWrapper>
);
}
|