mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-11-15 09:35:17 +01:00
65 lines
1.5 KiB
JavaScript
65 lines
1.5 KiB
JavaScript
import React, { Component } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { Link } from 'gatsby'
|
|
import giphyAPI from 'giphy-js-sdk-core'
|
|
import SEO from '../components/atoms/SEO'
|
|
import Button from '../components/atoms/Button'
|
|
import styles from './404.module.css'
|
|
|
|
// Famous last words:
|
|
// "It's just the 404 page so why not expose the dev API key"
|
|
const giphyClient = giphyAPI('LfXRwufRyt6PK414G2kKJBv3L8NdnxyR')
|
|
const tag = 'fail-cat'
|
|
|
|
export default class NotFound extends Component {
|
|
state = { gif: '' }
|
|
|
|
static propTypes = {
|
|
location: PropTypes.object
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.getRandomGif()
|
|
}
|
|
|
|
async getRandomGif() {
|
|
try {
|
|
let response = await giphyClient.random('gifs', { tag })
|
|
const gif = response.data.images.original.mp4
|
|
this.setState({ gif })
|
|
} catch (error) {
|
|
return error
|
|
}
|
|
}
|
|
|
|
handleClick = (e) => {
|
|
e.preventDefault()
|
|
this.getRandomGif()
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<>
|
|
<SEO />
|
|
|
|
<article className={styles.content}>
|
|
<h1>Shenanigans, page not found.</h1>
|
|
<p>
|
|
You might want to check the url, or{' '}
|
|
<Link to={'/'}>go back to the homepage</Link>. Or just check out
|
|
some {tag} gifs, entirely your choice.
|
|
</p>
|
|
|
|
<video className="gif" src={this.state.gif} autoPlay loop />
|
|
|
|
<div>
|
|
<Button
|
|
onClick={this.handleClick}
|
|
>{`Get another '${tag}' gif`}</Button>
|
|
</div>
|
|
</article>
|
|
</>
|
|
)
|
|
}
|
|
}
|