Skip to content

Commit

Permalink
Rename Overlay to ErrorOvelay (#3051)
Browse files Browse the repository at this point in the history
  • Loading branch information
tharakawj authored and swengorschewski committed Oct 12, 2017
1 parent 28dde6d commit 12cb344
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Expand Up @@ -31,7 +31,7 @@ const overlayStyle = {
color: black,
};

class Overlay extends Component {
class ErrorOverlay extends Component {
iframeWindow: window = null;

getIframeWindow = (element: HTMLDivElement) => {
Expand Down Expand Up @@ -71,4 +71,4 @@ class Overlay extends Component {
}
}

export default Overlay;
export default ErrorOverlay;
Expand Up @@ -9,7 +9,7 @@

/* @flow */
import React, { PureComponent } from 'react';
import Overlay from '../components/Overlay';
import ErrorOverlay from '../components/ErrorOverlay';
import Footer from '../components/Footer';
import Header from '../components/Header';
import CodeBlock from '../components/CodeBlock';
Expand All @@ -19,11 +19,11 @@ class CompileErrorContainer extends PureComponent {
render() {
const { error } = this.props;
return (
<Overlay>
<ErrorOverlay>
<Header headerText="Failed to compile" />
<CodeBlock main={true} codeHTML={generateAnsiHTML(error)} />
<Footer line1="This error occurred during the build time and cannot be dismissed." />
</Overlay>
</ErrorOverlay>
);
}
}
Expand Down
Expand Up @@ -9,7 +9,7 @@

/* @flow */
import React, { PureComponent } from 'react';
import Overlay from '../components/Overlay';
import ErrorOverlay from '../components/ErrorOverlay';
import CloseButton from '../components/CloseButton';
import NavigationBar from '../components/NavigationBar';
import RuntimeError from './RuntimeError';
Expand Down Expand Up @@ -52,7 +52,7 @@ class RuntimeErrorContainer extends PureComponent {
const { errorRecords, close } = this.props;
const totalErrors = errorRecords.length;
return (
<Overlay shortcutHandler={this.shortcutHandler}>
<ErrorOverlay shortcutHandler={this.shortcutHandler}>
<CloseButton close={close} />
{totalErrors > 1 &&
<NavigationBar
Expand All @@ -69,7 +69,7 @@ class RuntimeErrorContainer extends PureComponent {
line1="This screen is visible only in development. It will not appear if the app crashes in production."
line2="Open your browser’s developer console to further inspect this error."
/>
</Overlay>
</ErrorOverlay>
);
}
}
Expand Down

0 comments on commit 12cb344

Please sign in to comment.