Skip to content

Commit 76df023

Browse files
committed
Remove dependency on route-recognizer
- Use regular expressions instead for more flexibility, better performance, and a smaller package
1 parent 23749e4 commit 76df023

File tree

9 files changed

+50
-38
lines changed

9 files changed

+50
-38
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/Switch.md

+1-9
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,4 @@ A "Switch" component is always used inside of the context of a `Switcher` compon
1111

1212
### path
1313

14-
The `path` prop is a string that if matches the path, the corresponding handler component will be rendered. If you define multiple `Switch`es with the same path, the last one will be used. switcheroo makes use of [`route-recognizer`](https://github.com/tildeio/route-recognizer) to match paths with the URL, meaning that dynamic segments and star segments will work.
15-
16-
```js
17-
// dynamic segments
18-
"/post/:id" matches "/post/1", "/post/100", and "/post/whatever", but not "/post"
19-
20-
// star segements
21-
"/post/*everything" matches "/post/one", "post/one/two", and "/post/one/two/three", but not "/post"
22-
```
14+
The `path` prop is a string representing a regular expression. If the regular expression matches the path, the corresponding handler component will be rendered. If you define multiple `Switch`es with the same path, the first one will be used.

karma.conf.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,14 @@ module.exports = function(config) {
4545
},
4646
module: {
4747
loaders: [
48-
{ test: /\.js$/, loader: 'babel-loader', exclude: /node_modules/ }
48+
{
49+
test: /\.js$/,
50+
loader: 'babel',
51+
exclude: /node_modules/,
52+
query: {
53+
auxiliaryCommentBefore: 'istanbul ignore next'
54+
}
55+
}
4956
],
5057
postLoaders: [
5158
{

package.json

-3
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,5 @@
5252
},
5353
"peerDependencies": {
5454
"react": ">=0.12.0 <0.14.0"
55-
},
56-
"dependencies": {
57-
"route-recognizer": "^0.1.9"
5855
}
5956
}

src/components/Switcher.js

+9-19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, {Component} from 'react';
2-
import Recognizer from 'route-recognizer';
2+
import {ensureTrailingSlash} from 'helpers';
33
import window from 'window';
44

55
export default class Switcher extends Component {
@@ -18,7 +18,7 @@ export default class Switcher extends Component {
1818
onChange: React.PropTypes.func,
1919
wrapper: React.PropTypes.any,
2020
location: React.PropTypes.string,
21-
baseURL: React.PropTypes.string
21+
basePath: React.PropTypes.string
2222
};
2323

2424
static defaultProps = {
@@ -32,7 +32,6 @@ export default class Switcher extends Component {
3232
constructor(props) {
3333
super(props);
3434
this.defaultSwitch = props.defaultHandler ? React.createElement(props.defaultHandler, props.defaultHandlerProps) : null;
35-
this.initializeRecognizer(props);
3635

3736
var currentPath = this.getLocation();
3837
var switchElement = this.getSwitch(currentPath);
@@ -54,8 +53,6 @@ export default class Switcher extends Component {
5453
}
5554

5655
componentWillReceiveProps(nextProps) {
57-
this.initializeRecognizer(nextProps);
58-
5956
var currentPath = this.getLocation();
6057
var switchElement = this.getSwitch(currentPath);
6158

@@ -86,22 +83,15 @@ export default class Switcher extends Component {
8683
}
8784

8885
getSwitch = (path) => {
89-
var handlers = this.recognizer.recognize(path);
90-
return (handlers && handlers[0] && handlers[0].handler) || null;
86+
var children = [].concat(this.props.children);
87+
var consistentPath = ensureTrailingSlash(path);
88+
return children.filter(child => {
89+
var fullChildPath = ensureTrailingSlash(this.props.basePath + child.props.path);
90+
var regex = new RegExp(`^${fullChildPath}$`);
91+
return consistentPath.match(regex);
92+
})[0] || null;
9193
}
9294

93-
initializeRecognizer = (props) => {
94-
this.recognizer = new Recognizer();
95-
var children = [].concat(props.children);
96-
children.forEach((child) => {
97-
this.recognizer.add([{
98-
path: `${props.basePath}${child.props.path}`,
99-
handler: child.props.handler || child
100-
}]);
101-
});
102-
}
103-
104-
10595
handleRouteChange = (ev) => {
10696
var currentPath = this.getLocation();
10797
var switchElement = this.getSwitch(currentPath);

src/helpers.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export function ensureTrailingSlash(path) {
2+
return path.slice(-1) !== '/' ? `${path}/` : path;
3+
}

test/components/Switcher_test.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ describe('Switcher', function() {
9393
<Switcher>
9494
<div path="/">Home</div>
9595
<div path="/another">Another</div>
96-
<div path="/wildCardPath/*anything">Wild</div>
97-
<div path="/path/:dynamic/more">Dynamic</div>
96+
<div path="/wildCardPath/.*">Wild</div>
97+
<div path="/path/.+/more">Dynamic</div>
9898
<div path="/duplicate">Dup 1</div>
9999
<div path="/duplicate">Dup 2</div>
100100
</Switcher>,
@@ -121,9 +121,9 @@ describe('Switcher', function() {
121121
assert.isNull(swtch);
122122
});
123123

124-
it('gets last match if duplicate paths', function() {
124+
it('gets first match if duplicate paths', function() {
125125
var swtch = this.switcher.getSwitch('/duplicate');
126-
assert.equal(swtch.props.children, 'Dup 2');
126+
assert.equal(swtch.props.children, 'Dup 1');
127127
});
128128

129129
it('handles paths with wild cards', function() {

0 commit comments

Comments
 (0)