2017-05-30 15:11:15 +02: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-05-31 23:43:39 +02:00
import { loadIntlPolyfills } from './intl' ;
2017-05-30 15:11:15 +02:00
function importBasePolyfills() {
return import ( /* webpackChunkName: "base_polyfills" */ './base_polyfills' ) ;
}
function importExtraPolyfills() {
return import ( /* webpackChunkName: "extra_polyfills" */ './extra_polyfills' ) ;
}
2023-05-09 14:55:35 +02:00
export function loadPolyfills() {
2017-05-30 15:11:15 +02:00
const needsBasePolyfills = ! (
2023-05-09 14:55:35 +02:00
'toBlob' in HTMLCanvasElement . prototype &&
'assign' in Object &&
'values' in Object &&
'Symbol' in window &&
'finally' in Promise . prototype
2017-05-30 15:11:15 +02:00
) ;
// Latest version of Firefox and Safari do not have IntersectionObserver.
2023-01-05 13:32:02 +01:00
// Edge does not have requestIdleCallback.
2017-05-30 15:11:15 +02:00
// This avoids shipping them all the polyfills.
2023-07-13 11:49:16 +02: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 15:11:15 +02:00
const needsExtraPolyfills = ! (
2022-10-14 03:16:37 +02:00
window . AbortController &&
2017-05-30 15:11:15 +02:00
window . IntersectionObserver &&
2017-07-31 19:40:20 +02:00
window . IntersectionObserverEntry &&
'isIntersecting' in IntersectionObserverEntry . prototype &&
2023-01-05 13:32:02 +01:00
window . requestIdleCallback
2017-05-30 15:11:15 +02:00
) ;
2023-07-13 11:49:16 +02:00
/* eslint-enable @typescript-eslint/no-unnecessary-condition */
2017-05-30 15:11:15 +02:00
return Promise . all ( [
2023-05-31 23:43:39 +02:00
loadIntlPolyfills ( ) ,
2017-05-30 15:11:15 +02:00
needsBasePolyfills && importBasePolyfills ( ) ,
needsExtraPolyfills && importExtraPolyfills ( ) ,
] ) ;
}