2017-07-17 22:19:02 +00:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
2022-08-25 18:10:01 +00:00
|
|
|
import { setupBrowserNotifications } from 'mastodon/actions/notifications';
|
|
|
|
import Mastodon, { store } from 'mastodon/containers/mastodon';
|
|
|
|
import ready from 'mastodon/ready';
|
2017-05-25 12:09:55 +00:00
|
|
|
|
2022-10-03 16:15:47 +00:00
|
|
|
const perf = require('mastodon/performance');
|
2017-05-11 09:26:06 +00:00
|
|
|
|
2022-10-03 16:15:47 +00:00
|
|
|
/**
|
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
2017-05-11 09:26:06 +00:00
|
|
|
function main() {
|
2017-05-25 12:09:55 +00:00
|
|
|
perf.start('main()');
|
2017-05-11 09:26:06 +00:00
|
|
|
|
2022-10-03 16:15:47 +00:00
|
|
|
return ready(async () => {
|
2017-05-11 09:26:06 +00:00
|
|
|
const mountNode = document.getElementById('mastodon');
|
|
|
|
const props = JSON.parse(mountNode.getAttribute('data-props'));
|
|
|
|
|
|
|
|
ReactDOM.render(<Mastodon {...props} />, mountNode);
|
2020-10-12 22:37:21 +00:00
|
|
|
store.dispatch(setupBrowserNotifications());
|
2022-08-25 18:10:01 +00:00
|
|
|
|
|
|
|
if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
|
2022-10-03 16:15:47 +00:00
|
|
|
const [{ Workbox }, { me }] = await Promise.all([
|
|
|
|
import('workbox-window'),
|
|
|
|
import('mastodon/initial_state'),
|
|
|
|
]);
|
|
|
|
|
|
|
|
const wb = new Workbox('/sw.js');
|
|
|
|
|
|
|
|
try {
|
|
|
|
await wb.register();
|
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (me) {
|
|
|
|
const registerPushNotifications = await import('mastodon/actions/push_notifications');
|
|
|
|
|
|
|
|
store.dispatch(registerPushNotifications.register());
|
|
|
|
}
|
2017-07-13 20:15:32 +00:00
|
|
|
}
|
2022-10-03 16:15:47 +00:00
|
|
|
|
2017-05-25 12:09:55 +00:00
|
|
|
perf.stop('main()');
|
2017-05-11 09:26:06 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-20 15:31:47 +00:00
|
|
|
export default main;
|