gab-social/app/javascript/gabsocial/main.js

33 lines
1.0 KiB
JavaScript
Raw Normal View History

2019-07-02 08:10:25 +01:00
'use strict';
import * as registerPushNotifications from './actions/push_notifications';
import { default as GabSocial, store } from './containers/gabsocial';
import ReactDOM from 'react-dom';
import ready from './ready';
function main() {
2020-03-04 03:45:16 +00:00
// : todo :
2019-07-04 01:42:55 +01:00
// if (window.history && history.replaceState) {
// const { pathname, search, hash } = window.location;
// const path = pathname + search + hash;
// if (!(/^\/[$/]/).test(path)) {
// console.log('redirecting you to hell');
// history.replaceState(null, document.title, `${path}`);
// }
// }
2019-07-02 08:10:25 +01:00
ready(() => {
const mountNode = document.getElementById('gabsocial');
const props = JSON.parse(mountNode.getAttribute('data-props'));
ReactDOM.render(<GabSocial {...props} />, mountNode);
if (process.env.NODE_ENV === 'production') {
// avoid offline in dev mode because it's harder to debug
require('offline-plugin/runtime').install();
store.dispatch(registerPushNotifications.register());
}
});
}
export default main;