Skip to content

Commit f2bf4bd

Browse files
committed
[removed] RouteStore
[added] Router.PathState for keeping track of the current URL path [added] Router.RouteLookup for looking up routes [added] Router.Transitions for transitioning to other routes [added] Pluggable scroll behaviors [changed] <Routes preserveScrollPosition> => <Routes scrollBehavior> [removed] <Route preserveScrollPosition> [removed] Router.transitionTo, Router.replaceWith, Router.goBack
1 parent c96e34d commit f2bf4bd

28 files changed

+1222
-938
lines changed

modules/actions/LocationActions.js

+8-50
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,27 @@
1-
var LocationDispatcher = require('../dispatchers/LocationDispatcher');
2-
var isAbsoluteURL = require('../utils/isAbsoluteURL');
3-
var makePath = require('../utils/makePath');
4-
5-
function loadURL(url) {
6-
window.location = url;
7-
}
8-
91
/**
102
* Actions that modify the URL.
113
*/
124
var LocationActions = {
135

14-
PUSH: 'push',
15-
REPLACE: 'replace',
16-
POP: 'pop',
17-
UPDATE_SCROLL: 'update-scroll',
18-
196
/**
20-
* Transitions to the URL specified in the arguments by pushing
21-
* a new URL onto the history stack.
7+
* Indicates a location is being setup for the first time.
228
*/
23-
transitionTo: function (to, params, query) {
24-
if (isAbsoluteURL(to)) {
25-
loadURL(to);
26-
} else {
27-
LocationDispatcher.handleViewAction({
28-
type: LocationActions.PUSH,
29-
path: makePath(to, params, query)
30-
});
31-
}
32-
},
9+
SETUP: 'setup',
3310

3411
/**
35-
* Transitions to the URL specified in the arguments by replacing
36-
* the current URL in the history stack.
12+
* Indicates a new location is being pushed to the history stack.
3713
*/
38-
replaceWith: function (to, params, query) {
39-
if (isAbsoluteURL(to)) {
40-
loadURL(to);
41-
} else {
42-
LocationDispatcher.handleViewAction({
43-
type: LocationActions.REPLACE,
44-
path: makePath(to, params, query)
45-
});
46-
}
47-
},
14+
PUSH: 'push',
4815

4916
/**
50-
* Transitions to the previous URL.
17+
* Indicates the current location should be replaced.
5118
*/
52-
goBack: function () {
53-
LocationDispatcher.handleViewAction({
54-
type: LocationActions.POP
55-
});
56-
},
19+
REPLACE: 'replace',
5720

5821
/**
59-
* Updates the window's scroll position to the last known position
60-
* for the current URL path.
22+
* Indicates the most recent entry should be removed from the history stack.
6123
*/
62-
updateScroll: function () {
63-
LocationDispatcher.handleViewAction({
64-
type: LocationActions.UPDATE_SCROLL
65-
});
66-
}
24+
POP: 'pop'
6725

6826
};
6927

modules/components/Link.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
var React = require('react');
2+
var warning = require('react/lib/warning');
23
var ActiveState = require('../mixins/ActiveState');
3-
var transitionTo = require('../actions/LocationActions').transitionTo;
4+
var RouteLookup = require('../mixins/RouteLookup');
5+
var Transitions = require('../mixins/Transitions');
46
var withoutProperties = require('../utils/withoutProperties');
57
var hasOwnProperty = require('../utils/hasOwnProperty');
6-
var makeHref = require('../utils/makeHref');
7-
var warning = require('react/lib/warning');
88

99
function isLeftClickEvent(event) {
1010
return event.button === 0;
@@ -51,7 +51,7 @@ var Link = React.createClass({
5151

5252
displayName: 'Link',
5353

54-
mixins: [ ActiveState ],
54+
mixins: [ ActiveState, RouteLookup, Transitions ],
5555

5656
statics: {
5757

@@ -99,7 +99,7 @@ var Link = React.createClass({
9999
* Returns the value of the "href" attribute to use on the DOM element.
100100
*/
101101
getHref: function () {
102-
return makeHref(this.props.to, Link.getParams(this.props), this.props.query);
102+
return this.makeHref(this.props.to, Link.getParams(this.props), this.props.query);
103103
},
104104

105105
/**
@@ -145,7 +145,7 @@ var Link = React.createClass({
145145
event.preventDefault();
146146

147147
if (allowTransition)
148-
transitionTo(this.props.to, Link.getParams(this.props), this.props.query);
148+
this.transitionTo(this.props.to, Link.getParams(this.props), this.props.query);
149149
},
150150

151151
render: function () {

0 commit comments

Comments
 (0)