1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2025-02-14 21:10:41 +01:00
portfolio/src/pages/index.jsx

91 lines
2.2 KiB
JavaScript

import React, { PureComponent } from 'react'
import PropTypes from 'prop-types'
import { Link, graphql } from 'gatsby'
import SEO from '../components/atoms/SEO'
import ProjectImage from '../components/molecules/ProjectImage'
import { ReactComponent as Images } from '../images/images.svg'
import styles from './index.module.scss'
function getImageCount(images, slug) {
let array = []
let slugWithoutSlashes = slug.replace(/\//g, '')
images.map(
({ node }) => node.name.includes(slugWithoutSlashes) && array.push(node)
)
return array.length
}
export default class Home extends PureComponent {
static propTypes = {
data: PropTypes.object,
location: PropTypes.object
}
render() {
const { data } = this.props
const projects = data.allProjectsYaml.edges
const images = data.projectImageFiles.edges
return (
<>
<SEO />
<div className={styles.projects}>
{projects.map(({ node }) => {
const { slug, title, img } = node
const imageCount = getImageCount(images, slug)
return (
<article className={styles.project} key={slug}>
<Link to={slug}>
<h1 className={styles.title}>{title}</h1>
<ProjectImage fluid={img.childImageSharp.fluid} alt={title} />
{imageCount > 1 && (
<small
className={styles.imageCount}
title={`${imageCount} project images`}
>
<Images /> {imageCount}
</small>
)}
</Link>
</article>
)
})}
</div>
</>
)
}
}
export const IndexQuery = graphql`
query {
allProjectsYaml {
edges {
node {
title
slug
img {
childImageSharp {
fluid(maxWidth: 980, quality: 85) {
...GatsbyImageSharpFluid_withWebp
}
}
}
}
}
}
projectImageFiles: allFile(filter: { name: { regex: "/portfolio/" } }) {
edges {
node {
name
}
}
}
}
`