CompileErrorContainer.js 1.06 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
/**
 * Copyright (c) 2015-present, Facebook, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */

/* @flow */
import React, { PureComponent } from 'react';
12
import ErrorOverlay from '../components/ErrorOverlay';
13
14
15
16
17
import Footer from '../components/Footer';
import Header from '../components/Header';
import CodeBlock from '../components/CodeBlock';
import generateAnsiHTML from '../utils/generateAnsiHTML';

18
19
20
21
22
type Props = {|
  error: string,
|};

class CompileErrorContainer extends PureComponent<Props, void> {
23
24
25
  render() {
    const { error } = this.props;
    return (
26
      <ErrorOverlay>
27
28
29
        <Header headerText="Failed to compile" />
        <CodeBlock main={true} codeHTML={generateAnsiHTML(error)} />
        <Footer line1="This error occurred during the build time and cannot be dismissed." />
30
      </ErrorOverlay>
31
32
33
34
35
    );
  }
}

export default CompileErrorContainer;