From d422fc48943cf01891768c34a10f972637e1319b Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sun, 15 Nov 2020 00:16:27 +0300 Subject: feat: add EventCard --- src/components/EventCard/EventCard.tsx | 59 ++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 src/components/EventCard/EventCard.tsx (limited to 'src/components') diff --git a/src/components/EventCard/EventCard.tsx b/src/components/EventCard/EventCard.tsx new file mode 100644 index 0000000..88984ff --- /dev/null +++ b/src/components/EventCard/EventCard.tsx @@ -0,0 +1,59 @@ +import React from 'react'; +import { makeStyles } from '@material-ui/core/styles'; +import { + Card, + CardHeader, + CardContent, + CardActions, + Button +} from '@material-ui/core'; +import { Event } from '../../types'; + +interface PropTypes { + event: Event; +} + +const useStyles = makeStyles(theme => ({ + root: { + margin: theme.spacing(1), + maxWidth: theme.spacing(60) + } +})); + +const EventCard: React.FC = ({ event }) => { + const classes = useStyles(); + const { data: { + name, + date, + participants, + conferenceId, + attendanceId + }} = event; + + return ( + + + + {conferenceId &&
ConferenceID: {conferenceId}
} + {attendanceId &&
AttendanceID: {attendanceId}
} +
+ Participants ({participants?.length || 0} / 3) +
    + {participants?.map(username => ( +
  • {username}
  • + ))} +
+
+
+ {(participants?.length || 0) < 3 && ( + + + + )} +
+ ); +}; + +export default EventCard; -- cgit v1.2.3