diff --git a/.travis.yml b/.travis.yml index d1db0e2..f151921 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,10 +7,6 @@ cache: - public install: - - pip install --user awscli - - export PATH=$PATH:$HOME/.local/bin - - npm i -g gatsby-cli - - export PATH="$PATH:/usr/local/bin/gatsby" - npm i script: @@ -18,9 +14,9 @@ script: - npm run build after_success: + - pip install --user awscli + - export PATH=$PATH:$HOME/.local/bin - npm run deploy notifications: email: false - slack: - secure: v/sqm2fgXTi7RJIjVsaJz1i3bV/WNFyTkLLto2p/fXjoWHVWJBdodANTTH+9lgkbft6JdBcU4WDLDkLP8VKlR9JffFc1DvbxGmF3VTfP2kJcnCbo+koLHBtzR1oRwDB1aulp6+II0ROPS9OyOv+Xx45bj4jOt9y/r0Qcp2V5fKvSUEwEecxaTmvBEn3fvZ9COSgL8ufq9hCCT/6r3Bxl0Pp28Fj23pLwuM6tCKjriM4w5WY0xY2Sv4unz6u7LNec5DZH3QZPH4/pdRVBmC3rxt3quw8IMt6NNXG3ODUPRqS7GB44Q+k8L+15Dn5Cx22o92wULpXKTDvHmLLj2lej50V0cyoj7U4SbDkVOohUG23fn10/AzvZogYA2ugf3YXKJCBbyyloJV6jFnZAAvKRSD8B5PFnuhf+uLEAfX9Of1FLNO2c7XIQa86ht5xrpsRFCzNCFhtyHNc8pXwSv7EUv7K2bccCGKv0a7DxYquP0OB3OSkI6tvRc3mvYpe5k2WKNHFRByud14ywGxMn0FYBwtsHbW3QJ/z/WaFYS2hJXjtpjHQW1wNDy+67UTiZFi1anovUHoZvkrIKtRqY1eyXPJB31TqPHWSX0er0IfdhfE3o9mMuoSVUip6S29eY7hhVk5S3IsK1YlPAFW8pa9OPiUBt8z+gbf8WN23qi61Bn7g= diff --git a/gatsby-config.js b/gatsby-config.js index 9ef8659..6b157f6 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -2,14 +2,13 @@ const path = require('path') const fs = require('fs') const yaml = require('js-yaml') const meta = yaml.load(fs.readFileSync('./data/meta.yml', 'utf8')) -const { url, matomoUrl, matomoSite } = meta +const { url, matomoSite, matomoUrl } = meta module.exports = { siteMetadata: { siteUrl: `${url}` }, plugins: [ - 'gatsby-plugin-react-next', 'gatsby-plugin-react-helmet', 'gatsby-transformer-yaml', 'gatsby-transformer-sharp', diff --git a/gatsby-node.js b/gatsby-node.js index 86b64c1..e9d8eaa 100644 --- a/gatsby-node.js +++ b/gatsby-node.js @@ -1,5 +1,28 @@ const path = require('path') +// Intersection Observer polyfill +// requires `npm install intersection-observer` +// https://github.com/gatsbyjs/gatsby/issues/2288#issuecomment-334467821 +exports.onCreateWebpackConfig = ({ actions, loaders, stage }) => { + const { setWebpackConfig } = actions + + if (stage === 'build-html') { + const nullRule = { + test: /intersection-observer/, + use: [loaders.null()] + } + + setWebpackConfig({ + module: { + rules: [nullRule] + } + }) + } +} + +// +// Create project pages from projects.yml +// exports.createPages = ({ actions, graphql }) => { const { createPage } = actions @@ -14,44 +37,6 @@ exports.createPages = ({ actions, graphql }) => { node { slug } - previous { - title - slug - img { - id - childImageSharp { - fluid(maxWidth: 500, quality: 80) { - aspectRatio - src - srcSet - srcWebp - srcSetWebp - sizes - originalImg - originalName - } - } - } - } - next { - title - slug - img { - id - childImageSharp { - fluid(maxWidth: 500, quality: 80) { - aspectRatio - src - srcSet - srcWebp - srcSetWebp - sizes - originalImg - originalName - } - } - } - } } } } @@ -60,21 +45,17 @@ exports.createPages = ({ actions, graphql }) => { reject(result.errors) } - result.data.allProjectsYaml.edges.forEach( - ({ node, previous, next }) => { - const slug = node.slug + result.data.allProjectsYaml.edges.forEach(({ node }) => { + const slug = node.slug - createPage({ - path: slug, - component: template, - context: { - slug, - previous, - next - } - }) - } - ) + createPage({ + path: slug, + component: template, + context: { + slug + } + }) + }) resolve() }) diff --git a/package.json b/package.json index ea2f4ff..dc5818a 100644 --- a/package.json +++ b/package.json @@ -10,8 +10,8 @@ "lint:js": "eslint ./gatsby-*.{js,jsx} && eslint ./src/**/*.{js,jsx}", "lint:css": "stylelint ./src/**/*.{css,scss}", "lint": "npm run lint:js && npm run lint:css", - "build": "gatsby build", - "start": "docker-compose up", + "build": "./node_modules/gatsby/dist/bin/gatsby.js build", + "start": "./node_modules/gatsby/dist/bin/gatsby.js develop", "format": "prettier --write 'src/**/*.{js,jsx}'", "format:css": "prettier-stylelint --write --quiet 'src/**/*.{css,scss}'", "test": "npm run lint", @@ -21,24 +21,26 @@ "dependencies": { "camel-case": "^3.0.0", "file-saver": "^1.3.8", - "gatsby": "next", + "gatsby": "^2.0.0-beta.3", "gatsby-image": "next", - "gatsby-link": "^1.6.44", + "gatsby-link": "next", "gatsby-plugin-favicon": "^2.1.1", "gatsby-plugin-matomo": "^0.4.0", - "gatsby-plugin-offline": "^1.0.18", - "gatsby-plugin-react-helmet": "^2.0.11", - "gatsby-plugin-react-next": "^1.0.11", - "gatsby-plugin-sass": "^1.0.26", + "gatsby-plugin-offline": "next", + "gatsby-plugin-react-helmet": "next", + "gatsby-plugin-sass": "next", "gatsby-plugin-sharp": "next", - "gatsby-plugin-sitemap": "^1.2.25", - "gatsby-plugin-svgr": "^1.0.1", - "gatsby-source-filesystem": "^1.5.38", - "gatsby-transformer-sharp": "^1.6.26", - "gatsby-transformer-yaml": "^1.5.17", + "gatsby-plugin-sitemap": "next", + "gatsby-plugin-svgr": "github:plag/gatsby-plugin-svgr#gatsby2-compatibility", + "gatsby-source-filesystem": "next", + "gatsby-transformer-json": "next", + "gatsby-transformer-sharp": "next", + "gatsby-transformer-yaml": "next", "giphy-js-sdk-core": "^1.0.3", + "graphql": "^0.13.2", "intersection-observer": "^0.5.0", "js-yaml": "^3.12.0", + "node-sass": "^4.9.0", "react": "^16.4.1", "react-dom": "^16.4.1", "react-helmet": "^5.2.0", @@ -47,6 +49,7 @@ "vcf": "^2.0.1" }, "devDependencies": { + "@types/prop-types": "^15.5.3", "babel-eslint": "^8.2.3", "eslint": "^5.0.0", "eslint-config-prettier": "^2.9.0", @@ -54,7 +57,6 @@ "eslint-plugin-graphql": "^2.1.1", "eslint-plugin-prettier": "^2.6.0", "eslint-plugin-react": "^7.9.1", - "gatsby-transformer-json": "^1.0.19", "ora": "^2.1.0", "prepend": "^1.0.2", "prettier": "^1.13.5", diff --git a/src/components/Layout.jsx b/src/components/Layout.jsx index ab43b92..7638f2d 100644 --- a/src/components/Layout.jsx +++ b/src/components/Layout.jsx @@ -2,6 +2,7 @@ import React, { Component, Fragment } from 'react' import PropTypes from 'prop-types' import withRouter from 'react-router-dom/withRouter' import TransitionGroup from 'react-transition-group/TransitionGroup' +import { StaticQuery } from 'gatsby' import Head from './atoms/Head' import Header from './organisms/Header' import Footer from './organisms/Footer' @@ -116,8 +117,7 @@ Main.propTypes = { } TemplateWrapper.propTypes = { - children: PropTypes.func, - data: PropTypes.object.isRequired, + children: PropTypes.any, location: PropTypes.object.isRequired } diff --git a/src/components/atoms/LogoUnit.jsx b/src/components/atoms/LogoUnit.jsx index 48b18ca..15bfb43 100644 --- a/src/components/atoms/LogoUnit.jsx +++ b/src/components/atoms/LogoUnit.jsx @@ -1,6 +1,6 @@ import React from 'react' import PropTypes from 'prop-types' -import { ReactComponent as Logo } from '../../images/logo.svg' +// import { ReactComponent as Logo } from '../../images/logo.svg' import styles from './LogoUnit.module.scss' const LogoUnit = ({ meta, minimal }) => { @@ -10,7 +10,7 @@ const LogoUnit = ({ meta, minimal }) => { return (
{'{ '} {meta.tagline.toLowerCase()} {' }'}
diff --git a/src/components/atoms/ProjectImage.jsx b/src/components/atoms/ProjectImage.jsx
index b4bfa29..7e59eee 100644
--- a/src/components/atoms/ProjectImage.jsx
+++ b/src/components/atoms/ProjectImage.jsx
@@ -1,28 +1,27 @@
import React from 'react'
import PropTypes from 'prop-types'
import Img from 'gatsby-image'
-import 'intersection-observer'
import './ProjectImage.scss'
-const ProjectImage = ({ sizes, alt }) => (
+const ProjectImage = ({ fluid, alt }) => (
)
ProjectImage.propTypes = {
- sizes: PropTypes.object.isRequired,
+ fluid: PropTypes.object.isRequired,
alt: PropTypes.string
}
export const projectImage = graphql`
- fragment ProjectImageSizes on ImageSharp {
+ fragment ProjectImageFluid on ImageSharp {
fluid(maxWidth: 1200, quality: 85) {
- ...GatsbyImageSharpSizes_noBase64
+ ...GatsbyImageSharpFluid_noBase64
}
}
`
diff --git a/src/components/molecules/Networks.jsx b/src/components/molecules/Networks.jsx
index 54e447d..76abc71 100644
--- a/src/components/molecules/Networks.jsx
+++ b/src/components/molecules/Networks.jsx
@@ -2,31 +2,31 @@ import React, { PureComponent } from 'react'
import PropTypes from 'prop-types'
import { FadeIn } from '../atoms/Animations'
-import { ReactComponent as Email } from '../../images/email.svg'
-import { ReactComponent as Blog } from '../../images/blog.svg'
-import { ReactComponent as Twitter } from '../../images/twitter.svg'
-import { ReactComponent as GitHub } from '../../images/github.svg'
-import { ReactComponent as Dribbble } from '../../images/dribbble.svg'
+// import { ReactComponent as Email } from '../../images/email.svg'
+// import { ReactComponent as Blog } from '../../images/blog.svg'
+// import { ReactComponent as Twitter } from '../../images/twitter.svg'
+// import { ReactComponent as GitHub } from '../../images/github.svg'
+// import { ReactComponent as Dribbble } from '../../images/dribbble.svg'
-import icons from '../atoms/Icons.module.scss'
+// import icons from '../atoms/Icons.module.scss'
import styles from './Networks.module.scss'
-const NetworkIcon = props => {
- switch (props.title) {
- case 'Email':
- return