2017-12-31 06:26:50 -08:00
|
|
|
import * as registerPushNotifications from 'flavours/glitch/actions/push_notifications';
|
2017-12-30 09:45:01 -08:00
|
|
|
import { default as Mastodon, store } from 'flavours/glitch/containers/mastodon';
|
2017-07-17 15:19:02 -07:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
2017-07-14 02:08:56 -07:00
|
|
|
import ready from './ready';
|
2017-05-25 05:09:55 -07:00
|
|
|
|
2017-07-14 02:08:56 -07:00
|
|
|
const perf = require('./performance');
|
2017-05-11 02:26:06 -07:00
|
|
|
|
|
|
|
function main() {
|
2017-05-25 05:09:55 -07:00
|
|
|
perf.start('main()');
|
2017-05-11 02:26:06 -07:00
|
|
|
|
2017-06-29 20:37:41 -07:00
|
|
|
if (window.history && history.replaceState) {
|
|
|
|
const { pathname, search, hash } = window.location;
|
|
|
|
const path = pathname + search + hash;
|
2020-02-21 16:27:34 -08:00
|
|
|
if (!(/^\/web($|\/)/).test(path)) {
|
2017-06-29 20:37:41 -07:00
|
|
|
history.replaceState(null, document.title, `/web${path}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-14 02:08:56 -07:00
|
|
|
ready(() => {
|
2017-05-11 02:26:06 -07:00
|
|
|
const mountNode = document.getElementById('mastodon');
|
|
|
|
const props = JSON.parse(mountNode.getAttribute('data-props'));
|
|
|
|
|
|
|
|
ReactDOM.render(<Mastodon {...props} />, mountNode);
|
2017-07-13 13:15:32 -07:00
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
|
|
// avoid offline in dev mode because it's harder to debug
|
2017-10-16 00:33:50 -07:00
|
|
|
require('offline-plugin/runtime').install();
|
2017-12-30 09:45:01 -08:00
|
|
|
store.dispatch(registerPushNotifications.register());
|
2017-07-13 13:15:32 -07:00
|
|
|
}
|
2017-05-25 05:09:55 -07:00
|
|
|
perf.stop('main()');
|
2017-05-11 02:26:06 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-20 08:31:47 -07:00
|
|
|
export default main;
|