-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(history-service): navigation after reload (#175)
fixes #171 Instead of using a memory history under the hood for the consumer history, and storing the entries in session storage, we just compute the consumer path from the root location, and store all consumer states in the root history state. This change also removes the memory history. We don't need a facade for memory histories, since they don't affect the URL and browser history. For server-side rendering we will provide a static history instead (in a separate upcoming PR).
- Loading branch information
1 parent
eb8f5eb
commit b37eecf
Showing
21 changed files
with
1,157 additions
and
1,185 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
module.exports = [ | ||
{ | ||
path: 'lib/index.js', | ||
limit: '2 KB' | ||
limit: '3 KB' | ||
} | ||
]; |
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
Oops, something went wrong.