2017-07-17 22:19:02 +00:00
|
|
|
import * as OfflinePluginRuntime from 'offline-plugin/runtime';
|
|
|
|
import * as WebPushSubscription from './web_push_subscription';
|
|
|
|
import Mastodon from 'mastodon/containers/mastodon';
|
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
2017-07-14 09:08:56 +00:00
|
|
|
import ready from './ready';
|
2017-05-25 12:09:55 +00:00
|
|
|
|
2017-07-14 09:08:56 +00:00
|
|
|
const perf = require('./performance');
|
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
|
|
|
|
2017-06-30 03:37:41 +00:00
|
|
|
if (window.history && history.replaceState) {
|
|
|
|
const { pathname, search, hash } = window.location;
|
|
|
|
const path = pathname + search + hash;
|
|
|
|
if (!(/^\/web[$/]/).test(path)) {
|
|
|
|
history.replaceState(null, document.title, `/web${path}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-14 09:08:56 +00:00
|
|
|
ready(() => {
|
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);
|
2017-07-13 20:15:32 +00:00
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
|
|
// avoid offline in dev mode because it's harder to debug
|
|
|
|
OfflinePluginRuntime.install();
|
|
|
|
WebPushSubscription.register();
|
|
|
|
}
|
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;
|