You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.9 KiB
58 lines
1.9 KiB
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import { Router, Route, IndexRoute, hashHistory } from 'react-router';
|
|
import antd from '../../';
|
|
import * as utils from './utils';
|
|
import '../common/lib';
|
|
import App from '../component/App';
|
|
import Home from '../component/Home';
|
|
import practice from '../../_site/data/practice';
|
|
import pattern from '../../_site/data/pattern';
|
|
import reactComponents from '../../_site/data/react-components';
|
|
import spec from '../../_site/data/spec';
|
|
import resource from '../../_site/data/resource';
|
|
|
|
// TODO: pack dependencies with atool build
|
|
// Expose React, ReactDOM
|
|
window.react = React;
|
|
window['react-dom'] = ReactDOM;
|
|
window.antd = antd;
|
|
|
|
const ReactComponents = utils.generateContainer('components', reactComponents);
|
|
const reactComponentsChildren = utils.generateChildren(reactComponents);
|
|
|
|
const Practice = utils.generateContainer('practice', practice);
|
|
const practiceChildren = utils.generateChildren(practice);
|
|
|
|
const Pattern = utils.generateContainer('pattern', pattern);
|
|
const patternChildren = utils.generateChildren(pattern);
|
|
|
|
const Spec = utils.generateContainer('spec', spec);
|
|
const specChildren = utils.generateChildren(spec);
|
|
|
|
const Resource = utils.generateContainer('resource', resource);
|
|
const resourceChildren = utils.generateChildren(resource);
|
|
|
|
ReactDOM.render(
|
|
<Router history={hashHistory}>
|
|
<Route path="/" component={App}>
|
|
<IndexRoute component={Home} />
|
|
<Route path="components" component={ReactComponents}>
|
|
{ reactComponentsChildren }
|
|
</Route>
|
|
<Route path="practice" component={Practice}>
|
|
{ practiceChildren }
|
|
</Route>
|
|
<Route path="pattern" component={Pattern}>
|
|
{ patternChildren }
|
|
</Route>
|
|
<Route path="spec" component={Spec}>
|
|
{ specChildren }
|
|
</Route>
|
|
<Route path="resource" component={Resource}>
|
|
{ resourceChildren }
|
|
</Route>
|
|
</Route>
|
|
</Router>
|
|
, document.getElementById('react-content')
|
|
);
|
|
|