Skip to content

Commit 1003c14

Browse files
committed
Add props for explicit configuration of events to listen for
- Add load and hashChange props (default to true) that tell Switcher what events it should check for path changes on. (pushState already there). - Add location property (defaults to "hash") that lets user customize what to use to compare the path
1 parent ef1bb28 commit 1003c14

File tree

4 files changed

+34
-12
lines changed

4 files changed

+34
-12
lines changed

dist/switcheroo.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/components/Switcher.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,21 @@ To actually render anything, the `Switcher` must have any number of children ele
2828

2929
## Optional Props
3030

31-
### pushState
31+
### pushState (default: false)
3232

33-
By default `window.location.hash` is used to match paths. If the `pushState` prop is set to true, then `window.location.pathname` is used.
33+
When true, `Switcher` listens to the `popstate` event and looks for path changes on this event.
3434

35-
When the hash is used, `Switcher` listens for path changes with the `hashchange` event, and when `pushState` is used, it listens to the `popstate` event.
35+
### hashChange (default: true)
36+
37+
When true, `Switcher` listens to the `hashchange` event and looks for path changes on this event.
38+
39+
### load (default: true)
40+
41+
When true, `Switcher` listens to the `load` event and looks for path changes on this event.
42+
43+
### location (default: 'hash')
44+
45+
By default `window.location.hash` is used to match paths. If `location` is set to 'pathname', then `window.location.pathname` is used instead.
3646

3747
### defaultHandler
3848

modules/components/Switcher.js

+18-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import React, {Component} from 'react';
2+
import window from 'window';
23

34
export default class Switcher extends Component {
45
constructor(props) {
@@ -18,27 +19,31 @@ export default class Switcher extends Component {
1819
}
1920

2021
componentDidMount() {
21-
window.addEventListener('load', this.handleRouteChange);
22+
if(this.props.load) {
23+
window.addEventListener('load', this.handleRouteChange);
24+
}
2225
if(this.props.pushState) {
2326
window.addEventListener('popstate', this.handleRouteChange);
2427
}
25-
else {
28+
if(this.props.hashChange) {
2629
window.addEventListener('hashchange', this.handleRouteChange);
2730
}
2831
}
2932

3033
componentWillUnmount() {
31-
window.removeEventListener('load', this.handleRouteChange);
34+
if(this.props.load) {
35+
window.removeEventListener('load', this.handleRouteChange);
36+
}
3237
if(this.props.pushState) {
3338
window.removeEventListener('popstate', this.handleRouteChange);
3439
}
35-
else {
40+
if(this.props.hashChange) {
3641
window.removeEventListener('hashchange', this.handleRouteChange);
3742
}
3843
}
3944

4045
getLocation() {
41-
var location = this.props.pushState ? this.getHistoryLocation() : this.getHashLocation();
46+
var location = this.props.location === 'pathname' ? this.getHistoryLocation() : this.getHashLocation();
4247
if(location.charAt(0) !== '/') {
4348
return `/${location}`;
4449
}
@@ -96,12 +101,18 @@ Switcher.propTypes = {
96101
React.PropTypes.element
97102
]).isRequired,
98103
pushState: React.PropTypes.bool,
104+
hashChange: React.PropTypes.bool,
105+
load: React.PropTypes.bool,
99106
defaultHandler: React.PropTypes.func,
100107
defaultHandlerProps: React.PropTypes.object,
101108
onChange: React.PropTypes.func,
102-
wrapper: React.PropTypes.any
109+
wrapper: React.PropTypes.any,
110+
location: React.PropTypes.string
103111
};
104112

105113
Switcher.defaultProps = {
106-
pushState: false
114+
pushState: false,
115+
hashChange: true,
116+
load: true,
117+
location: 'hash'
107118
};

webpack.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ module.exports = {
1919
commonjs2: "react",
2020
commonjs: "react",
2121
amd: "react"
22-
}
22+
},
23+
"window": "window"
2324
}
2425
],
2526
plugins: [

0 commit comments

Comments
 (0)