2023-05-22 23:48:01 +10:00
|
|
|
import { createRoot } from 'react-dom/client';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
2022-08-26 04:10:01 +10:00
|
|
|
import { setupBrowserNotifications } from 'mastodon/actions/notifications';
|
2023-05-03 18:29:45 +10:00
|
|
|
import Mastodon from 'mastodon/containers/mastodon';
|
2022-11-11 11:33:59 +11:00
|
|
|
import { me } from 'mastodon/initial_state';
|
2023-05-09 11:08:47 +10:00
|
|
|
import * as perf from 'mastodon/performance';
|
2023-05-24 01:15:17 +10:00
|
|
|
import ready from 'mastodon/ready';
|
|
|
|
import { store } from 'mastodon/store';
|
2017-05-11 19:26:06 +10:00
|
|
|
|
2022-10-04 03:15:47 +11:00
|
|
|
/**
|
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
2017-05-11 19:26:06 +10:00
|
|
|
function main() {
|
2017-05-25 22:09:55 +10:00
|
|
|
perf.start('main()');
|
2017-05-11 19:26:06 +10:00
|
|
|
|
2022-10-04 03:15:47 +11:00
|
|
|
return ready(async () => {
|
2017-05-11 19:26:06 +10:00
|
|
|
const mountNode = document.getElementById('mastodon');
|
|
|
|
const props = JSON.parse(mountNode.getAttribute('data-props'));
|
|
|
|
|
2023-05-22 23:48:01 +10:00
|
|
|
const root = createRoot(mountNode);
|
|
|
|
root.render(<Mastodon {...props} />);
|
2020-10-13 09:37:21 +11:00
|
|
|
store.dispatch(setupBrowserNotifications());
|
2022-08-26 04:10:01 +10:00
|
|
|
|
2022-11-11 11:33:59 +11:00
|
|
|
if (process.env.NODE_ENV === 'production' && me && 'serviceWorker' in navigator) {
|
|
|
|
const { Workbox } = await import('workbox-window');
|
|
|
|
const wb = new Workbox('/sw.js');
|
|
|
|
/** @type {ServiceWorkerRegistration} */
|
|
|
|
let registration;
|
2022-10-04 03:15:47 +11:00
|
|
|
|
2022-11-11 11:33:59 +11:00
|
|
|
try {
|
|
|
|
registration = await wb.register();
|
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
|
|
|
}
|
2022-10-04 03:15:47 +11:00
|
|
|
|
2023-09-13 02:27:01 +10:00
|
|
|
if (registration && 'Notification' in window && Notification.permission === 'granted') {
|
2022-10-04 03:15:47 +11:00
|
|
|
const registerPushNotifications = await import('mastodon/actions/push_notifications');
|
|
|
|
|
|
|
|
store.dispatch(registerPushNotifications.register());
|
|
|
|
}
|
2017-07-14 06:15:32 +10:00
|
|
|
}
|
2022-10-04 03:15:47 +11:00
|
|
|
|
2017-05-25 22:09:55 +10:00
|
|
|
perf.stop('main()');
|
2017-05-11 19:26:06 +10:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-21 01:31:47 +10:00
|
|
|
export default main;
|