Skip to content

Commit 2d0fb47

Browse files
committed
Merge pull request #90 from benjohnson/active-route
[changed] activeRoute can render with props and children.
2 parents c56ec0c + 73570ed commit 2d0fb47

File tree

12 files changed

+27
-25
lines changed

12 files changed

+27
-25
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ React.renderComponent((
6060

6161
When a `Route` is active, you'll get an instance of `handler`
6262
automatically rendered for you. When one of the child routes is active,
63-
you can render it with `this.props.activeRoute` in the parent all the
63+
you can render it with `this.props.activeRoute()` in the parent all the
6464
way down the view hierarchy. This allows you to create nested layouts
6565
without having to wire it all up yourself. `Link` components create
6666
accessible anchor tags to route you around the application.
@@ -91,7 +91,7 @@ var App = React.createClass({
9191
<li><Link to="users">Users</Link></li>
9292
<li><Link to="user" userId="123">User 123</Link></li>
9393
</ul>
94-
{this.props.activeRoute}
94+
{this.props.activeRoute()}
9595
</div>
9696
);
9797
}
@@ -108,7 +108,7 @@ var Users = React.createClass({
108108
return (
109109
<div>
110110
<h2>Users</h2>
111-
{this.props.activeRoute}
111+
{this.props.activeRoute()}
112112
</div>
113113
);
114114
}
@@ -180,8 +180,7 @@ routes do not inherit the path of their parent.
180180

181181
Routes can be nested. When a child route matches, the parent route's
182182
handler will have an instance of the child route's handler available on
183-
`this.props.activeRoute`.
184-
183+
`this.props.activeRoute()`.
185184
#### Examples
186185

187186
```xml
@@ -215,7 +214,8 @@ props and static methods available to these components.
215214
#### Props
216215

217216
**this.props.activeRoute** - The active child route handler instance.
218-
Use it in your render method to render the child route.
217+
Use it in your render method to render the child route. You can pass
218+
additional props to it for rendering.
219219

220220
**this.props.params** - When a route has dynamic segments like `<Route
221221
path="users/:userId"/>` the dynamic values are available at

examples/auth-flow/app.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var App = React.createClass({
3434
<li><Link to="about">About</Link></li>
3535
<li><Link to="dashboard">Dashboard</Link> (authenticated)</li>
3636
</ul>
37-
{this.props.activeRoute}
37+
{this.props.activeRoute()}
3838
</div>
3939
);
4040
}
@@ -99,7 +99,7 @@ var Login = React.createClass({
9999
var errors = this.state.error ? <p>Bad login information</p> : '';
100100
return (
101101
<form onSubmit={this.handleSubmit}>
102-
<label><input ref="email" placeholder="email" defaultValue="[email protected]"/></label>
102+
<label><input ref="email" placeholder="email" defaultValue="[email protected]"/></label>
103103
<label><input ref="pass" placeholder="password"/></label> (hint: password1)<br/>
104104
<button type="submit">login</button>
105105
{errors}

examples/data-flow/app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ var App = React.createClass({
5656
{links}
5757
</ul>
5858
<div className="Detail">
59-
{this.props.activeRoute}
59+
{this.props.activeRoute()}
6060
</div>
6161
</div>
6262
);

examples/dynamic-segments/app.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var App = React.createClass({
1212
<li><Link to="user" userId="123">Bob</Link></li>
1313
<li><Link to="user" userId="abc">Sally</Link></li>
1414
</ul>
15-
{this.props.activeRoute}
15+
{this.props.activeRoute()}
1616
</div>
1717
);
1818
}
@@ -27,7 +27,7 @@ var User = React.createClass({
2727
<li><Link to="task" userId={this.props.params.userId} taskId="foo">foo task</Link></li>
2828
<li><Link to="task" userId={this.props.params.userId} taskId="bar">bar task</Link></li>
2929
</ul>
30-
{this.props.activeRoute}
30+
{this.props.activeRoute()}
3131
</div>
3232
);
3333
}

examples/master-detail/app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ var App = React.createClass({
111111
var contacts = this.state.contacts.map(function(contact) {
112112
return <li key={contact.id}><Link to="contact" id={contact.id}>{contact.first}</Link></li>
113113
});
114-
var content = (this.props.activeRoute) ? this.props.activeRoute : this.indexTemplate();
114+
var content = (this.props.activeRoute) ? this.props.activeRoute() : this.indexTemplate();
115115
return (
116116
<div className="App">
117117
<div className="ContactList">

examples/partial-app-loading/app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ var App = React.createClass({
5252
<ul>
5353
<li><Link to="dashboard">Dashboard</Link></li>
5454
</ul>
55-
{this.props.activeRoute}
55+
{this.props.activeRoute()}
5656
</div>
5757
);
5858
}

examples/partial-app-loading/dashboard.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var Dashboard = React.createClass({
1313
<ul>
1414
<li><Link to="inbox">Inbox</Link></li>
1515
</ul>
16-
{this.props.activeRoute}
16+
{this.props.activeRoute()}
1717
</div>
1818
);
1919
}

examples/query-params/app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var App = React.createClass({
1313
<li><Link to="user" userId="123" query={{showAge: true}}>Bob With Query Params</Link></li>
1414
<li><Link to="user" userId="abc">Sally</Link></li>
1515
</ul>
16-
{this.props.activeRoute}
16+
{this.props.activeRoute()}
1717
</div>
1818
);
1919
}

examples/shared-root/app.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var App = React.createClass({
1313
<li><Link to="signin">Sign in</Link></li>
1414
<li><Link to="forgot-password">Forgot Password</Link></li>
1515
</ol>
16-
{this.props.activeRoute}
16+
{this.props.activeRoute()}
1717
</div>
1818
);
1919
}
@@ -24,7 +24,7 @@ var SignedIn = React.createClass({
2424
return (
2525
<div>
2626
<h2>Signed In</h2>
27-
{this.props.activeRoute}
27+
{this.props.activeRoute()}
2828
</div>
2929
);
3030
}
@@ -43,7 +43,7 @@ var SignedOut = React.createClass({
4343
return (
4444
<div>
4545
<h2>Signed Out</h2>
46-
{this.props.activeRoute}
46+
{this.props.activeRoute()}
4747
</div>
4848
);
4949
}

examples/transitions/app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var App = React.createClass({
1212
<li><Link to="dashboard">Dashboard</Link></li>
1313
<li><Link to="form">Form</Link></li>
1414
</ul>
15-
{this.props.activeRoute || <h1>Home</h1>}
15+
{this.props.activeRoute() || <h1>Home</h1>}
1616
</div>
1717
);
1818
}

modules/components/Route.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ var RESERVED_PROPS = {
6464
* render: function () {
6565
* return (
6666
* <div class="application">
67-
* {this.props.activeRoute}
67+
* {this.props.activeRoute()}
6868
* </div>
6969
* );
7070
* }
@@ -429,7 +429,7 @@ function computeHandlerProps(matches, query) {
429429
activeRoute: null
430430
};
431431

432-
var childDescriptor;
432+
var childHandler;
433433
reversedArray(matches).forEach(function (match, index) {
434434
var route = match.route;
435435

@@ -440,13 +440,15 @@ function computeHandlerProps(matches, query) {
440440
props.params = match.params;
441441
props.query = query;
442442

443-
if (childDescriptor) {
444-
props.activeRoute = childDescriptor;
443+
if (childHandler) {
444+
props.activeRoute = childHandler;
445445
} else {
446446
props.activeRoute = null;
447447
}
448448

449-
childDescriptor = route.props.handler(props);
449+
childHandler = function (props, addedProps, children) {
450+
return route.props.handler(mergeProperties(props, addedProps), children);
451+
}.bind(this, props);
450452

451453
match.refName = props.ref;
452454
});

specs/Route.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ describe('a child route', function() {
114114
// var dataStore = 'goodbye';
115115
// var Layout = React.createClass({
116116
// render: function() {
117-
// return React.DOM.article(null, this.props.activeRoute);
117+
// return React.DOM.article(null, this.props.activeRoute());
118118
// }
119119
// });
120120
// var AsyncApp = React.createClass({

0 commit comments

Comments
 (0)