2016-06-01 10:29:15 +05:30
|
|
|
import 'polyfills';
|
2016-01-03 01:54:07 +05:30
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
|
|
|
|
import { Provider as ReduxProvider } from 'react-redux';
|
|
|
|
import { Router, browserHistory } from 'react-router';
|
|
|
|
|
2016-05-10 10:47:40 +05:30
|
|
|
import { factory as userFactory } from 'components/user/factory';
|
2016-05-20 01:11:43 +05:30
|
|
|
import { IntlProvider } from 'components/i18n';
|
2016-02-13 20:58:47 +05:30
|
|
|
import routesFactory from 'routes';
|
2016-06-18 20:30:45 +05:30
|
|
|
import storeFactory from 'storeFactory';
|
2016-01-03 01:54:07 +05:30
|
|
|
|
2016-06-18 20:30:45 +05:30
|
|
|
const store = storeFactory();
|
2016-01-03 01:54:07 +05:30
|
|
|
|
2016-05-10 10:47:40 +05:30
|
|
|
userFactory(store)
|
2016-05-20 01:11:43 +05:30
|
|
|
.then(() => {
|
2016-06-03 00:17:50 +05:30
|
|
|
// allow :active styles in mobile Safary
|
2016-06-18 20:30:45 +05:30
|
|
|
document.addEventListener('touchstart', () => {}, true);
|
2016-06-03 00:17:50 +05:30
|
|
|
|
2016-05-10 10:47:40 +05:30
|
|
|
ReactDOM.render(
|
2016-05-20 01:11:43 +05:30
|
|
|
<ReduxProvider store={store}>
|
|
|
|
<IntlProvider>
|
2016-06-02 23:16:49 +05:30
|
|
|
<Router history={browserHistory} onUpdate={() => {
|
|
|
|
restoreScroll();
|
|
|
|
stopLoading();
|
|
|
|
}}>
|
2016-05-10 10:47:40 +05:30
|
|
|
{routesFactory(store)}
|
|
|
|
</Router>
|
2016-05-20 01:11:43 +05:30
|
|
|
</IntlProvider>
|
|
|
|
</ReduxProvider>,
|
2016-05-10 10:47:40 +05:30
|
|
|
document.getElementById('app')
|
|
|
|
);
|
|
|
|
});
|
2016-05-09 00:58:51 +05:30
|
|
|
|
2016-06-04 02:21:45 +05:30
|
|
|
import scrollTo from 'components/ui/scrollTo';
|
2016-06-04 01:50:56 +05:30
|
|
|
const SCROLL_ANCHOR_OFFSET = 80; // 50 + 30 (header height + some spacing)
|
2016-05-31 10:20:22 +05:30
|
|
|
/**
|
|
|
|
* Scrolls to page's top or #anchor link, if any
|
|
|
|
*/
|
|
|
|
function restoreScroll() {
|
|
|
|
const {hash} = location;
|
|
|
|
|
|
|
|
// Push onto callback queue so it runs after the DOM is updated
|
|
|
|
setTimeout(() => {
|
|
|
|
const id = hash.replace('#', '');
|
|
|
|
const el = id ? document.getElementById(id) : null;
|
2016-06-04 13:09:24 +05:30
|
|
|
const viewPort = document.getElementById('view-port');
|
|
|
|
|
|
|
|
if (!viewPort) {
|
2016-07-29 23:25:19 +05:30
|
|
|
console.log('Can not find viewPort element');
|
|
|
|
return;
|
2016-06-04 13:09:24 +05:30
|
|
|
}
|
2016-06-04 01:50:56 +05:30
|
|
|
|
|
|
|
let y = 0;
|
2016-05-31 10:20:22 +05:30
|
|
|
if (el) {
|
2016-06-04 13:09:24 +05:30
|
|
|
const {scrollTop} = viewPort;
|
2016-06-04 01:50:56 +05:30
|
|
|
const {top} = el.getBoundingClientRect();
|
|
|
|
|
|
|
|
y = scrollTop + top - SCROLL_ANCHOR_OFFSET;
|
2016-05-31 10:20:22 +05:30
|
|
|
}
|
2016-06-04 01:50:56 +05:30
|
|
|
|
2016-06-04 13:09:24 +05:30
|
|
|
scrollTo(y, viewPort);
|
2016-05-31 10:20:22 +05:30
|
|
|
}, 100);
|
|
|
|
}
|
2016-05-09 00:58:51 +05:30
|
|
|
|
2016-06-02 23:16:49 +05:30
|
|
|
function stopLoading() {
|
|
|
|
document.getElementById('loader').classList.remove('is-active');
|
|
|
|
}
|
|
|
|
|
2016-06-04 14:47:06 +05:30
|
|
|
/* global process: false */
|
2016-04-12 09:19:58 +05:30
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
|
|
// some shortcuts for testing on localhost
|
2016-07-28 01:15:50 +05:30
|
|
|
window.testOAuth = () => location.href = '/oauth2/v1?client_id=ely&redirect_uri=http%3A%2F%2Fely.by&response_type=code&scope=minecraft_server_session';
|
|
|
|
window.testOAuthStatic = () => location.href = '/oauth2/v1?client_id=ely&redirect_uri=static_page_with_code&response_type=code&scope=minecraft_server_session';
|
|
|
|
window.testOAuthStaticCode = () => location.href = '/oauth2/v1?client_id=ely&redirect_uri=static_page&response_type=code&scope=minecraft_server_session';
|
2016-04-12 09:19:58 +05:30
|
|
|
}
|