Created
November 6, 2019 19:46
-
-
Save jmolivas/ff97ab6cc770d5cdcdc92e028a2d74d2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import { StaticQuery, graphql } from 'gatsby' | |
import Layout from '../components/templates/layout' | |
import Home from '../components/templates/home' | |
const dateFormat = require('date-fns/format') | |
const IndexPage = () => ( | |
<StaticQuery | |
query={graphql` | |
{ | |
site { | |
siteMetadata { | |
domain | |
} | |
} | |
allSiteSettingEntitySite { | |
edges { | |
node { | |
field_name | |
field_slogan | |
field_description | |
field_facebook { | |
uri | |
} | |
field_twitter { | |
uri | |
} | |
field_github { | |
uri | |
} | |
field_linkedin { | |
uri | |
} | |
} | |
} | |
} | |
siteSettingEntitySite { | |
relationships { | |
field_hero_image { | |
relationships { | |
field_media_image { | |
localFile { | |
childImageSharp { | |
fluid(maxWidth: 1440, maxHeight: 560, cropFocus: CENTER) { | |
...GatsbyImageSharpFluid | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
file(relativePath: { eq: "hero-cover.png" }) { | |
childImageSharp { | |
fluid(maxWidth: 1440, maxHeight: 560, cropFocus: CENTER) { | |
...GatsbyImageSharpFluid | |
} | |
} | |
} | |
allNodeArticle(limit: 999, sort: { fields: created, order: DESC }) { | |
edges { | |
node { | |
id | |
title | |
field_resume | |
created | |
path { | |
alias | |
} | |
fields { | |
slug | |
created_formatted | |
markdownBody { | |
childMarkdownRemark { | |
excerpt | |
} | |
} | |
} | |
relationships { | |
field_image { | |
relationships { | |
field_media_image { | |
localFile { | |
childImageSharp { | |
fluid( | |
maxWidth: 600 | |
maxHeight: 400 | |
cropFocus: CENTER | |
) { | |
...GatsbyImageSharpFluid | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
`} | |
render={(data) => { | |
const articles = data.allNodeArticle.edges | |
const settings = data.allSiteSettingEntitySite.edges[0].node | |
const cover = | |
data.siteSettingEntitySite.relationships.field_hero_image.relationships | |
.field_media_image.localFile.childImageSharp.fluid | |
const { domain } = data.site.siteMetadata | |
return ( | |
<Layout | |
postUrl={domain} | |
postTitle={settings.field_name} | |
postDesc={settings.field_description} | |
postDate={dateFormat(new Date(), 'MMMM Do, YYYY')} | |
postImage={`${domain}${cover.src}`} | |
heroCover | |
> | |
<div className="cell medium-cell-block"> | |
<Home articles={articles} settings={settings} heroCover={cover} /> | |
</div> | |
</Layout> | |
) | |
}} | |
/> | |
) | |
export default IndexPage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment