Skip to content

Commit f7dbe6d

Browse files
david-nordvallForsakenHarmony
authored andcommitted
Match component more accurately sets matches (preactjs#313)
* Match component allows for parameters when determining if URL matches.
1 parent 3eb5b31 commit f7dbe6d

File tree

4 files changed

+27
-7
lines changed

4 files changed

+27
-7
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
},
4646
"homepage": "https://github.com/developit/preact-router",
4747
"peerDependencies": {
48-
"preact": ">=10 || ^10.0.0-beta.0"
48+
"preact": ">=10 || ^10.0.0-rc.0"
4949
},
5050
"devDependencies": {
5151
"babel-cli": "^6.9.0",
@@ -75,7 +75,7 @@
7575
"mkdirp": "^0.5.1",
7676
"mocha": "^5.2.0",
7777
"npm-run-all": "^3.0.0",
78-
"preact": "^10.0.0-beta.0",
78+
"preact": "^10.0.0-rc.0",
7979
"pretty-bytes-cli": "^1.0.0",
8080
"puppeteer": "^1.9.0",
8181
"rimraf": "^2.5.1",

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,5 +261,5 @@ Router.Router = Router;
261261
Router.Route = Route;
262262
Router.Link = Link;
263263

264-
export { subscribers, getCurrentUrl, route, Router, Route, Link };
264+
export { subscribers, getCurrentUrl, route, Router, Route, Link, exec };
265265
export default Router;

src/match.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { h, Component } from 'preact';
2-
import { subscribers, getCurrentUrl, Link as StaticLink } from 'preact-router';
2+
import { subscribers, getCurrentUrl, Link as StaticLink, exec } from 'preact-router';
33

44
export class Match extends Component {
55
update = url => {
@@ -19,7 +19,7 @@ export class Match extends Component {
1919
return props.children({
2020
url,
2121
path,
22-
matches: path===props.path
22+
matches: exec(path, props.path, {}) !== false
2323
});
2424
}
2525
}

test/dom.js

+22-2
Original file line numberDiff line numberDiff line change
@@ -176,44 +176,64 @@ describe('dom', () => {
176176
describe('<Match>', () => {
177177
it('should invoke child function with match status when routing', done => {
178178
let spy1 = sinon.spy(),
179-
spy2 = sinon.spy();
179+
spy2 = sinon.spy(),
180+
spy3 = sinon.spy();
180181
mount(
181182
<div>
182183
<Router />
183184
<Match path="/foo">{spy1}</Match>
184185
<Match path="/bar">{spy2}</Match>
186+
<Match path="/bar/:param">{spy3}</Match>
185187
</div>
186188
);
187189

188190
expect(spy1, 'spy1 /foo').to.have.been.calledOnce.and.calledWithMatch({ matches: false, path:'/', url:'/' });
189191
expect(spy2, 'spy2 /foo').to.have.been.calledOnce.and.calledWithMatch({ matches: false, path:'/', url:'/' });
192+
expect(spy3, 'spy3 /foo').to.have.been.calledOnce.and.calledWithMatch({ matches: false, path:'/', url:'/' });
190193

191194
spy1.resetHistory();
192195
spy2.resetHistory();
196+
spy3.resetHistory();
193197

194198
route('/foo');
195199

196200
setTimeout( () => {
197201
expect(spy1, 'spy1 /foo').to.have.been.calledOnce.and.calledWithMatch({ matches: true, path:'/foo', url:'/foo' });
198202
expect(spy2, 'spy2 /foo').to.have.been.calledOnce.and.calledWithMatch({ matches: false, path:'/foo', url:'/foo' });
203+
expect(spy3, 'spy3 /foo').to.have.been.calledOnce.and.calledWithMatch({ matches: false, path:'/foo', url:'/foo' });
199204
spy1.resetHistory();
200205
spy2.resetHistory();
206+
spy3.resetHistory();
201207

202208
route('/foo?bar=5');
203209

204210
setTimeout( () => {
205211
expect(spy1, 'spy1 /foo?bar=5').to.have.been.calledOnce.and.calledWithMatch({ matches: true, path:'/foo', url:'/foo?bar=5' });
206212
expect(spy2, 'spy2 /foo?bar=5').to.have.been.calledOnce.and.calledWithMatch({ matches: false, path:'/foo', url:'/foo?bar=5' });
213+
expect(spy3, 'spy3 /foo?bar=5').to.have.been.calledOnce.and.calledWithMatch({ matches: false, path:'/foo', url:'/foo?bar=5' });
207214
spy1.resetHistory();
208215
spy2.resetHistory();
216+
spy3.resetHistory();
209217

210218
route('/bar');
211219

212220
setTimeout( () => {
213221
expect(spy1, 'spy1 /bar').to.have.been.calledOnce.and.calledWithMatch({ matches: false, path:'/bar', url:'/bar' });
214222
expect(spy2, 'spy2 /bar').to.have.been.calledOnce.and.calledWithMatch({ matches: true, path:'/bar', url:'/bar' });
223+
expect(spy3, 'spy3 /bar').to.have.been.calledOnce.and.calledWithMatch({ matches: false, path:'/bar', url:'/bar' });
224+
spy1.resetHistory();
225+
spy2.resetHistory();
226+
spy3.resetHistory();
215227

216-
done();
228+
route('/bar/123');
229+
230+
setTimeout( () => {
231+
expect(spy1, 'spy1 /bar/123').to.have.been.calledOnce.and.calledWithMatch({ matches: false, path:'/bar/123', url:'/bar/123' });
232+
expect(spy2, 'spy2 /bar/123').to.have.been.calledOnce.and.calledWithMatch({ matches: false, path:'/bar/123', url:'/bar/123' });
233+
expect(spy3, 'spy3 /bar/123').to.have.been.calledOnce.and.calledWithMatch({ matches: true, path:'/bar/123', url:'/bar/123' });
234+
235+
done();
236+
}, 20);
217237
}, 20);
218238
}, 20);
219239
}, 20);

0 commit comments

Comments
 (0)