Skip to content

Commit 2301c73

Browse files
committed
fix(core polyfills): Pass a destination object with a url property along with the navigate event.
1 parent b7b81ce commit 2301c73

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

src/core/polyfills.js

+16-2
Original file line numberDiff line numberDiff line change
@@ -39,24 +39,38 @@
3939
// event on location change and even that without interception support, etc.
4040
!(function () {
4141
if (window.navigation == undefined) {
42+
43+
class NavigationEvent extends CustomEvent {
44+
constructor() {
45+
super("navigate");
46+
this.destination = { url: undefined };
47+
}
48+
}
49+
4250
// Create a navigation object on the window
4351
// We create a DOM element for the navigation object so that we can
4452
// attach events on it.
4553
window.navigation = document.createElement("div");
4654

55+
const create_event = (args) => {
56+
const event = new NavigationEvent();
57+
event.destination.url = args[2];
58+
return event;
59+
};
60+
4761
// Patch pushState to trigger an `navigate` event on the navigation
4862
// object when the URL changes.
4963
const pushState = window.history.pushState;
5064
window.history.pushState = function () {
5165
pushState.apply(window.history, arguments);
52-
window.navigation.dispatchEvent(new Event("navigate"));
66+
window.navigation.dispatchEvent(create_event(arguments));
5367
};
5468

5569
// Same with replaceState
5670
const replaceState = window.history.replaceState;
5771
window.history.replaceState = function () {
5872
replaceState.apply(window.history, arguments);
59-
window.navigation.dispatchEvent(new Event("navigate"));
73+
window.navigation.dispatchEvent(create_event(arguments));
6074
};
6175
}
6276
})();

0 commit comments

Comments
 (0)