2017-05-30 23:11:15 +10:00
// Convenience function to load polyfills and return a promise when it's done.
// If there are no polyfills, then this is just Promise.resolve() which means
// it will execute in the same tick of the event loop (i.e. near-instant).
2023-06-01 07:43:39 +10:00
import { loadIntlPolyfills } from './intl' ;
2017-05-30 23:11:15 +10:00
function importBasePolyfills() {
return import ( /* webpackChunkName: "base_polyfills" */ './base_polyfills' ) ;
}
function importExtraPolyfills() {
return import ( /* webpackChunkName: "extra_polyfills" */ './extra_polyfills' ) ;
}
2023-05-09 22:55:35 +10:00
export function loadPolyfills() {
2017-05-30 23:11:15 +10:00
const needsBasePolyfills = ! (
2023-05-09 22:55:35 +10:00
'toBlob' in HTMLCanvasElement . prototype &&
'assign' in Object &&
'values' in Object &&
'Symbol' in window &&
'finally' in Promise . prototype
2017-05-30 23:11:15 +10:00
) ;
// Latest version of Firefox and Safari do not have IntersectionObserver.
2023-01-05 23:32:02 +11:00
// Edge does not have requestIdleCallback.
2017-05-30 23:11:15 +10:00
// This avoids shipping them all the polyfills.
2023-07-13 19:49:16 +10:00
/* eslint-disable @typescript-eslint/no-unnecessary-condition -- those properties might not exist in old browsers, even if they are always here in types */
2017-05-30 23:11:15 +10:00
const needsExtraPolyfills = ! (
2022-10-14 12:16:37 +11:00
window . AbortController &&
2017-05-30 23:11:15 +10:00
window . IntersectionObserver &&
2017-08-01 03:40:20 +10:00
window . IntersectionObserverEntry &&
'isIntersecting' in IntersectionObserverEntry . prototype &&
2023-01-05 23:32:02 +11:00
window . requestIdleCallback
2017-05-30 23:11:15 +10:00
) ;
2023-07-13 19:49:16 +10:00
/* eslint-enable @typescript-eslint/no-unnecessary-condition */
2017-05-30 23:11:15 +10:00
return Promise . all ( [
2023-06-01 07:43:39 +10:00
loadIntlPolyfills ( ) ,
2017-05-30 23:11:15 +10:00
needsBasePolyfills && importBasePolyfills ( ) ,
needsExtraPolyfills && importExtraPolyfills ( ) ,
] ) ;
}