StackFrame.js 4.49 KB
Newer Older
1
2
3
/**
 * Copyright (c) 2015-present, Facebook, Inc.
 *
Sophie Alpert's avatar
Sophie Alpert committed
4
5
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
6
7
8
9
10
11
12
13
 */

/* @flow */
import React, { Component } from 'react';
import CodeBlock from './StackFrameCodeBlock';
import { getPrettyURL } from '../utils/getPrettyURL';
import { darkGray } from '../styles';

14
import type { StackFrame as StackFrameType } from '../utils/stack-frame';
15
import type { ErrorLocation } from '../utils/parseCompileError';
16

17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
const linkStyle = {
  fontSize: '0.9em',
  marginBottom: '0.9em',
};

const anchorStyle = {
  textDecoration: 'none',
  color: darkGray,
  cursor: 'pointer',
};

const codeAnchorStyle = {
  cursor: 'pointer',
};

const toggleStyle = {
  marginBottom: '1.5em',
  color: darkGray,
  cursor: 'pointer',
  border: 'none',
  display: 'block',
  width: '100%',
  textAlign: 'left',
  background: '#fff',
  fontFamily: 'Consolas, Menlo, monospace',
  fontSize: '1em',
  padding: '0px',
  lineHeight: '1.5',
};

47
48
49
50
51
type Props = {|
  frame: StackFrameType,
  contextSize: number,
  critical: boolean,
  showCode: boolean,
52
  editorHandler: (errorLoc: ErrorLocation) => void,
53
54
55
56
57
58
59
|};

type State = {|
  compiled: boolean,
|};

class StackFrame extends Component<Props, State> {
60
61
62
63
64
65
66
67
68
69
  state = {
    compiled: false,
  };

  toggleCompiled = () => {
    this.setState(state => ({
      compiled: !state.compiled,
    }));
  };

70
71
72
73
74
  getErrorLocation(): ErrorLocation | null {
    const {
      _originalFileName: fileName,
      _originalLineNumber: lineNumber,
    } = this.props.frame;
75
    // Unknown file
76
    if (!fileName) {
77
      return null;
78
79
    }
    // e.g. "/path-to-my-app/webpack/bootstrap eaddeb46b67d75e4dfc1"
80
    const isInternalWebpackBootstrapCode = fileName.trim().indexOf(' ') !== -1;
81
    if (isInternalWebpackBootstrapCode) {
82
      return null;
83
84
    }
    // Code is in a real file
85
    return { fileName, lineNumber: lineNumber || 1 };
86
87
  }

88
89
90
  editorHandler = () => {
    const errorLoc = this.getErrorLocation();
    if (!errorLoc) {
91
92
      return;
    }
93
    this.props.editorHandler(errorLoc);
94
95
  };

96
  onKeyDown = (e: SyntheticKeyboardEvent<>) => {
97
    if (e.key === 'Enter') {
98
      this.editorHandler();
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
    }
  };

  render() {
    const { frame, contextSize, critical, showCode } = this.props;
    const {
      fileName,
      lineNumber,
      columnNumber,
      _scriptCode: scriptLines,
      _originalFileName: sourceFileName,
      _originalLineNumber: sourceLineNumber,
      _originalColumnNumber: sourceColumnNumber,
      _originalScriptCode: sourceLines,
    } = frame;
    const functionName = frame.getFunctionName();

    const compiled = this.state.compiled;
    const url = getPrettyURL(
      sourceFileName,
      sourceLineNumber,
      sourceColumnNumber,
      fileName,
      lineNumber,
      columnNumber,
      compiled
    );

    let codeBlockProps = null;
    if (showCode) {
      if (
        compiled &&
        scriptLines &&
        scriptLines.length !== 0 &&
        lineNumber != null
      ) {
        codeBlockProps = {
          lines: scriptLines,
          lineNum: lineNumber,
          columnNum: columnNumber,
          contextSize,
          main: critical,
        };
      } else if (
        !compiled &&
        sourceLines &&
        sourceLines.length !== 0 &&
        sourceLineNumber != null
      ) {
        codeBlockProps = {
          lines: sourceLines,
          lineNum: sourceLineNumber,
          columnNum: sourceColumnNumber,
          contextSize,
          main: critical,
        };
      }
    }

158
159
    const canOpenInEditor =
      this.getErrorLocation() !== null && this.props.editorHandler !== null;
160
161
    return (
      <div>
162
        <div>{functionName}</div>
163
164
165
        <div style={linkStyle}>
          <a
            style={canOpenInEditor ? anchorStyle : null}
166
            onClick={canOpenInEditor ? this.editorHandler : null}
167
168
169
170
171
172
            onKeyDown={canOpenInEditor ? this.onKeyDown : null}
            tabIndex={canOpenInEditor ? '0' : null}
          >
            {url}
          </a>
        </div>
173
        {codeBlockProps && (
174
175
          <span>
            <a
176
              onClick={canOpenInEditor ? this.editorHandler : null}
177
178
179
180
181
182
183
              style={canOpenInEditor ? codeAnchorStyle : null}
            >
              <CodeBlock {...codeBlockProps} />
            </a>
            <button style={toggleStyle} onClick={this.toggleCompiled}>
              {'View ' + (compiled ? 'source' : 'compiled')}
            </button>
184
185
          </span>
        )}
186
187
188
189
190
191
      </div>
    );
  }
}

export default StackFrame;