Skip to content
Snippets Groups Projects
Commit 9be70ca2 authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Move error boundary out beyond the project loader

parent daf9af11
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ import VM from 'scratch-vm';
import {connect} from 'react-redux';
import ReactModal from 'react-modal';
import ErrorBoundary from './error-boundary.jsx';
import ErrorBoundaryHOC from '../lib/error-boundary-hoc.jsx';
import {openExtensionLibrary} from '../reducers/modals';
import {
activateTab,
......@@ -75,15 +75,13 @@ class GUI extends React.Component {
...componentProps
} = this.props;
return (
<ErrorBoundary action="Top Level App">
<GUIComponent
loading={fetchingProject || this.state.loading || loadingStateVisible}
vm={vm}
{...componentProps}
>
{children}
</GUIComponent>
</ErrorBoundary>
<GUIComponent
loading={fetchingProject || this.state.loading || loadingStateVisible}
vm={vm}
{...componentProps}
>
{children}
</GUIComponent>
);
}
}
......@@ -129,7 +127,9 @@ const ConnectedGUI = connect(
mapDispatchToProps,
)(GUI);
const WrappedGui = ProjectLoaderHOC(vmListenerHOC(ConnectedGUI));
const WrappedGui = ErrorBoundaryHOC('Top Level App')(
ProjectLoaderHOC(vmListenerHOC(ConnectedGUI))
);
WrappedGui.setAppElement = ReactModal.setAppElement;
export default WrappedGui;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment