gatsby-starter-blog-forestry/components/ReadNext.js
2016-10-19 10:40:54 -06:00

69 lines
1.6 KiB
JavaScript

import React from 'react'
import { Link } from 'react-router'
import { prefixLink } from 'gatsby-helpers'
import { prune, include as includes } from 'underscore.string'
import find from 'lodash/find'
import { rhythm, scale } from 'utils/typography'
class ReadNext extends React.Component {
render () {
const { pages, post } = this.props
const { readNext } = post
let nextPost
if (readNext) {
nextPost = find(pages, (page) =>
includes(page.path, readNext)
)
}
if (!nextPost) {
return React.createElement('noscript', null)
} else {
nextPost = find(pages, (page) =>
includes(page.path, readNext.slice(1, -1))
)
// Create pruned version of the body.
const html = nextPost.data.body
const body = prune(html.replace(/<[^>]*>/g, ''), 200)
return (
<div>
<h6
style={{
...scale(-0.5),
margin: 0,
letterSpacing: -0.25,
}}
>
READ THIS NEXT:
</h6>
<h3
style={{
marginTop: 0,
marginBottom: rhythm(1/4),
}}
>
<Link
to={{
pathname: prefixLink(nextPost.path),
query: {
readNext: true,
},
}}
>
{nextPost.data.title}
</Link>
</h3>
<p>{body}</p>
<hr />
</div>
)
}
}
}
ReadNext.propTypes = {
post: React.PropTypes.object.isRequired,
pages: React.PropTypes.array,
}
export default ReadNext