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