Skip to content

Commit 38e843e

Browse files
committedOct 20, 2015
Remove defaultHandler and defaultHandlerProps
- using `path="/.*"` as the last `Switch` does the same thing
1 parent 45cb2eb commit 38e843e

File tree

4 files changed

+11
-37
lines changed

4 files changed

+11
-37
lines changed
 

‎docs/components/Switcher.md

+1-8
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The `Switcher` is a container component that holds a list of React components. I
99
<div path="/">Hello World</div>
1010
<AboutComponent path="/about" />
1111
<AnotherComponent path="/another" anotherProp={myProp} />
12+
<DefaultComponent path="/.*" />
1213
</Switcher>
1314
```
1415

@@ -38,14 +39,6 @@ When true, `Switcher` listens to the `load` event and looks for path changes on
3839

3940
By default `window.location.hash` is used to match paths. If `location` is set to 'pathname', then `window.location.pathname` is used instead. Under the hood, it is using `window.location[this.props.location]`, so you can use `search` or any other valid property on `window.location`.
4041

41-
### defaultHandler
42-
43-
The `defaultHandler` is the handler that is used when there are no child elements with matching paths. If a default handler is not provided by the user, the component will render nothing when there isn't a match.
44-
45-
### defaultHandlerProps
46-
47-
`defaultHandlerProps` is passed directly as props to the `defaultHandler`.
48-
4942
### onChange
5043

5144
`onChange` enables a hook to call the provided function whenever the path changes. The function is provided 2 arguments, the first being a boolean of whether the path had a match, and the second being the path as a string.

‎examples/basic/components/LeftContent.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ import React, {Component} from 'react';
22
import {Switcher} from 'switcheroo';
33
import Panel from './Panel';
44

5-
function defaultView() {
6-
return <div>Default Content: No matching route</div>;
7-
}
8-
95
export default class LeftContent extends Component {
106
render() {
117
var panelItems = [
@@ -17,13 +13,14 @@ export default class LeftContent extends Component {
1713
return (
1814
<div className="content-left">
1915
<h2>Left Content</h2>
20-
<Switcher defaultHandler={defaultView}>
16+
<Switcher>
2117
<div path="/route1">Route 1 rules!</div>
2218
<div path="/route2">Route 2 for life</div>
2319
<Panel
2420
path="/route3"
2521
name="Stuff"
2622
items={panelItems} />
23+
<div path="/.*">Default content: No matching route</div>
2724
</Switcher>
2825
</div>
2926
);

‎src/components/Switcher.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ export default class Switcher extends Component {
1212
pushState: React.PropTypes.bool,
1313
hashChange: React.PropTypes.bool,
1414
load: React.PropTypes.bool,
15-
defaultHandler: React.PropTypes.func,
16-
defaultHandlerProps: React.PropTypes.object,
1715
onChange: React.PropTypes.func,
1816
wrapper: React.PropTypes.any,
1917
location: React.PropTypes.string,
@@ -30,7 +28,6 @@ export default class Switcher extends Component {
3028

3129
constructor(props) {
3230
super(props);
33-
this.defaultSwitch = props.defaultHandler ? React.createElement(props.defaultHandler, props.defaultHandlerProps) : null;
3431

3532
var currentPath = this.getLocation();
3633
var switchElement = this.getSwitch(currentPath);
@@ -111,10 +108,10 @@ export default class Switcher extends Component {
111108
return React.createElement(
112109
this.props.wrapper,
113110
this.props,
114-
this.state.visibleSwitch || this.defaultSwitch
111+
this.state.visibleSwitch
115112
);
116113
} else {
117-
return this.state.visibleSwitch || this.defaultSwitch;
114+
return this.state.visibleSwitch;
118115
}
119116
}
120117
}

‎test/components/Switcher_test.js

+6-19
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,10 @@
1-
import React, {Component, PropTypes} from 'react';
1+
import React from 'react';
22
import ReactDOM from 'react-dom';
33
import {assert} from 'chai';
44
import sinon from 'sinon';
55
import window from 'window';
66
import Switcher from 'components/Switcher';
77

8-
class Handler extends Component {
9-
static displayName = 'Handler';
10-
static propTypes = {
11-
text: PropTypes.string
12-
};
13-
14-
render() {
15-
return <div>{this.props.text}</div>;
16-
}
17-
}
18-
198
describe('Switcher', function() {
209
describe('#getLocation', function() {
2110
describe('using location.hash', function() {
@@ -252,12 +241,10 @@ describe('Switcher', function() {
252241

253242
describe('with default handler', function() {
254243
beforeEach(function() {
255-
var props = {text: 'Hello'};
256244
this.switcher = ReactDOM.render(
257-
<Switcher
258-
defaultHandler={Handler}
259-
defaultHandlerProps={props}>
260-
<div path="/">Home</div>
245+
<Switcher>
246+
<div path="/home">Home</div>
247+
<div path="/.*">Default Handler</div>
261248
</Switcher>,
262249
document.body
263250
);
@@ -271,11 +258,11 @@ describe('Switcher', function() {
271258
window.location.hash = '/nomatch';
272259
this.switcher.handleRouteChange();
273260
var node = ReactDOM.findDOMNode(this.switcher);
274-
assert.equal(node.innerHTML, 'Hello');
261+
assert.equal(node.innerHTML, 'Default Handler');
275262
});
276263

277264
it('renders matching component', function() {
278-
window.location.hash = '/';
265+
window.location.hash = '/home';
279266
this.switcher.handleRouteChange();
280267
var node = ReactDOM.findDOMNode(this.switcher);
281268
assert.equal(node.innerHTML, 'Home');

0 commit comments

Comments
 (0)
Please sign in to comment.