File tree 5 files changed +48
-43
lines changed
examples/active-class-name
5 files changed +48
-43
lines changed Original file line number Diff line number Diff line change
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
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- import Link from './Link '
1
+ import ActiveLink from './ActiveLink '
2
2
3
- export default ( ) => (
3
+ const Nav = ( ) => (
4
4
< nav >
5
5
< style jsx > { `
6
- .active:after {
7
- content: ' (current page)';
8
- }
9
-
10
6
.nav-link {
11
7
text-decoration: none;
12
- padding: 10px;
13
- display: block;
14
8
}
15
- ` } </ style >
16
9
17
- < ul >
10
+ .active:after {
11
+ content: ' (current page)';
12
+ }
13
+ ` } </ style >
14
+ < ul className = 'nav' >
18
15
< 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 >
22
19
</ li >
23
20
< li >
24
- < Link activeClassName = 'active' href = '/about' >
21
+ < ActiveLink activeClassName = 'active' href = '/about' >
25
22
< a className = 'nav-link' > About</ a >
26
- </ Link >
23
+ </ ActiveLink >
27
24
</ li >
28
25
</ ul >
29
26
</ nav >
30
27
)
28
+
29
+ export default Nav
Original file line number Diff line number Diff line change 1
1
import Nav from '../components/Nav'
2
2
3
- export default ( ) => (
4
- < div >
3
+ const AboutPage = ( ) => (
4
+ < >
5
5
< Nav />
6
- < p > Hello, I'm About.js </ p >
7
- </ div >
6
+ < p > Hello, I'm the about page </ p >
7
+ </ >
8
8
)
9
+
10
+ export default AboutPage
Original file line number Diff line number Diff line change 1
1
import Nav from '../components/Nav'
2
2
3
- export default ( ) => (
4
- < div >
3
+ const IndexPage = ( ) => (
4
+ < >
5
5
< Nav />
6
- < p > Hello, I'm the home page</ p >
7
- </ div >
6
+ < p > Hello, I'm the index page</ p >
7
+ </ >
8
8
)
9
+
10
+ export default IndexPage
You can’t perform that action at this time.
0 commit comments