Scroll to anchor in `router.scrollBehavior` doesn't work #213
kidonng posted onGitHub
<!-- Please don't delete this template or we'll close your issue -->
<!-- Before creating an issue please make sure you are using the latest version of Saber. -->
<!-- Please confirm you will submit an issue. -->
<!-- Issues which contain questions or support requests will be closed. -->
<!-- (Update "[ ]" to "[x]" to check a box) -->
- I confirm that this is an issue rather than a question.
<!-- Please ask questions via following several ways. -->
<!-- https://chat.saber.land/ -->
<!-- https://stackoverflow.com/questions/ask?tags=saberjs -->
Bug report
The code attempts to scroll to the anchor if to.hash
exists and the anchor can be found. But the scroll never happens.
Version
0.6.4
Steps to reproduce
about.md
:
[Hello](./hello.md#world)
hello.md
:
# World
Lorem ipsum...
Then click the link in about.md
.
<!-- If you are reporting a bug that can ONLY be reproduced on your repository, PLEASE provide this repo link. That takes guessing work out of the way and saves us time. -->
<!-- You can also use this CodeSandbox starter https://bit.ly/2IlcpNF -->
What is expected?
Page scrolled to the title World.
What is actually happening?
Page scrolled to the top (default behavior).
Other relevant information
- If
to.hash
only contains ASCII characters, the hash before and after escaping are the same. If it contains non-ASCII characters (e.g. CJK characters), escaping the hash will produce a selector matching nothing (assuming header'sid
is generated in standard behavior).
Possible solution: Use
decodeURIComponent(to.hash)
instead ofwindow.CSS.escape(to.hash)
- Even if the selector is valid,
document.querySelector(hash)
still matches nothing, thus the scroll won't trigger. Chances are page is not loaded at that time.
Possible solution: Move the codition statement to a hook like
afterPageLoad
or use other methods (can only come up withsetTimeout(condition, 0)
)
- Result of running
saber -v
: cli.js/0.6.4 win32-x64 node-v12.3.1 - Browser version (optional): Google Chrome 76.0.3800.0 (64-bit)
- Is Saber a global or local install? Local
- Which package manager did you use for the install? Yarn
- Does this issue occur when all plugins are disabled? Yes