2017-07-17 23:19:02 +01:00
|
|
|
import * as WebPushSubscription from './web_push_subscription';
|
2017-10-16 10:12:09 +01:00
|
|
|
import Mastodon from './containers/mastodon';
|
2017-07-17 23:19:02 +01:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
2017-07-14 10:08:56 +01:00
|
|
|
import ready from './ready';
|
2017-05-25 13:09:55 +01:00
|
|
|
|
2017-07-14 10:08:56 +01:00
|
|
|
const perf = require('./performance');
|
2017-05-11 10:26:06 +01:00
|
|
|
|
|
|
|
function main() {
|
2017-05-25 13:09:55 +01:00
|
|
|
perf.start('main()');
|
2017-05-11 10:26:06 +01:00
|
|
|
|
2017-06-30 04:37:41 +01: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 10:08:56 +01:00
|
|
|
ready(() => {
|
2017-05-11 10:26:06 +01:00
|
|
|
const mountNode = document.getElementById('mastodon');
|
|
|
|
const props = JSON.parse(mountNode.getAttribute('data-props'));
|
|
|
|
|
|
|
|
ReactDOM.render(<Mastodon {...props} />, mountNode);
|
2017-07-13 21:15:32 +01:00
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
|
|
// avoid offline in dev mode because it's harder to debug
|
2017-10-16 08:33:50 +01:00
|
|
|
require('offline-plugin/runtime').install();
|
2017-07-13 21:15:32 +01:00
|
|
|
WebPushSubscription.register();
|
|
|
|
}
|
2017-05-25 13:09:55 +01:00
|
|
|
perf.stop('main()');
|
2017-05-11 10:26:06 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-20 16:31:47 +01:00
|
|
|
export default main;
|