react-code-dataset
/
react-material-dashboard
/src
/components
/dashboard
/integrations
/integrations-card.tsx
| import * as React from 'react'; | |
| import Avatar from '@mui/material/Avatar'; | |
| import Box from '@mui/material/Box'; | |
| import Card from '@mui/material/Card'; | |
| import CardContent from '@mui/material/CardContent'; | |
| import Divider from '@mui/material/Divider'; | |
| import Stack from '@mui/material/Stack'; | |
| import Typography from '@mui/material/Typography'; | |
| import { ClockIcon } from '@phosphor-icons/react/dist/ssr/Clock'; | |
| import { DownloadIcon } from '@phosphor-icons/react/dist/ssr/Download'; | |
| import dayjs from 'dayjs'; | |
| export interface Integration { | |
| id: string; | |
| title: string; | |
| description: string; | |
| logo: string; | |
| installs: number; | |
| updatedAt: Date; | |
| } | |
| export interface IntegrationCardProps { | |
| integration: Integration; | |
| } | |
| export function IntegrationCard({ integration }: IntegrationCardProps): React.JSX.Element { | |
| return ( | |
| <Card sx={{ display: 'flex', flexDirection: 'column', height: '100%' }}> | |
| <CardContent sx={{ flex: '1 1 auto' }}> | |
| <Stack spacing={2}> | |
| <Box sx={{ display: 'flex', justifyContent: 'center' }}> | |
| <Avatar src={integration.logo} variant="square" /> | |
| </Box> | |
| <Stack spacing={1}> | |
| <Typography align="center" variant="h5"> | |
| {integration.title} | |
| </Typography> | |
| <Typography align="center" variant="body1"> | |
| {integration.description} | |
| </Typography> | |
| </Stack> | |
| </Stack> | |
| </CardContent> | |
| <Divider /> | |
| <Stack direction="row" spacing={2} sx={{ alignItems: 'center', justifyContent: 'space-between', p: 2 }}> | |
| <Stack sx={{ alignItems: 'center' }} direction="row" spacing={1}> | |
| <ClockIcon fontSize="var(--icon-fontSize-sm)" /> | |
| <Typography color="text.secondary" display="inline" variant="body2"> | |
| Updated {dayjs(integration.updatedAt).format('MMM D, YYYY')} | |
| </Typography> | |
| </Stack> | |
| <Stack sx={{ alignItems: 'center' }} direction="row" spacing={1}> | |
| <DownloadIcon fontSize="var(--icon-fontSize-sm)" /> | |
| <Typography color="text.secondary" display="inline" variant="body2"> | |
| {integration.installs} installs | |
| </Typography> | |
| </Stack> | |
| </Stack> | |
| </Card> | |
| ); | |
| } | |