-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpolyfills.js
76 lines (69 loc) · 2.63 KB
/
polyfills.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// Polyfills for modern browsers
// SubmitEvent.submitter polyfill for Safari < 15.4 and jsDOM
// Original code: https://stackoverflow.com/a/61110260/1337474
// Also see: https://caniuse.com/?search=submitter
//
!(function () {
let last_btn = null;
const submitable_buttons = `button, input[type="button"], input[type="submit"], input[type="image"]`;
document.addEventListener(
"click",
function (e) {
if (!e.target.closest) return;
last_btn = e.target.closest(submitable_buttons);
},
true
);
document.addEventListener(
"submit",
function (e) {
if ("submitter" in e) return;
const canditates = [document.activeElement, last_btn];
last_btn = null;
for (const candidate of canditates) {
if (!candidate) continue;
if (!candidate.form) continue;
if (!candidate.matches(submitable_buttons)) continue;
e.submitter = candidate;
return;
}
e.submitter = e.target.querySelector(submitable_buttons);
},
true
);
})();
// Navigation polyfill for Firefox and Safari, as of 2024-01-04
// NOTE: this is a very basic polyfill, it only supports firing a `navigate`
// event on location change and even that without interception support, etc.
!(function () {
if (window.navigation == undefined) {
class NavigationEvent extends CustomEvent {
constructor() {
super("navigate");
this.destination = { url: undefined };
}
}
// Create a navigation object on the window
// We create a DOM element for the navigation object so that we can
// attach events on it.
window.navigation = document.createElement("div");
const create_event = (args) => {
const event = new NavigationEvent();
event.destination.url = args[2];
return event;
};
// Patch pushState to trigger an `navigate` event on the navigation
// object when the URL changes.
const pushState = window.history.pushState;
window.history.pushState = function () {
pushState.apply(window.history, arguments);
window.navigation.dispatchEvent(create_event(arguments));
};
// Same with replaceState
const replaceState = window.history.replaceState;
window.history.replaceState = function () {
replaceState.apply(window.history, arguments);
window.navigation.dispatchEvent(create_event(arguments));
};
}
})();