mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
53f2d88566
…aces (home and about pages). This makes it the example more clear and why someone might want to use _app.js in the first place. Also, added a button on the about page that allows for passing and arbitrary value from the about page to the context provider. I disagree with the naming convention of calling the class CounterProvider. It includes both a Provider and Consumer so it should have some name that covers both. Maybe it should be called CounterContext but I did not change that. I've seen other examples of the same naming conversion so figure I'm the odd duck here (still think it's wrong no matter how many people do it).
26 lines
715 B
JavaScript
26 lines
715 B
JavaScript
import React, { Component } from 'react'
|
|
import Link from 'next/link'
|
|
/* First we import the consumer */
|
|
import { CounterConsumer } from '../components/CounterProvider'
|
|
|
|
export default class index extends Component {
|
|
render () {
|
|
return (
|
|
/* Then we use our context through render props */
|
|
<CounterConsumer>
|
|
{({ count, increase, decrease }) => (
|
|
<div>
|
|
<h1>HOME</h1>
|
|
<p>Counter: {count}</p>
|
|
<button onClick={increase}>Increase</button>
|
|
<button onClick={decrease}>Decrease</button>
|
|
<p><Link href='/about'>
|
|
<a>About</a>
|
|
</Link></p>
|
|
</div>
|
|
)}
|
|
</CounterConsumer>
|
|
)
|
|
}
|
|
}
|