41 lines
1.3 KiB
JavaScript
41 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import { createHashHistory } from 'History';
|
|
import { Router, Route, useRouterHistory } from 'react-router';
|
|
import { syncHistoryWithStore, RouterStore } from 'mobx-react-router';
|
|
import { Provider } from 'mobx-react';
|
|
import ESearch from 'weaESearch' //umd
|
|
const routing = new RouterStore();
|
|
|
|
const allStore = {
|
|
routing,
|
|
...ESearch.store,
|
|
};
|
|
|
|
const signStore = {
|
|
routing,
|
|
store: { ...ESearch.store },
|
|
};
|
|
|
|
const browserHistory = useRouterHistory(createHashHistory)({
|
|
queryKey: '_key',
|
|
basename: '/',
|
|
});
|
|
|
|
const history = syncHistoryWithStore(browserHistory, allStore.routing);
|
|
|
|
const Home = props => props.children;
|
|
|
|
const Root = () => (
|
|
<Provider ecId={`${this && this.props && this.props.ecId || ''}_Provider@biss3l`} {...allStore}>
|
|
<Router ecId={`${this && this.props && this.props.ecId || ''}_Router@7qub25`} history={history}>
|
|
<Route ecId={`${this && this.props && this.props.ecId || ''}_Route@0qj01y`} name='main' breadcrumbName='入口' path='/main' component={Home}>
|
|
{ ESearch.Route }
|
|
</Route>
|
|
</Router>
|
|
</Provider>
|
|
);
|
|
|
|
ReactDOM.render(<Root ecId={`${this && this.props && this.props.ecId || ''}_Root@v6euul`} />, document.getElementById('container'));
|
|
|
|
module.exports = ESearch; |