2017-07-17 18:19:02 -04:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
2022-08-25 14:10:01 -04:00
|
|
|
import * as registerPushNotifications from 'mastodon/actions/push_notifications';
|
|
|
|
import { setupBrowserNotifications } from 'mastodon/actions/notifications';
|
|
|
|
import Mastodon, { store } from 'mastodon/containers/mastodon';
|
|
|
|
import ready from 'mastodon/ready';
|
2017-05-25 08:09:55 -04:00
|
|
|
|
2017-07-14 05:08:56 -04:00
|
|
|
const perf = require('./performance');
|
2017-05-11 05:26:06 -04:00
|
|
|
|
|
|
|
function main() {
|
2017-05-25 08:09:55 -04:00
|
|
|
perf.start('main()');
|
2017-05-11 05:26:06 -04:00
|
|
|
|
2017-06-29 23:37:41 -04:00
|
|
|
if (window.history && history.replaceState) {
|
|
|
|
const { pathname, search, hash } = window.location;
|
|
|
|
const path = pathname + search + hash;
|
2020-02-21 19:27:34 -05:00
|
|
|
if (!(/^\/web($|\/)/).test(path)) {
|
2017-06-29 23:37:41 -04:00
|
|
|
history.replaceState(null, document.title, `/web${path}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-14 05:08:56 -04:00
|
|
|
ready(() => {
|
2017-05-11 05:26:06 -04:00
|
|
|
const mountNode = document.getElementById('mastodon');
|
|
|
|
const props = JSON.parse(mountNode.getAttribute('data-props'));
|
|
|
|
|
|
|
|
ReactDOM.render(<Mastodon {...props} />, mountNode);
|
2020-10-12 18:37:21 -04:00
|
|
|
store.dispatch(setupBrowserNotifications());
|
2022-08-25 14:10:01 -04:00
|
|
|
|
|
|
|
if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
|
|
|
|
import('workbox-window')
|
|
|
|
.then(({ Workbox }) => {
|
|
|
|
const wb = new Workbox('/sw.js');
|
|
|
|
|
|
|
|
return wb.register();
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
store.dispatch(registerPushNotifications.register());
|
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
console.error(err);
|
|
|
|
});
|
2017-07-13 16:15:32 -04:00
|
|
|
}
|
2017-05-25 08:09:55 -04:00
|
|
|
perf.stop('main()');
|
2017-05-11 05:26:06 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-20 11:31:47 -04:00
|
|
|
export default main;
|