-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.js
44 lines (37 loc) · 1.18 KB
/
single.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import Navigation from '../components/Navigation'
import React, { Component } from 'react'
import axios from 'axios';
import { Fragment } from 'react'
import Head from 'next/head'
export default class extends Component {
// Resolve promise and set initial props.
static async getInitialProps( context ) {
const siteurl = 'wp.test';
const slug = context.query.slug
// Make request for posts.
const response = await axios.get( 'http://' + siteurl + `/wp-json/wp/v2/posts?slug=${ slug }` )
// Return our only item in array from response to posts object in props.
return {
post: response.data[0]
}
}
render() {
return (
<Fragment>
<Navigation/>
<Head>
<title dangerouslySetInnerHTML={ { __html: this.props.post.title.rendered } } />
<meta name="description" content={ this.props.post.title.rendered } />
<meta charSet="utf-8" />
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
</Head>
<h1 dangerouslySetInnerHTML={ { __html: this.props.post.title.rendered } } />
<article
className="entry-content"
dangerouslySetInnerHTML={ {
__html: this.props.post.content.rendered
} } />
</Fragment>
)
}
}