Skip to content

Commit 0b2448e

Browse files
committed
Fix bug when path is "/" and regex is "/.*"
1 parent f63b9b8 commit 0b2448e

File tree

5 files changed

+32
-15
lines changed

5 files changed

+32
-15
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.

src/components/Switcher.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, {Component} from 'react';
2-
import {ensureTrailingSlash} from 'helpers';
2+
import {removeTrailingSlash} from 'helpers';
33

44
export default class Switcher extends Component {
55
static displayName = 'Switcher';
@@ -80,13 +80,13 @@ export default class Switcher extends Component {
8080

8181
getSwitch = (path) => {
8282
var children = [].concat(this.props.children);
83-
var consistentPath = ensureTrailingSlash(path);
83+
var consistentPath = removeTrailingSlash(path);
8484
return children.filter(child => {
8585
var childPaths = [].concat(child.props.path).map(childPath => {
86-
return ensureTrailingSlash(this.props.basePath + childPath);
86+
return `${removeTrailingSlash(this.props.basePath + childPath)}/?`;
8787
});
8888
var regex = new RegExp(`^${childPaths.join('|')}$`);
89-
return consistentPath.match(regex);
89+
return regex.test(consistentPath);
9090
})[0] || null;
9191
}
9292

src/helpers.js

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

test/components/Switcher_test.js

+7
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,13 @@ describe('Switcher', function() {
261261
assert.equal(node.innerHTML, 'Default Handler');
262262
});
263263

264+
it('default handle can match /', function() {
265+
window.location.hash = '/';
266+
this.switcher.handleRouteChange();
267+
var node = ReactDOM.findDOMNode(this.switcher);
268+
assert.equal(node.innerHTML, 'Default Handler');
269+
});
270+
264271
it('renders matching component', function() {
265272
window.location.hash = '/home';
266273
this.switcher.handleRouteChange();

test/helpers_test.js

+14-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
11
import {assert} from 'chai';
2-
import {ensureTrailingSlash} from 'helpers';
2+
import {removeTrailingSlash} from 'helpers';
33

44
describe('helpers', function() {
5-
describe('ensureTrailingSlash', function() {
6-
it('adds trailing slash to path without it', function() {
5+
describe('removeTrailingSlash', function() {
6+
it('removes trailing slash to path with it', function() {
77
var path = '/test/something/more';
8-
var newPath = ensureTrailingSlash(path);
9-
assert.equal(newPath, `${path}/`);
8+
var newPath = removeTrailingSlash(`${path}/`);
9+
assert.equal(newPath, path);
10+
});
11+
12+
it('returns unmodified path if it does not have a trailing slash', function() {
13+
var path = '/test/something/more';
14+
var newPath = removeTrailingSlash(path);
15+
assert.equal(newPath, path);
1016
});
1117

12-
it('returns unmodified path if it already has trailing slash', function() {
13-
var path = '/test/something/more/';
14-
var newPath = ensureTrailingSlash(path);
18+
it('returns unmodified path if path is /', function() {
19+
var path = '/';
20+
var newPath = removeTrailingSlash(path);
1521
assert.equal(newPath, path);
1622
});
1723
});

0 commit comments

Comments
 (0)