2017-08-30 14:07:12 +00:00
|
|
|
import { withRouter } from 'next/router'
|
|
|
|
|
|
|
|
// typically you want to use `next/link` for this usecase
|
|
|
|
// but this example shows how you can also access the router
|
|
|
|
// using the withRouter utility.
|
|
|
|
|
|
|
|
const ActiveLink = ({ children, router, href }) => {
|
|
|
|
const style = {
|
|
|
|
marginRight: 10,
|
|
|
|
color: router.pathname === href ? 'red' : 'black'
|
|
|
|
}
|
|
|
|
|
2018-12-17 16:34:32 +00:00
|
|
|
const handleClick = e => {
|
2017-08-30 14:07:12 +00:00
|
|
|
e.preventDefault()
|
|
|
|
router.push(href)
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<a href={href} onClick={handleClick} style={style}>
|
|
|
|
{children}
|
|
|
|
</a>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default withRouter(ActiveLink)
|