mirror of
https://github.com/yldio/copilot.git
synced 2024-11-15 07:40:07 +02:00
70 lines
1.2 KiB
JavaScript
70 lines
1.2 KiB
JavaScript
const React = require('react');
|
|
const ReactRedux = require('react-redux');
|
|
const ReactRouter = require('react-router');
|
|
|
|
const actions = require('@state/actions');
|
|
const Home = require('@containers/home');
|
|
const NotFound = require('@containers/not-found');
|
|
|
|
const {
|
|
updateRouter
|
|
} = actions;
|
|
|
|
const {
|
|
connect
|
|
} = ReactRedux;
|
|
|
|
const {
|
|
Miss,
|
|
Match
|
|
} = ReactRouter;
|
|
|
|
const App = connect()(React.createClass({
|
|
propTypes: {
|
|
children: React.PropTypes.node,
|
|
dispatch: React.PropTypes.func,
|
|
router: React.PropTypes.object
|
|
},
|
|
componentWillMount: function() {
|
|
const {
|
|
router,
|
|
dispatch
|
|
} = this.props;
|
|
|
|
// ugly hack needed because of a limitation of react-router api
|
|
// that doens't pass it's instance to matched routes
|
|
// wait for react-router-redux@5
|
|
dispatch(updateRouter(router));
|
|
},
|
|
render: function() {
|
|
const {
|
|
children
|
|
} = this.props;
|
|
|
|
if (!Array.isArray(children)) {
|
|
return children;
|
|
}
|
|
|
|
return (
|
|
<div>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
}));
|
|
|
|
module.exports = (props) => {
|
|
return (
|
|
<App {...props}>
|
|
<Match
|
|
component={Home}
|
|
exactly
|
|
pattern='/'
|
|
/>
|
|
<Miss
|
|
component={NotFound}
|
|
/>
|
|
</App>
|
|
);
|
|
};
|