2018-02-07 18:06:07 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React from 'react';
|
2016-05-18 17:37:59 +00:00
|
|
|
import { connect } from 'react-redux';
|
2016-06-22 22:36:04 +00:00
|
|
|
import DevTools from './components/DevTools';
|
2016-12-15 23:43:58 +00:00
|
|
|
import { setPreviousPath } from '../IDE/actions/ide';
|
2016-05-18 17:37:59 +00:00
|
|
|
|
2018-08-24 21:41:23 +00:00
|
|
|
const __process = (typeof global !== 'undefined' ? global : window).process;
|
|
|
|
|
2016-05-18 17:37:59 +00:00
|
|
|
class App extends React.Component {
|
|
|
|
constructor(props, context) {
|
|
|
|
super(props, context);
|
2016-06-23 22:29:55 +00:00
|
|
|
this.state = { isMounted: false };
|
2016-06-22 22:36:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2016-06-27 21:22:54 +00:00
|
|
|
this.setState({ isMounted: true }); // eslint-disable-line react/no-did-mount-set-state
|
2019-03-28 20:53:22 +00:00
|
|
|
document.body.className = 'light';
|
2016-05-18 17:37:59 +00:00
|
|
|
}
|
|
|
|
|
2016-12-15 23:43:58 +00:00
|
|
|
componentWillReceiveProps(nextProps) {
|
|
|
|
if (nextProps.location !== this.props.location) {
|
|
|
|
this.props.setPreviousPath(this.props.location.pathname);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-18 17:37:59 +00:00
|
|
|
render() {
|
|
|
|
return (
|
2016-09-14 16:46:54 +00:00
|
|
|
<div className="app">
|
2018-08-24 21:41:23 +00:00
|
|
|
{this.state.isMounted && !window.devToolsExtension && __process.env.NODE_ENV === 'development' && <DevTools />}
|
2016-06-23 22:29:55 +00:00
|
|
|
{this.props.children}
|
2016-05-18 17:37:59 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-27 20:14:26 +00:00
|
|
|
App.propTypes = {
|
2017-02-22 19:29:35 +00:00
|
|
|
children: PropTypes.element,
|
2016-12-15 23:43:58 +00:00
|
|
|
location: PropTypes.shape({
|
|
|
|
pathname: PropTypes.string
|
2017-02-22 19:29:35 +00:00
|
|
|
}).isRequired,
|
2016-12-15 23:43:58 +00:00
|
|
|
setPreviousPath: PropTypes.func.isRequired,
|
2016-06-27 20:14:26 +00:00
|
|
|
};
|
|
|
|
|
2017-02-22 19:29:35 +00:00
|
|
|
App.defaultProps = {
|
|
|
|
children: null
|
|
|
|
};
|
|
|
|
|
2016-12-15 23:43:58 +00:00
|
|
|
export default connect(() => ({}), { setPreviousPath })(App);
|