phanpy/src/main.jsx

78 lines
2 KiB
React
Raw Normal View History

2022-12-12 23:41:31 +08:00
import './index.css';
2023-04-10 21:41:42 +08:00
import './cloak-mode.css';
2024-06-14 08:34:50 +08:00
import './polyfills';
2024-08-13 15:26:23 +08:00
import { i18n } from '@lingui/core';
import { I18nProvider } from '@lingui/react';
// Polyfill needed for Firefox < 122
// https://bugzilla.mozilla.org/show_bug.cgi?id=1423593
// import '@formatjs/intl-segmenter/polyfill';
2022-12-12 23:41:31 +08:00
import { render } from 'preact';
import { HashRouter } from 'react-router-dom';
2022-12-10 17:14:48 +08:00
2022-12-12 23:41:31 +08:00
import { App } from './app';
2024-08-13 15:26:23 +08:00
import { initActivateLang } from './utils/lang';
initActivateLang();
2022-12-12 23:41:31 +08:00
if (import.meta.env.DEV) {
import('preact/debug');
}
2022-12-10 17:14:48 +08:00
render(
2024-08-13 15:26:23 +08:00
<I18nProvider i18n={i18n}>
<HashRouter>
<App />
</HashRouter>
</I18nProvider>,
document.getElementById('app'),
);
// Storage cleanup
setTimeout(() => {
try {
// Clean up iconify localStorage
Object.keys(localStorage).forEach((key) => {
if (key.startsWith('iconify')) {
localStorage.removeItem(key);
}
});
Object.keys(sessionStorage).forEach((key) => {
if (key.startsWith('iconify')) {
sessionStorage.removeItem(key);
}
});
// Clean up old settings key
localStorage.removeItem('settings:boostsCarousel');
} catch (e) {}
}, 5000);
2023-04-10 21:41:42 +08:00
// Service worker cache cleanup
if ('serviceWorker' in navigator && typeof caches !== 'undefined') {
2024-09-18 12:19:50 +08:00
const MAX_SW_CACHE_SIZE = 30;
const IGNORE_CACHE_KEYS = ['icons'];
const clearCaches = async () => {
if (!window.__IDLE__) return;
const keys = await caches.keys();
for (const key of keys) {
if (IGNORE_CACHE_KEYS.includes(key)) continue;
const cache = await caches.open(key);
const _keys = await cache.keys();
if (_keys.length > MAX_SW_CACHE_SIZE) {
console.warn('Cleaning cache', key, _keys.length);
const deleteKeys = _keys.slice(MAX_SW_CACHE_SIZE);
for (const deleteKey of deleteKeys) {
await cache.delete(deleteKey);
}
2024-09-18 12:19:50 +08:00
}
}
2024-09-18 12:19:50 +08:00
};
setTimeout(clearCaches, 10_000); // after 10 seconds
setInterval(clearCaches, 30 * 60 * 1000); // every 30 minutes
}
2023-04-10 21:41:42 +08:00
window.__CLOAK__ = () => {
document.body.classList.toggle('cloak');
};