about summary refs log tree commit diff
path: root/app/javascript/packs/application.js
blob: 01c28e76851152a620310311a15e60c3db8ab1a7 (plain) (blame)
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
import main from '../mastodon/main';

const needsBasePolyfills = !(
  window.Intl &&
  Object.assign &&
  Number.isNaN &&
  window.Symbol &&
  Array.prototype.includes
);

const needsExtraPolyfills = !(
  window.IntersectionObserver &&
  window.requestIdleCallback
);

// Latest version of Firefox and Safari do not have IntersectionObserver.
// Edge does not have requestIdleCallback.
// This avoids shipping them all the polyfills.
if (needsBasePolyfills) {
  Promise.all([
    import('../mastodon/base_polyfills'),
    import('../mastodon/extra_polyfills'),
  ]).then(main).catch(e => {
    console.error(e); // eslint-disable-line no-console
  });
} else if (needsExtraPolyfills) {
  import('../mastodon/extra_polyfills').then(main).catch(e => {
    console.error(e); // eslint-disable-line no-console
  });
} else {
  main();
}