/* 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 { 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(
, node.parentElement!, node ); } else { render( , node.parentElement!, node ); } }