@@ -14,6 +14,11 @@ var RouteStore = require('../stores/RouteStore');
14
14
var URLStore = require ( '../stores/URLStore' ) ;
15
15
var Promise = require ( 'es6-promise' ) . Promise ;
16
16
17
+ /**
18
+ * A map of <Route> component props that are reserved for use by the
19
+ * router. All other props are considered "static" props and are passed
20
+ * through to the route handler.
21
+ */
17
22
var RESERVED_PROPS = {
18
23
location : true ,
19
24
handler : true ,
@@ -22,6 +27,11 @@ var RESERVED_PROPS = {
22
27
children : true // ReactChildren
23
28
} ;
24
29
30
+ /**
31
+ * The ref name that can be used to reference the active route component.
32
+ */
33
+ var REF_NAME = '__activeRoute__' ;
34
+
25
35
/**
26
36
* <Route> components specify components that are rendered to the page when the
27
37
* URL matches a given pattern.
@@ -310,6 +320,14 @@ function getRootMatch(matches) {
310
320
return matches [ matches . length - 1 ] ;
311
321
}
312
322
323
+ function updateMatchComponents ( matches , refs ) {
324
+ var i = 0 , component ;
325
+ while ( component = refs [ REF_NAME ] ) {
326
+ matches [ i ++ ] . component = component ;
327
+ refs = component . refs ;
328
+ }
329
+ }
330
+
313
331
/**
314
332
* Runs all transition hooks that are required to get from the current state
315
333
* to the state specified by the given transition and updates the current state
@@ -334,6 +352,8 @@ function syncWithTransition(route, transition) {
334
352
335
353
var fromMatches , toMatches ;
336
354
if ( currentMatches ) {
355
+ updateMatchComponents ( currentMatches , route . refs ) ;
356
+
337
357
fromMatches = currentMatches . filter ( function ( match ) {
338
358
return ! hasMatch ( nextMatches , match ) ;
339
359
} ) ;
@@ -346,7 +366,7 @@ function syncWithTransition(route, transition) {
346
366
toMatches = nextMatches ;
347
367
}
348
368
349
- return checkTransitionFromHooks ( fromMatches , route . refs , transition ) . then ( function ( ) {
369
+ return checkTransitionFromHooks ( fromMatches , transition ) . then ( function ( ) {
350
370
if ( transition . isCancelled )
351
371
return ; // No need to continue.
352
372
@@ -380,15 +400,15 @@ function syncWithTransition(route, transition) {
380
400
* the route's handler, so that the deepest nested handlers are called first.
381
401
* Returns a promise that resolves after the last handler.
382
402
*/
383
- function checkTransitionFromHooks ( matches , refs , transition ) {
403
+ function checkTransitionFromHooks ( matches , transition ) {
384
404
var promise = Promise . resolve ( ) ;
385
405
386
406
reversedArray ( matches ) . forEach ( function ( match ) {
387
407
promise = promise . then ( function ( ) {
388
408
var handler = match . route . props . handler ;
389
409
390
410
if ( ! transition . isCancelled && handler . willTransitionFrom )
391
- return handler . willTransitionFrom ( transition , refs [ match . refName ] ) ;
411
+ return handler . willTransitionFrom ( transition , match . component ) ;
392
412
} ) ;
393
413
} ) ;
394
414
@@ -429,12 +449,12 @@ function computeHandlerProps(matches, query) {
429
449
} ;
430
450
431
451
var childHandler ;
432
- reversedArray ( matches ) . forEach ( function ( match , index ) {
452
+ reversedArray ( matches ) . forEach ( function ( match ) {
433
453
var route = match . route ;
434
454
435
455
props = Route . getUnreservedProps ( route . props ) ;
436
456
437
- props . ref = 'route-' + index ;
457
+ props . ref = REF_NAME ;
438
458
props . key = Path . injectParams ( route . props . path , match . params ) ;
439
459
props . params = match . params ;
440
460
props . query = query ;
@@ -447,10 +467,8 @@ function computeHandlerProps(matches, query) {
447
467
448
468
childHandler = function ( props , addedProps ) {
449
469
var children = Array . prototype . slice . call ( arguments , 2 ) ;
450
- return route . props . handler . apply ( null , [ mergeProperties ( props , addedProps ) ] . concat ( children ) ) ;
470
+ return route . props . handler . apply ( null , [ mergeProperties ( props , addedProps ) ] . concat ( children ) ) ;
451
471
} . bind ( this , props ) ;
452
-
453
- match . refName = props . ref ;
454
472
} ) ;
455
473
456
474
return props ;
0 commit comments