2017-12-31 09:26:50 -05:00
|
|
|
import * as registerPushNotifications from 'flavours/glitch/actions/push_notifications';
|
2017-12-30 12:45:01 -05:00
|
|
|
import { default as Mastodon, store } from 'flavours/glitch/containers/mastodon';
|
2017-07-17 18:19:02 -04:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
2017-07-14 05:08:56 -04:00
|
|
|
import ready from './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;
|
|
|
|
if (!(/^\/web[$/]/).test(path)) {
|
|
|
|
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);
|
2017-07-13 16:15:32 -04:00
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
|
|
// avoid offline in dev mode because it's harder to debug
|
2017-10-16 03:33:50 -04:00
|
|
|
require('offline-plugin/runtime').install();
|
2017-12-30 12:45:01 -05:00
|
|
|
store.dispatch(registerPushNotifications.register());
|
2017-07-13 16:15:32 -04:00
|
|
|
}
|
2017-05-25 08:09:55 -04:00
|
|
|
perf.stop('main()');
|
2017-07-07 02:27:52 -04:00
|
|
|
|
|
|
|
// remember the initial URL
|
|
|
|
if (window.history && typeof window._mastoInitialHistoryLen === 'undefined') {
|
|
|
|
window._mastoInitialHistoryLen = window.history.length;
|
|
|
|
}
|
2017-05-11 05:26:06 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-05-20 11:31:47 -04:00
|
|
|
export default main;
|