Skip to content

Commit

Permalink
Explainer for navigateEvent.sourceElement
Browse files Browse the repository at this point in the history
  • Loading branch information
natechapin committed Sep 14, 2023
1 parent 1cb2da0 commit 85edaf1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,8 @@ The event object has several useful properties:
- `info`: any value passed by `navigation.navigate(url, { state, info })`, `navigation.back({ info })`, or similar, if the navigation was initiated by one of those methods and the `info` option was supplied. Otherwise, undefined. See [the example below](#example-using-info) for more.
- `sourceElement`: an `Element` or null, indicating what element (if any) initiated this navigation. If the navigation was triggered by a link click, the `sourceElement` will be the `<a href="...">`. If the navigation was triggered by a form submission, the `sourceElement` will be the [the element that sent the `submit` event to the form](https://developer.mozilla.org/en-US/docs/Web/API/SubmitEvent/submitter), or if that is null, the `<form>` being submitted. The `sourceElement` will also be null when a targeting a different `window` (e.g., `<a href="..." target="otherWindow">`).
- `signal`: an [`AbortSignal`](https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal) which can be monitored for when the navigation gets aborted.
Note that you can check if the navigation will be [same-document or cross-document](#appendix-types-of-navigations) via `event.destination.sameDocument`, and you can check whether the navigation is to an already-existing history entry (i.e. is a back/forward navigation) via `event.navigationType`.
Expand Down Expand Up @@ -366,7 +368,7 @@ navigation.addEventListener("navigate", e => {
e.intercept({
handler() {
if (e.formData) {
processFormDataAndUpdateUI(e.formData, e.signal);
processFormDataAndUpdateUI(e.formData, e.sourceElement, e.signal);
} else {
doSinglePageAppNav(e.destination, e.signal);
}
Expand Down

0 comments on commit 85edaf1

Please sign in to comment.