-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Combine Router
and Renderer
#4161
Merged
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
4d334e3
combine Router and Renderer into Client
Rich-Harris 00afff7
shuffle methods around a bit
Rich-Harris 3dd4c99
shuffle things around
Rich-Harris d0f2bb3
no need to expose routes
Rich-Harris 60c7453
extract utils
Rich-Harris 12d2036
merge master
Rich-Harris aa41de3
lint
Rich-Harris e5074d4
rename some methods
Rich-Harris ca3777a
simplify
Rich-Harris 26757bd
reorder
Rich-Harris 29b0037
reduce indirection
Rich-Harris d58dc4d
reduce indirection
Rich-Harris bc1e835
rename NavigationInfo to NavigationIntent
Rich-Harris fbdcab0
rename _load_error to load_root_error_page
Rich-Harris 8c2ad26
simplify
Rich-Harris 7f9cc40
simplify
Rich-Harris c787268
rename functions
Rich-Harris 73cd1a3
chain -> redirect_chain
Rich-Harris 72cd8c1
enabled -> router_enabled
Rich-Harris f850a0b
_navigate -> navigate
Rich-Harris b431f69
Update packages/kit/src/runtime/client/client.js
Rich-Harris 97587d7
Update packages/kit/src/runtime/client/client.js
Rich-Harris c98a66b
Update packages/kit/src/runtime/client/client.js
Rich-Harris 6485096
Update packages/kit/src/runtime/client/client.js
Rich-Harris 1d0434d
Update packages/kit/src/runtime/client/client.js
Rich-Harris 61f1221
Update packages/kit/src/runtime/client/client.js
Rich-Harris e1af2d7
Update packages/kit/src/runtime/client/client.js
Rich-Harris 0a4d5e1
Update packages/kit/src/runtime/client/client.js
Rich-Harris 4abafc6
Merge branch 'master' into combined-client
Rich-Harris a1fe0a1
Update packages/kit/src/runtime/client/client.js
Rich-Harris 8ccdf32
add traditional_navigation helper
Rich-Harris 14b319d
Merge branch 'combined-client' of github.com:sveltejs/kit into combin…
Rich-Harris 7373dd5
appease typescript
Rich-Harris 0be3a5f
loading -> load_cache
Rich-Harris 98ae319
invalid -> invalidated
Rich-Harris 3f8758c
explanatory comment
Rich-Harris 9c00c58
traditional_navigation -> native_navigation
Rich-Harris 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
explanatory comment
- Loading branch information
commit 3f8758ce6f33ba9f3118130acd4bf78683875dea
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
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.
something that might be worth a comment - I'm not understanding the second half of this check. if you want to navigate to the page we're already on, isn't that essentially just a no-op? why do we want to show a 404 page in that case?
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.
added a comment