-
Notifications
You must be signed in to change notification settings - Fork 10.3k
/
index.js
220 lines (190 loc) · 5.65 KB
/
index.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
import PropTypes from "prop-types"
import React from "react"
import { Link } from "@reach/router"
import { parsePath } from "./parse-path"
export { parsePath }
export function withPrefix(path) {
return normalizePath(
[
typeof __BASE_PATH__ !== `undefined` ? __BASE_PATH__ : __PATH_PREFIX__,
path,
].join(`/`)
)
}
export function withAssetPrefix(path) {
return [__PATH_PREFIX__].concat([path.replace(/^\//, ``)]).join(`/`)
}
function normalizePath(path) {
return path.replace(/\/+/g, `/`)
}
const NavLinkPropTypes = {
activeClassName: PropTypes.string,
activeStyle: PropTypes.object,
partiallyActive: PropTypes.bool,
}
// Set up IntersectionObserver
const createIntersectionObserver = (el, cb) => {
const io = new window.IntersectionObserver(entries => {
entries.forEach(entry => {
if (el === entry.target) {
// Check if element is within viewport, remove listener, destroy observer, and run link callback.
// MSEdge doesn't currently support isIntersecting, so also test for an intersectionRatio > 0
if (entry.isIntersecting || entry.intersectionRatio > 0) {
io.unobserve(el)
io.disconnect()
cb()
}
}
})
})
// Add element to the observer
io.observe(el)
return { instance: io, el }
}
class GatsbyLink extends React.Component {
constructor(props) {
super(props)
// Default to no support for IntersectionObserver
let IOSupported = false
if (typeof window !== `undefined` && window.IntersectionObserver) {
IOSupported = true
}
this.state = {
IOSupported,
}
this.handleRef = this.handleRef.bind(this)
}
componentDidUpdate(prevProps, prevState) {
// Preserve non IO functionality if no support
if (this.props.to !== prevProps.to && !this.state.IOSupported) {
___loader.enqueue(parsePath(this.props.to).pathname)
}
}
componentDidMount() {
// Preserve non IO functionality if no support
if (!this.state.IOSupported) {
___loader.enqueue(parsePath(this.props.to).pathname)
}
}
componentWillUnmount() {
if (!this.io) {
return
}
const { instance, el } = this.io
instance.unobserve(el)
instance.disconnect()
}
handleRef(ref) {
if (this.props.innerRef && this.props.innerRef.hasOwnProperty(`current`)) {
this.props.innerRef.current = ref
} else if (this.props.innerRef) {
this.props.innerRef(ref)
}
if (this.state.IOSupported && ref) {
// If IO supported and element reference found, setup Observer functionality
this.io = createIntersectionObserver(ref, () => {
___loader.enqueue(parsePath(this.props.to).pathname)
})
}
}
defaultGetProps = ({ isPartiallyCurrent, isCurrent }) => {
if (this.props.partiallyActive ? isPartiallyCurrent : isCurrent) {
return {
className: [this.props.className, this.props.activeClassName]
.filter(Boolean)
.join(` `),
style: { ...this.props.style, ...this.props.activeStyle },
}
}
return null
}
render() {
const {
to,
getProps = this.defaultGetProps,
onClick,
onMouseEnter,
/* eslint-disable no-unused-vars */
activeClassName: $activeClassName,
activeStyle: $activeStyle,
innerRef: $innerRef,
partiallyActive,
state,
replace,
/* eslint-enable no-unused-vars */
...rest
} = this.props
const LOCAL_URL = /^\/(?!\/)/
if (process.env.NODE_ENV !== `production` && !LOCAL_URL.test(to)) {
console.warn(
`External link ${to} was detected in a Link component. Use the Link component only for internal links. See: https://gatsby.dev/internal-links`
)
}
const prefixedTo = withPrefix(to)
return (
<Link
to={prefixedTo}
state={state}
getProps={getProps}
innerRef={this.handleRef}
onMouseEnter={e => {
if (onMouseEnter) {
onMouseEnter(e)
}
___loader.hovering(parsePath(to).pathname)
}}
onClick={e => {
if (onClick) {
onClick(e)
}
if (
e.button === 0 && // ignore right clicks
!this.props.target && // let browser handle "target=_blank"
!e.defaultPrevented && // onClick prevented default
!e.metaKey && // ignore clicks with modifier keys...
!e.altKey &&
!e.ctrlKey &&
!e.shiftKey
) {
e.preventDefault()
// Make sure the necessary scripts and data are
// loaded before continuing.
navigate(to, { state, replace })
}
return true
}}
{...rest}
/>
)
}
}
GatsbyLink.propTypes = {
...NavLinkPropTypes,
onClick: PropTypes.func,
to: PropTypes.string.isRequired,
replace: PropTypes.bool,
state: PropTypes.object,
}
const showDeprecationWarning = (functionName, altFunctionName, version) =>
console.warn(
`The "${functionName}" method is now deprecated and will be removed in Gatsby v${version}. Please use "${altFunctionName}" instead.`
)
export default React.forwardRef((props, ref) => (
<GatsbyLink innerRef={ref} {...props} />
))
export const navigate = (to, options) => {
window.___navigate(withPrefix(to), options)
}
export const push = to => {
showDeprecationWarning(`push`, `navigate`, 3)
window.___push(withPrefix(to))
}
export const replace = to => {
showDeprecationWarning(`replace`, `navigate`, 3)
window.___replace(withPrefix(to))
}
// TODO: Remove navigateTo for Gatsby v3
export const navigateTo = to => {
showDeprecationWarning(`navigateTo`, `navigate`, 3)
return push(to)
}