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