joyent-portal/frontend/src/containers/app.js

59 lines
1.1 KiB
JavaScript
Raw Normal View History

2016-10-20 04:14:26 +03:00
const React = require('react');
const ReactRedux = require('react-redux');
const ReactRouter = require('react-router');
const actions = require('../state/actions');
const Home = require('./home/');
const NotFound = require('./not-found/');
2016-10-20 04:14:26 +03:00
const {
updateRouter
} = actions;
const {
connect
} = ReactRedux;
const {
Miss,
Match
} = ReactRouter;
const App = connect()(React.createClass({
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
2016-10-20 22:42:39 +03:00
// wait for react-router-redux@5
2016-10-20 04:14:26 +03:00
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 exactly pattern='/' component={Home} />
<Miss component={NotFound}/>
</App>
);
};