webpackHotDevClient.js 7.59 KB
Newer Older
1
2
3
4
5
6
7
8
9
/**
 * 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.
 */

10
11
'use strict';

12
13
14
15
16
17
18
19
20
21
22
23
// This alternative WebpackDevServer combines the functionality of:
// https://github.com/webpack/webpack-dev-server/blob/webpack-1/client/index.js
// https://github.com/webpack/webpack/blob/webpack-1/hot/dev-server.js

// It only supports their simplest configuration (hot updates on same server).
// It makes some opinionated choices on top, like adding a syntax error overlay
// that looks similar to our console output. The error overlay is inspired by:
// https://github.com/glenjamin/webpack-hot-middleware

var SockJS = require('sockjs-client');
var stripAnsi = require('strip-ansi');
var url = require('url');
24
var launchEditorEndpoint = require('./launchEditorEndpoint');
25
var formatWebpackMessages = require('./formatWebpackMessages');
26
27
var ErrorOverlay = require('react-error-overlay');

28
29
30
31
32
33
34
// We need to keep track of if there has been a runtime error.
// Essentially, we cannot guarantee application state was not corrupted by the
// runtime error. To prevent confusing behavior, we forcibly reload the entire
// application. This is handled below when we are notified of a compile (code
// change).
// See https://github.com/facebookincubator/create-react-app/issues/3096
var hadRuntimeError = false;
35
36
37
ErrorOverlay.startReportingRuntimeErrors({
  launchEditorEndpoint: launchEditorEndpoint,
  onError: function() {
38
    hadRuntimeError = true;
39
  },
Dan Abramov's avatar
Dan Abramov committed
40
  filename: '/static/js/bundle.js',
41
});
42

43
44
45
46
if (module.hot && typeof module.hot.dispose === 'function') {
  module.hot.dispose(function() {
    // TODO: why do we need this?
    ErrorOverlay.stopReportingRuntimeErrors();
47
  });
48
49
50
}

// Connect to WebpackDevServer via a socket.
51
52
53
54
55
56
57
58
59
var connection = new SockJS(
  url.format({
    protocol: window.location.protocol,
    hostname: window.location.hostname,
    port: window.location.port,
    // Hardcoded in WebpackDevServer
    pathname: '/sockjs-node',
  })
);
60
61
62
63
64

// Unlike WebpackDevServer client, we won't try to reconnect
// to avoid spamming the console. Disconnect usually happens
// when developer stops the server.
connection.onclose = function() {
65
  if (typeof console !== 'undefined' && typeof console.info === 'function') {
66
67
68
69
    console.info(
      'The development server has disconnected.\nRefresh the page if necessary.'
    );
  }
70
};
71
72
73
74

// Remember some state related to hot module replacement.
var isFirstCompilation = true;
var mostRecentCompilationHash = null;
75
76
77
78
var hasCompileErrors = false;

function clearOutdatedErrors() {
  // Clean up outdated compile errors, if any.
79
80
  if (typeof console !== 'undefined' && typeof console.clear === 'function') {
    if (hasCompileErrors) {
81
82
      console.clear();
    }
83
84
  }
}
85
86
87

// Successful compilation.
function handleSuccess() {
88
89
  clearOutdatedErrors();

90
91
  var isHotUpdate = !isFirstCompilation;
  isFirstCompilation = false;
92
  hasCompileErrors = false;
93
94
95

  // Attempt to apply hot updates or reload.
  if (isHotUpdate) {
96
    tryApplyUpdates(function onHotUpdateSuccess() {
97
      // Only dismiss it when we're sure it's a hot update.
98
      // Otherwise it would flicker right before the reload.
99
      ErrorOverlay.dismissBuildError();
100
    });
101
102
103
104
105
  }
}

// Compilation with warnings (e.g. ESLint).
function handleWarnings(warnings) {
106
107
  clearOutdatedErrors();

108
109
  var isHotUpdate = !isFirstCompilation;
  isFirstCompilation = false;
110
  hasCompileErrors = false;
111
112
113

  function printWarnings() {
    // Print warnings to the console.
114
115
116
117
118
    var formatted = formatWebpackMessages({
      warnings: warnings,
      errors: [],
    });

119
    if (typeof console !== 'undefined' && typeof console.warn === 'function') {
120
      for (var i = 0; i < formatted.warnings.length; i++) {
121
122
123
124
125
126
127
        if (i === 5) {
          console.warn(
            'There were more warnings in other files.\n' +
              'You can find a complete log in the terminal.'
          );
          break;
        }
128
129
        console.warn(stripAnsi(formatted.warnings[i]));
      }
130
131
132
133
134
135
136
137
138
    }
  }

  // Attempt to apply hot updates or reload.
  if (isHotUpdate) {
    tryApplyUpdates(function onSuccessfulHotUpdate() {
      // Only print warnings if we aren't refreshing the page.
      // Otherwise they'll disappear right away anyway.
      printWarnings();
139
      // Only dismiss it when we're sure it's a hot update.
140
      // Otherwise it would flicker right before the reload.
141
      ErrorOverlay.dismissBuildError();
142
143
144
145
146
147
148
149
150
    });
  } else {
    // Print initial warnings immediately.
    printWarnings();
  }
}

// Compilation with errors (e.g. syntax error or missing modules).
function handleErrors(errors) {
151
152
  clearOutdatedErrors();

153
  isFirstCompilation = false;
154
  hasCompileErrors = true;
155
156
157
158

  // "Massage" webpack messages.
  var formatted = formatWebpackMessages({
    errors: errors,
159
    warnings: [],
160
161
162
  });

  // Only show the first error.
163
  ErrorOverlay.reportBuildError(formatted.errors[0]);
164
165

  // Also log them to the console.
166
  if (typeof console !== 'undefined' && typeof console.error === 'function') {
167
168
169
    for (var i = 0; i < formatted.errors.length; i++) {
      console.error(stripAnsi(formatted.errors[i]));
    }
170
171
  }

172
173
174
175
176
177
178
179
180
181
182
183
184
185
  // Do not attempt to reload now.
  // We will reload on next success instead.
}

// There is a newer version of the code available.
function handleAvailableHash(hash) {
  // Update last known compilation hash.
  mostRecentCompilationHash = hash;
}

// Handle messages from the server.
connection.onmessage = function(e) {
  var message = JSON.parse(e.data);
  switch (message.type) {
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
    case 'hash':
      handleAvailableHash(message.data);
      break;
    case 'still-ok':
    case 'ok':
      handleSuccess();
      break;
    case 'content-changed':
      // Triggered when a file from `contentBase` changed.
      window.location.reload();
      break;
    case 'warnings':
      handleWarnings(message.data);
      break;
    case 'errors':
      handleErrors(message.data);
      break;
    default:
204
205
    // Do nothing.
  }
206
};
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232

// Is there a newer version of this code available?
function isUpdateAvailable() {
  /* globals __webpack_hash__ */
  // __webpack_hash__ is the hash of the current compilation.
  // It's a global variable injected by Webpack.
  return mostRecentCompilationHash !== __webpack_hash__;
}

// Webpack disallows updates in other states.
function canApplyUpdates() {
  return module.hot.status() === 'idle';
}

// Attempt to update code on the fly, fall back to a hard reload.
function tryApplyUpdates(onHotUpdateSuccess) {
  if (!module.hot) {
    // HotModuleReplacementPlugin is not in Webpack configuration.
    window.location.reload();
    return;
  }

  if (!isUpdateAvailable() || !canApplyUpdates()) {
    return;
  }

233
  function handleApplyUpdates(err, updatedModules) {
234
    if (err || !updatedModules || hadRuntimeError) {
235
236
237
238
239
240
241
242
243
244
245
246
247
      window.location.reload();
      return;
    }

    if (typeof onHotUpdateSuccess === 'function') {
      // Maybe we want to do something.
      onHotUpdateSuccess();
    }

    if (isUpdateAvailable()) {
      // While we were updating, there was a new update! Do it again.
      tryApplyUpdates();
    }
248
249
250
  }

  // https://webpack.github.io/docs/hot-module-replacement.html#check
251
  var result = module.hot.check(/* autoApply */ true, handleApplyUpdates);
252
253
254
255
256
257
258
259
260
261
262
263

  // // Webpack 2 returns a Promise instead of invoking a callback
  if (result && result.then) {
    result.then(
      function(updatedModules) {
        handleApplyUpdates(null, updatedModules);
      },
      function(err) {
        handleApplyUpdates(err, null);
      }
    );
  }
264
}