StackFrame.js 4.75 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
15
import type { StackFrame as StackFrameType } from '../utils/stack-frame';

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
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',
};

46
47
48
49
50
51
52
53
54
55
56
57
58
type Props = {|
  frame: StackFrameType,
  launchEditorEndpoint: ?string,
  contextSize: number,
  critical: boolean,
  showCode: boolean,
|};

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

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

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

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

  openInEditor = () => {
89
90
    const endpointUrl = this.getEndpointUrl();
    if (endpointUrl === null) {
91
92
      return;
    }
93

94
95
96
97
98
99
    const {
      _originalFileName: sourceFileName,
      _originalLineNumber: sourceLineNumber,
    } = this.props.frame;
    // Keep this in sync with react-error-overlay/middleware.js
    fetch(
100
      `${endpointUrl}?fileName=` +
101
102
103
104
105
106
        window.encodeURIComponent(sourceFileName) +
        '&lineNumber=' +
        window.encodeURIComponent(sourceLineNumber || 1)
    ).then(() => {}, () => {});
  };

107
  onKeyDown = (e: SyntheticKeyboardEvent<>) => {
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
158
159
160
161
162
163
164
165
166
167
168
    if (e.key === 'Enter') {
      this.openInEditor();
    }
  };

  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,
        };
      }
    }

169
    const canOpenInEditor = this.getEndpointUrl() !== null;
170
171
    return (
      <div>
172
        <div>{functionName}</div>
173
174
175
176
177
178
179
180
181
182
        <div style={linkStyle}>
          <a
            style={canOpenInEditor ? anchorStyle : null}
            onClick={canOpenInEditor ? this.openInEditor : null}
            onKeyDown={canOpenInEditor ? this.onKeyDown : null}
            tabIndex={canOpenInEditor ? '0' : null}
          >
            {url}
          </a>
        </div>
183
        {codeBlockProps && (
184
185
186
187
188
189
190
191
192
193
          <span>
            <a
              onClick={canOpenInEditor ? this.openInEditor : null}
              style={canOpenInEditor ? codeAnchorStyle : null}
            >
              <CodeBlock {...codeBlockProps} />
            </a>
            <button style={toggleStyle} onClick={this.toggleCompiled}>
              {'View ' + (compiled ? 'source' : 'compiled')}
            </button>
194
195
          </span>
        )}
196
197
198
199
200
201
      </div>
    );
  }
}

export default StackFrame;