70 lines
1.6 KiB
TypeScript
70 lines
1.6 KiB
TypeScript
/* eslint-disable no-console */
|
|
/** @jsx h */
|
|
import loadPolyfills from '@app/common/polyfills';
|
|
import { h, render } from 'preact';
|
|
import 'preact/debug';
|
|
|
|
import { Provider } from 'preact-redux';
|
|
import { ConnectedRoot } from '@app/components/root';
|
|
import { UserInfo } from '@app/components/user-info';
|
|
import reduxStore from '@app/store';
|
|
|
|
// importing css
|
|
import '@app/components/list-comments';
|
|
|
|
import { NODE_ID } from '@app/common/constants';
|
|
import { StaticStore } from '@app/common/static_store';
|
|
import api from '@app/common/api';
|
|
|
|
if (document.readyState === 'loading') {
|
|
document.addEventListener('DOMContentLoaded', init);
|
|
} else {
|
|
init();
|
|
}
|
|
|
|
async function init(): Promise<void> {
|
|
await loadPolyfills();
|
|
|
|
const node = document.getElementById(NODE_ID);
|
|
|
|
if (!node) {
|
|
console.error("Remark42: Can't find root node.");
|
|
return;
|
|
}
|
|
|
|
const params = window.location.search
|
|
.replace(/^\?/, '')
|
|
.split('&')
|
|
.reduce<{ [key: string]: string }>((memo, value) => {
|
|
const vals = value.split('=');
|
|
if (vals.length === 2) {
|
|
memo[vals[0]] = vals[1];
|
|
}
|
|
return memo;
|
|
}, {});
|
|
|
|
StaticStore.config = await api.getConfig();
|
|
|
|
if (params.page === 'user-info') {
|
|
render(
|
|
<div id={NODE_ID}>
|
|
<div className="root root_user-info">
|
|
<Provider store={reduxStore}>
|
|
<UserInfo />
|
|
</Provider>
|
|
</div>
|
|
</div>,
|
|
node.parentElement!,
|
|
node
|
|
);
|
|
} else {
|
|
render(
|
|
<Provider store={reduxStore}>
|
|
<ConnectedRoot getPreview={api.getPreview} />
|
|
</Provider>,
|
|
node.parentElement!,
|
|
node
|
|
);
|
|
}
|
|
}
|