Skip to content

Commit ce25f74

Browse files
HaNdTriXTimer
authored andcommittedAug 29, 2019
Refactor active-class-name example (vercel#8558)
- use router hook instead of hoc - simplify ActiveLink component - add prop-types - add function names - use fragments instead of divs
1 parent aa406a1 commit ce25f74

File tree

5 files changed

+48
-43
lines changed

5 files changed

+48
-43
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import { useRouter } from 'next/router'
2+
import PropTypes from 'prop-types'
3+
import Link from 'next/link'
4+
import React, { Children } from 'react'
5+
6+
const ActiveLink = ({ children, activeClassName, ...props }) => {
7+
const { pathname } = useRouter()
8+
const child = Children.only(children)
9+
10+
const className =
11+
pathname === props.href
12+
? `${child.props.className} ${activeClassName}`
13+
: child.props.className
14+
15+
return <Link {...props}>{React.cloneElement(child, { className })}</Link>
16+
}
17+
18+
ActiveLink.propTypes = {
19+
activeClassName: PropTypes.string.isRequired
20+
}
21+
22+
export default ActiveLink

‎examples/active-class-name/components/Link.js

-20
This file was deleted.
+14-15
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,29 @@
1-
import Link from './Link'
1+
import ActiveLink from './ActiveLink'
22

3-
export default () => (
3+
const Nav = () => (
44
<nav>
55
<style jsx>{`
6-
.active:after {
7-
content: ' (current page)';
8-
}
9-
106
.nav-link {
117
text-decoration: none;
12-
padding: 10px;
13-
display: block;
148
}
15-
`}</style>
169
17-
<ul>
10+
.active:after {
11+
content: ' (current page)';
12+
}
13+
`}</style>
14+
<ul className='nav'>
1815
<li>
19-
<Link activeClassName='active' href='/'>
20-
<a className='nav-link home-link'>Home</a>
21-
</Link>
16+
<ActiveLink activeClassName='active' href='/'>
17+
<a className='nav-link'>Home</a>
18+
</ActiveLink>
2219
</li>
2320
<li>
24-
<Link activeClassName='active' href='/about'>
21+
<ActiveLink activeClassName='active' href='/about'>
2522
<a className='nav-link'>About</a>
26-
</Link>
23+
</ActiveLink>
2724
</li>
2825
</ul>
2926
</nav>
3027
)
28+
29+
export default Nav
+6-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import Nav from '../components/Nav'
22

3-
export default () => (
4-
<div>
3+
const AboutPage = () => (
4+
<>
55
<Nav />
6-
<p>Hello, I'm About.js</p>
7-
</div>
6+
<p>Hello, I'm the about page</p>
7+
</>
88
)
9+
10+
export default AboutPage
+6-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import Nav from '../components/Nav'
22

3-
export default () => (
4-
<div>
3+
const IndexPage = () => (
4+
<>
55
<Nav />
6-
<p>Hello, I'm the home page</p>
7-
</div>
6+
<p>Hello, I'm the index page</p>
7+
</>
88
)
9+
10+
export default IndexPage

0 commit comments

Comments
 (0)
Please sign in to comment.