setup webserver for flipper-server
Summary: This sets up the metro bundler for flipper-server, to be able to serve the front end. Note that this is a setup that is only relevant for development purposes Done in this diff: * setup metro * setup fast refresh * setup nodemon to be able to refresh on server changes Not done in this diff * Setup FlipperServerImpl in the flipper-server * Load flipper-ui-core in flipper-ui-browser * Load plugins * Support options, env vars etc etc * Make flipper-server stand alone (it is largely self contained, but still requires some static resources like theming) Reviewed By: passy, aigoncharov Differential Revision: D32626137 fbshipit-source-id: 47f580356ddf0993392d3b583082b187661727e9
This commit is contained in:
committed by
Facebook GitHub Bot
parent
2b81be6c29
commit
0dfc73da93
277
desktop/flipper-ui-browser/src/HMRClient.tsx
Normal file
277
desktop/flipper-ui-browser/src/HMRClient.tsx
Normal file
@@ -0,0 +1,277 @@
|
||||
/**
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*
|
||||
* @format
|
||||
*/
|
||||
|
||||
/**
|
||||
* * * * * * * ** * * * * * * * * * * * * * * * * * ** * * * * * * * * * * * * * * * * * ** * * * * * * * * *
|
||||
* This implementation of HMR Client is based on React Native implementation with some code commented out: *
|
||||
* https://github.com/facebook/react-native/blob/master/Libraries/Utilities/HMRClient.js *
|
||||
* * * * * * * ** * * * * * * * * * * * * * * * * * ** * * * * * * * * * * * * * * * * * ** * * * * * * * * *
|
||||
*/
|
||||
|
||||
// // const DevSettings = require('./DevSettings');
|
||||
import invariant from 'invariant';
|
||||
// @ts-ignore
|
||||
import {default as MetroHMRClient} from 'metro-runtime/src/modules/HMRClient';
|
||||
// // const Platform = require('./Platform');
|
||||
import prettyFormat from 'pretty-format';
|
||||
|
||||
const pendingEntryPoints: string[] = [];
|
||||
let hmrClient: any = null;
|
||||
let hmrUnavailableReason: null | string = null;
|
||||
let currentCompileErrorMessage: null | string = null;
|
||||
let didConnect = false;
|
||||
const pendingLogs: [string, any][] = [];
|
||||
|
||||
/**
|
||||
* HMR Client that receives from the server HMR updates and propagates them
|
||||
* runtime to reflects those changes.
|
||||
*/
|
||||
const HMRClient = {
|
||||
enable() {
|
||||
if (hmrUnavailableReason !== null) {
|
||||
// If HMR became unavailable while you weren't using it,
|
||||
// explain why when you try to turn it on.
|
||||
// This is an error (and not a warning) because it is shown
|
||||
// in response to a direct user action.
|
||||
throw new Error(hmrUnavailableReason);
|
||||
}
|
||||
|
||||
invariant(hmrClient, 'Expected HMRClient.setup() call at startup.');
|
||||
//// const LoadingView = require('./LoadingView');
|
||||
|
||||
// We use this for internal logging only.
|
||||
// It doesn't affect the logic.
|
||||
hmrClient.send(JSON.stringify({type: 'log-opt-in'}));
|
||||
|
||||
// When toggling Fast Refresh on, we might already have some stashed updates.
|
||||
// Since they'll get applied now, we'll show a banner.
|
||||
const hasUpdates = hmrClient.hasPendingUpdates();
|
||||
|
||||
if (hasUpdates) {
|
||||
//// LoadingView.showMessage('Refreshing...', 'refresh');
|
||||
console.log('Loading start: Refreshing...');
|
||||
}
|
||||
try {
|
||||
hmrClient.enable();
|
||||
} finally {
|
||||
if (hasUpdates) {
|
||||
//// LoadingView.hide();
|
||||
console.log('Loading end');
|
||||
}
|
||||
}
|
||||
|
||||
// There could be a compile error while Fast Refresh was off,
|
||||
// but we ignored it at the time. Show it now.
|
||||
showCompileError();
|
||||
},
|
||||
|
||||
disable() {
|
||||
invariant(hmrClient, 'Expected HMRClient.setup() call at startup.');
|
||||
hmrClient.disable();
|
||||
},
|
||||
|
||||
registerBundle(requestUrl: string) {
|
||||
invariant(hmrClient, 'Expected HMRClient.setup() call at startup.');
|
||||
pendingEntryPoints.push(requestUrl);
|
||||
registerBundleEntryPoints(hmrClient);
|
||||
},
|
||||
|
||||
log(level: string, data: any) {
|
||||
if (!hmrClient) {
|
||||
// Catch a reasonable number of early logs
|
||||
// in case hmrClient gets initialized later.
|
||||
pendingLogs.push([level, data]);
|
||||
if (pendingLogs.length > 100) {
|
||||
pendingLogs.shift();
|
||||
}
|
||||
return;
|
||||
}
|
||||
try {
|
||||
hmrClient.send(
|
||||
JSON.stringify({
|
||||
type: 'log',
|
||||
level,
|
||||
data: data.map((item: any) =>
|
||||
typeof item === 'string'
|
||||
? item
|
||||
: prettyFormat(item, {
|
||||
escapeString: true,
|
||||
highlight: true,
|
||||
maxDepth: 3,
|
||||
min: true,
|
||||
plugins: [(prettyFormat as any).plugins.ReactElement],
|
||||
}),
|
||||
),
|
||||
}),
|
||||
);
|
||||
} catch (error) {
|
||||
// If sending logs causes any failures we want to silently ignore them
|
||||
// to ensure we do not cause infinite-logging loops.
|
||||
}
|
||||
},
|
||||
|
||||
// Called once by the bridge on startup, even if Fast Refresh is off.
|
||||
// It creates the HMR client but doesn't actually set up the socket yet.
|
||||
setup(
|
||||
platform: string,
|
||||
bundleEntry: string,
|
||||
host: string,
|
||||
port: string,
|
||||
isEnabled: boolean,
|
||||
) {
|
||||
invariant(platform, 'Missing required parameter `platform`');
|
||||
invariant(bundleEntry, 'Missing required parameter `bundleEntry`');
|
||||
invariant(host, 'Missing required parameter `host`');
|
||||
invariant(!hmrClient, 'Cannot initialize hmrClient twice');
|
||||
|
||||
//// const LoadingView = require('./LoadingView');
|
||||
|
||||
const wsHost = port !== null && port !== '' ? `${host}:${port}` : host;
|
||||
const client = new MetroHMRClient(`ws://${wsHost}/hot`);
|
||||
hmrClient = client;
|
||||
|
||||
pendingEntryPoints.push(
|
||||
`ws://${wsHost}/hot?bundleEntry=${bundleEntry}&platform=${platform}`,
|
||||
);
|
||||
|
||||
client.on('connection-error', (e: any) => {
|
||||
let error = `Cannot connect to the Metro server.
|
||||
Try the following to fix the issue:
|
||||
- Ensure that the Metro server is running and available on the same network`;
|
||||
|
||||
error += `
|
||||
- Ensure that your device/emulator is connected to your machine and has USB debugging enabled - run 'adb devices' to see a list of connected devices
|
||||
- If you're on a physical device connected to the same machine, run 'adb reverse tcp:8081 tcp:8081' to forward requests from your device
|
||||
- If your device is on the same Wi-Fi network, set 'Debug server host & port for device' in 'Dev settings' to your machine's IP address and the port of the local dev server - e.g. 10.0.1.1:8081`;
|
||||
|
||||
error += `
|
||||
URL: ${host}:${port}
|
||||
Error: ${e.message}`;
|
||||
|
||||
setHMRUnavailableReason(error);
|
||||
});
|
||||
|
||||
client.on('update-start', ({isInitialUpdate}: any) => {
|
||||
currentCompileErrorMessage = null;
|
||||
didConnect = true;
|
||||
|
||||
if (client.isEnabled() && !isInitialUpdate) {
|
||||
//// LoadingView.showMessage('Refreshing...', 'refresh');
|
||||
console.log('Loading start: Refreshing...');
|
||||
}
|
||||
});
|
||||
|
||||
client.on('update', () => {});
|
||||
|
||||
client.on('update-done', () => {
|
||||
//// LoadingView.hide();
|
||||
console.log('Loading end');
|
||||
});
|
||||
|
||||
client.on('error', (data: any) => {
|
||||
//// LoadingView.hide();
|
||||
console.log('Loading end');
|
||||
|
||||
if (data.type === 'GraphNotFoundError') {
|
||||
client.close();
|
||||
setHMRUnavailableReason(
|
||||
'The Metro server has restarted since the last edit. Reload to reconnect.',
|
||||
);
|
||||
} else if (data.type === 'RevisionNotFoundError') {
|
||||
client.close();
|
||||
setHMRUnavailableReason(
|
||||
'The Metro server and the client are out of sync. Reload to reconnect.',
|
||||
);
|
||||
} else {
|
||||
currentCompileErrorMessage = `${data.type} ${data.message}`;
|
||||
if (client.isEnabled()) {
|
||||
showCompileError();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
client.on('close', (_data: any) => {
|
||||
//// LoadingView.hide();
|
||||
console.log('Loading end');
|
||||
setHMRUnavailableReason('Disconnected from the Metro server.');
|
||||
});
|
||||
|
||||
if (isEnabled) {
|
||||
HMRClient.enable();
|
||||
} else {
|
||||
HMRClient.disable();
|
||||
}
|
||||
|
||||
registerBundleEntryPoints(hmrClient);
|
||||
flushEarlyLogs(hmrClient);
|
||||
},
|
||||
};
|
||||
|
||||
function setHMRUnavailableReason(reason: string) {
|
||||
invariant(hmrClient, 'Expected HMRClient.setup() call at startup.');
|
||||
if (hmrUnavailableReason !== null) {
|
||||
// Don't show more than one warning.
|
||||
return;
|
||||
}
|
||||
hmrUnavailableReason = reason;
|
||||
|
||||
// We only want to show a warning if Fast Refresh is on *and* if we ever
|
||||
// previously managed to connect successfully. We don't want to show
|
||||
// the warning to native engineers who use cached bundles without Metro.
|
||||
if (hmrClient.isEnabled() && didConnect) {
|
||||
console.warn(reason);
|
||||
// (Not using the `warning` module to prevent a Buck cycle.)
|
||||
}
|
||||
}
|
||||
|
||||
function registerBundleEntryPoints(client: any) {
|
||||
if (hmrUnavailableReason) {
|
||||
// // DevSettings.reload('Bundle Splitting – Metro disconnected');
|
||||
console.log('Bundle Spliiting - Metro disconnected');
|
||||
return;
|
||||
}
|
||||
|
||||
if (pendingEntryPoints.length > 0) {
|
||||
client.send(
|
||||
JSON.stringify({
|
||||
type: 'register-entrypoints',
|
||||
entryPoints: pendingEntryPoints,
|
||||
}),
|
||||
);
|
||||
pendingEntryPoints.length = 0;
|
||||
}
|
||||
}
|
||||
|
||||
function flushEarlyLogs(_client: any) {
|
||||
try {
|
||||
pendingLogs.forEach(([level, data]) => {
|
||||
HMRClient.log(level, data);
|
||||
});
|
||||
} finally {
|
||||
pendingLogs.length = 0;
|
||||
}
|
||||
}
|
||||
|
||||
function showCompileError() {
|
||||
if (currentCompileErrorMessage === null) {
|
||||
return;
|
||||
}
|
||||
|
||||
const message = currentCompileErrorMessage;
|
||||
currentCompileErrorMessage = null;
|
||||
|
||||
const error = new Error(message);
|
||||
// Symbolicating compile errors is wasted effort
|
||||
// because the stack trace is meaningless:
|
||||
(error as any).preventSymbolication = true;
|
||||
(window as any).flipperShowError?.(message);
|
||||
throw error;
|
||||
}
|
||||
|
||||
export default HMRClient;
|
||||
Reference in New Issue
Block a user