mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-20 03:02:51 +03:00
36 lines
948 B
JavaScript
36 lines
948 B
JavaScript
import { shouldPolyfill } from '@formatjs/intl-segmenter/should-polyfill';
|
|
import { Suspense } from 'preact/compat';
|
|
import { useEffect, useState } from 'preact/hooks';
|
|
|
|
import Loader from './loader';
|
|
|
|
const supportsIntlSegmenter = !shouldPolyfill();
|
|
|
|
// Preload IntlSegmenter
|
|
setTimeout(() => {
|
|
queueMicrotask(() => {
|
|
if (!supportsIntlSegmenter) {
|
|
import('@formatjs/intl-segmenter/polyfill-force').catch(() => {});
|
|
}
|
|
});
|
|
}, 1000);
|
|
|
|
export default function IntlSegmenterSuspense({ children }) {
|
|
if (supportsIntlSegmenter) {
|
|
return <Suspense fallback={<Loader />}>{children}</Suspense>;
|
|
}
|
|
|
|
const [polyfillLoaded, setPolyfillLoaded] = useState(false);
|
|
useEffect(() => {
|
|
(async () => {
|
|
await import('@formatjs/intl-segmenter/polyfill-force');
|
|
setPolyfillLoaded(true);
|
|
})();
|
|
}, []);
|
|
|
|
return polyfillLoaded ? (
|
|
<Suspense fallback={<Loader />}>{children}</Suspense>
|
|
) : (
|
|
<Loader />
|
|
);
|
|
}
|