Update 2022-12-31:
The latest version of Hypothesis will detect client-side URL changes via the HTML 5 History API or the Navigation API and update the loaded set of annotations automatically. For this to work, the web application must follow these best practices for web apps that do client-side navigation:
- Update the URL when the logical route in the app changes
- Use the path and query string of the URL to indicate the route, not the fragment. For example
https://example.com/your-app/some/page
is OK,https://example.com/your-app/#!/some/page
is not. - The content of the page must be updated by the time Hypothesis has fetched the new annotations for the new URL. The safest way to do this is by not updating the URL until the content has been updated or is just about to be updated (eg. content has been fetched and a React/Vue/Angular re-render is queued up). In browsers that implement the new Navigation API (as of Dec 2022, this is Chrome-only) Hypothesis will use the
navigatesuccess
event to know when a new route has loaded. In other browsers it relies on the URL change to signal that the new content is ready.
Criteria (1) and (2) are the most important. If not met, annotations from different "pages" in the app will get merged together and annotations will not be updated as you navigate around the web app. If criteria (3) is not met, annotations may incorrectly show up in the "Orphans" tab, but they should still load.
Original note (now out of date, see above):
This is a sample which demonstrates how to use Hypothesis <= v0.21.0 in a JavaScript Single Page Application which does client-side routing.
The current version of Hypothesis at the time of writing does not automatically update the loaded annotations when the page URL changes. This sample takes the heavy-handed approach of completely removing and reloading Hypothesis when the URL changes. In future we'll look to build this into Hypothesis automatically in a much more performant way.
- Download files from this gist and extract into a directory
- Run
python -m SimpleHTTPServer 8000
- Navigate to
http://locahost:8000/demo.html
- Switch chapters using Chapter links in left navbar
@robertknight when https://github.com/hypothesis/browser-extension/blob/8c1548dda1c840016c0bbc876e051b6b1f4d810e/src/unload-client.js#L14 is called, is this also closing the websocket that was opened by that specific instance of the client?