dwysokinski.me/src/features/HomePage/components/Portfolio/Project.js

158 lines
3.4 KiB
JavaScript
Raw Normal View History

2021-01-17 08:31:50 +00:00
import React from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
import notFound from './not-found.jpg';
2020-07-13 17:04:46 +00:00
2021-01-17 08:31:50 +00:00
import { makeStyles } from '@material-ui/core/styles';
2020-07-13 17:04:46 +00:00
import {
Card,
CardContent,
CardMedia,
Typography,
Button,
Chip,
Link,
2021-01-17 08:31:50 +00:00
} from '@material-ui/core';
import BackgroundImage from 'gatsby-background-image';
2020-07-13 17:04:46 +00:00
function Project({
reverse,
title,
description,
technologies,
github,
live,
img,
fluid,
}) {
2021-01-17 08:31:50 +00:00
const classes = useStyles();
2020-07-13 17:04:46 +00:00
return (
<Card
className={classnames(classes.card, {
reverse,
2020-07-13 17:04:46 +00:00
})}
>
{fluid ? (
<BackgroundImage
fluid={fluid}
title={title}
className={classes.cover}
/>
) : (
<CardMedia image={img} title={title} className={classes.cover} />
)}
2020-07-13 17:04:46 +00:00
<CardContent className={classes.cardContent}>
<div className={classes.contentContainer}>
<Typography variant="h3" gutterBottom>
{title}
2020-07-13 17:04:46 +00:00
</Typography>
<Typography>{description}</Typography>
2020-07-13 17:04:46 +00:00
</div>
<div className={classes.divider}></div>
<div className={classes.technologies}>
{technologies.map(technology => {
return (
<Chip key={technology} label={technology} color="secondary" />
2021-01-17 08:31:50 +00:00
);
})}
2020-07-13 17:04:46 +00:00
</div>
<div className={classes.buttons}>
{github && (
<Link underline="none" href={github}>
<Button variant="contained" color="secondary">
GitHub
</Button>
</Link>
)}
{live && (
<Link underline="none" href={live}>
<Button variant="contained" color="secondary">
Online
</Button>
</Link>
)}
2020-07-13 17:04:46 +00:00
</div>
</CardContent>
</Card>
2021-01-17 08:31:50 +00:00
);
2020-07-13 17:04:46 +00:00
}
const useStyles = makeStyles(theme => ({
card: {
2021-01-17 08:31:50 +00:00
display: 'flex',
minHeight: '400px',
'&.reverse': {
flexDirection: 'row-reverse',
[theme.breakpoints.down('sm')]: {
flexDirection: 'column',
},
},
2021-01-17 08:31:50 +00:00
[theme.breakpoints.down('sm')]: {
flexDirection: 'column',
},
},
cardContent: {
2021-01-17 08:31:50 +00:00
display: 'flex',
flexDirection: 'column',
width: '45%',
[theme.breakpoints.down('sm')]: {
width: '100%',
},
},
divider: {
flex: 1,
},
contentContainer: {
marginBottom: theme.spacing(8),
},
technologies: {
marginBottom: theme.spacing(2),
2021-01-17 08:31:50 +00:00
'& > *:not(:last-child)': {
marginRight: theme.spacing(1),
},
2021-01-17 08:31:50 +00:00
'& > *': {
marginBottom: theme.spacing(1),
},
},
buttons: {
2021-01-17 08:31:50 +00:00
'& > *:not(:last-child)': {
marginRight: theme.spacing(1),
},
2021-01-17 08:31:50 +00:00
'& > *': {
marginBottom: theme.spacing(1),
2021-01-17 08:31:50 +00:00
[theme.breakpoints.down('xs')]: {
width: '100%',
},
},
},
cover: {
2021-01-17 08:31:50 +00:00
width: '55%',
[theme.breakpoints.down('sm')]: {
width: '100%',
paddingTop: '56.25%',
},
},
2021-01-17 08:31:50 +00:00
}));
2020-07-13 17:04:46 +00:00
Project.defaultProps = {
reverse: false,
2021-01-17 08:31:50 +00:00
title: '',
description: '',
technologies: [],
2021-01-17 08:31:50 +00:00
github: '',
live: '',
img: notFound,
2021-01-17 08:31:50 +00:00
};
Project.propTypes = {
reverse: PropTypes.bool.isRequired,
title: PropTypes.string.isRequired,
description: PropTypes.string.isRequired,
technologies: PropTypes.arrayOf(PropTypes.string).isRequired,
github: PropTypes.string.isRequired,
live: PropTypes.string.isRequired,
img: PropTypes.string.isRequired,
2021-01-17 08:31:50 +00:00
};
2020-07-13 17:04:46 +00:00
2021-01-17 08:31:50 +00:00
export default Project;