-
Notifications
You must be signed in to change notification settings - Fork 595
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Experiment Async Route support #653
Open
yoshuawuyts
wants to merge
4
commits into
master
Choose a base branch
from
async-route
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
var html = require('bel') // cannot require choo/html because it's a nested repo | ||
|
||
module.exports = mainView | ||
|
||
function mainView (state, emit) { | ||
return html` | ||
<body> | ||
Async route | ||
</body> | ||
` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,8 @@ function Choo (opts) { | |
this._hasWindow = typeof window !== 'undefined' | ||
this._createLocation = nanolocation | ||
this._cache = opts.cache | ||
this._asyncProxy = null // proxy for async routes | ||
this._asyncRoutes = {} | ||
this._loaded = false | ||
this._stores = [] | ||
this._tree = null | ||
|
@@ -76,10 +78,66 @@ function Choo (opts) { | |
|
||
Choo.prototype.route = function (route, handler) { | ||
assert.equal(typeof route, 'string', 'choo.route: route should be type string') | ||
assert.equal(typeof handler, 'function', 'choo.handler: route should be type function') | ||
assert.equal(typeof handler, 'function', 'choo.route: handler should be type function') | ||
this.router.on(route, handler) | ||
} | ||
|
||
// Register a route to be loaded asynchronously. | ||
Choo.prototype.experimentalAsyncRoute = function (route, loader) { | ||
assert.equal(typeof route, 'string', 'choo.asyncRoute: asyncRoute should be type string') | ||
assert.equal(typeof loader, 'function', 'choo.asyncRoute: loader should be type function') | ||
|
||
var IDLE = 0 | ||
var LOADING = 1 | ||
var LOADED = 2 | ||
|
||
var loadingState = IDLE | ||
var renderRoute = null | ||
var view = null | ||
var self = this | ||
|
||
this.route(route, function (state, emit) { | ||
if (!self._asyncProxy) self._initAsyncProxy() | ||
// Begin loading the bundle on the first call | ||
if (loadingState === IDLE) { | ||
emit('choo:async-route-start', state.route) | ||
renderRoute = state.route | ||
loadingState = LOADING | ||
|
||
var p = loader(onload) | ||
assert(p && p.then, 'choo.asyncRoute: async route should return a Promise') | ||
p.then(onload.bind(null, null), onload) | ||
return self._asyncProxy | ||
} else if (loadingState === LOADING) { | ||
return self._asyncProxy | ||
} else { | ||
// loadingState === LOADED | ||
return view(state, emit) | ||
} | ||
|
||
function onload (err, _view) { | ||
if (err) { | ||
emit('error', err) | ||
loadingState = IDLE | ||
return | ||
} | ||
|
||
emit('choo:async-route-end', renderRoute, _view) | ||
loadingState = LOADED | ||
view = _view | ||
|
||
// Only rerender if we are still on the same route | ||
if (state.route === renderRoute) emit('render') | ||
} | ||
}) | ||
} | ||
|
||
Choo.prototype._initAsyncProxy = function () { | ||
var tagName = this._tree ? this._tree.nodeName : 'body' | ||
this._asyncProxy = document.createElement(tagName) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm afraid this won't work on the server |
||
this._asyncProxy.isSameNode = function () { return true } | ||
} | ||
|
||
Choo.prototype.use = function (cb) { | ||
assert.equal(typeof cb, 'function', 'choo.use: cb should be type function') | ||
var self = this | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we don't need to pass in the
onload
callback here ifp
must return a promise anyway