packager: attachHMRServer.js: Flow

Summary:
The breakage fixed by changeset [1] could have been identified earlier if we had typing on `attachHMRServer`, so I spent some time on that. This has revealed in turn a few functions across the codebase that were incorrectly typed, and that are now fixed.

[1] packager: attachHMRServer.js: fix callsite of Server#getModuleForPath()

Reviewed By: davidaurelio

Differential Revision: D4706241

fbshipit-source-id: fc4285245921ae45d5781a47d626fc0559dba998
This commit is contained in:
Jean Lauliac 2017-03-15 06:05:59 -07:00 committed by Facebook Github Bot
parent d8bd24fc39
commit 737bf8cffe
4 changed files with 16 additions and 13 deletions

View File

@ -277,7 +277,7 @@ class Bundler {
); );
} }
hmrBundle(options: {platform: ?string}, host: string, port: number) { hmrBundle(options: {platform: ?string}, host: string, port: number): Promise<HMRBundle> {
return this._bundle({ return this._bundle({
...options, ...options,
bundle: new HMRBundle({ bundle: new HMRBundle({
@ -492,7 +492,7 @@ class Bundler {
minify?: boolean, minify?: boolean,
hot?: boolean, hot?: boolean,
generateSourceMaps?: boolean, generateSourceMaps?: boolean,
}) { }): Promise<Array<Module>> {
return this.getTransformOptions( return this.getTransformOptions(
entryFile, entryFile,
{ {

View File

@ -87,7 +87,7 @@ class Resolver {
getShallowDependencies( getShallowDependencies(
entryFile: string, entryFile: string,
transformOptions: TransformOptions, transformOptions: TransformOptions,
): Array<string> { ): Promise<Array<Module>> {
return this._depGraph.getShallowDependencies(entryFile, transformOptions); return this._depGraph.getShallowDependencies(entryFile, transformOptions);
} }

View File

@ -31,6 +31,7 @@ import type {Stats} from 'fs';
import type {IncomingMessage, ServerResponse} from 'http'; import type {IncomingMessage, ServerResponse} from 'http';
import type ResolutionResponse from '../node-haste/DependencyGraph/ResolutionResponse'; import type ResolutionResponse from '../node-haste/DependencyGraph/ResolutionResponse';
import type Bundle from '../Bundler/Bundle'; import type Bundle from '../Bundler/Bundle';
import type HMRBundle from '../Bundler/HMRBundle';
import type {Reporter} from '../lib/reporting'; import type {Reporter} from '../lib/reporting';
import type {GetTransformOptions} from '../Bundler'; import type {GetTransformOptions} from '../Bundler';
import type GlobalTransformCache from '../lib/GlobalTransformCache'; import type GlobalTransformCache from '../lib/GlobalTransformCache';
@ -157,7 +158,7 @@ class Server {
_assetServer: AssetServer; _assetServer: AssetServer;
_bundler: Bundler; _bundler: Bundler;
_debouncedFileChangeHandler: (filePath: string) => mixed; _debouncedFileChangeHandler: (filePath: string) => mixed;
_hmrFileChangeListener: (type: string, filePath: string) => mixed; _hmrFileChangeListener: ?(type: string, filePath: string) => mixed;
_reporter: Reporter; _reporter: Reporter;
_symbolicateInWorker: Symbolicate; _symbolicateInWorker: Symbolicate;
@ -244,9 +245,7 @@ class Server {
return this._bundler.end(); return this._bundler.end();
} }
setHMRFileChangeListener( setHMRFileChangeListener(listener: ?(type: string, filePath: string) => mixed) {
listener: (type: string, filePath: string) => mixed,
) {
this._hmrFileChangeListener = listener; this._hmrFileChangeListener = listener;
} }
@ -276,7 +275,7 @@ class Server {
return bundle; return bundle;
} }
buildBundleFromUrl(reqUrl: string): Promise<mixed> { buildBundleFromUrl(reqUrl: string): Promise<Bundle> {
const options = this._getOptionsFromUrl(reqUrl); const options = this._getOptionsFromUrl(reqUrl);
return this.buildBundle(options); return this.buildBundle(options);
} }
@ -285,14 +284,14 @@ class Server {
options: {platform: ?string}, options: {platform: ?string},
host: string, host: string,
port: number, port: number,
): Promise<string> { ): Promise<HMRBundle> {
return this._bundler.hmrBundle(options, host, port); return this._bundler.hmrBundle(options, host, port);
} }
getShallowDependencies(options: { getShallowDependencies(options: {
entryFile: string, entryFile: string,
platform?: string, platform?: string,
}): Promise<mixed> { }): Promise<Array<Module>> {
return Promise.resolve().then(() => { return Promise.resolve().then(() => {
if (!options.platform) { if (!options.platform) {
options.platform = getPlatformExtension(options.entryFile); options.platform = getPlatformExtension(options.entryFile);
@ -335,10 +334,11 @@ class Server {
// If Hot Loading is enabled avoid rebuilding bundles and sending live // If Hot Loading is enabled avoid rebuilding bundles and sending live
// updates. Instead, send the HMR updates right away and clear the bundles // updates. Instead, send the HMR updates right away and clear the bundles
// cache so that if the user reloads we send them a fresh bundle // cache so that if the user reloads we send them a fresh bundle
if (this._hmrFileChangeListener) { const {_hmrFileChangeListener} = this;
if (_hmrFileChangeListener) {
// Clear cached bundles in case user reloads // Clear cached bundles in case user reloads
this._clearBundles(); this._clearBundles();
this._hmrFileChangeListener(type, filePath); _hmrFileChangeListener(type, filePath);
return; return;
} else if (type !== 'change' && filePath.indexOf(NODE_MODULES) !== -1) { } else if (type !== 'change' && filePath.indexOf(NODE_MODULES) !== -1) {
// node module resolution can be affected by added or removed files // node module resolution can be affected by added or removed files

View File

@ -173,7 +173,10 @@ class DependencyGraph extends EventEmitter {
* Returns a promise with the direct dependencies the module associated to * Returns a promise with the direct dependencies the module associated to
* the given entryPath has. * the given entryPath has.
*/ */
getShallowDependencies(entryPath: string, transformOptions: TransformOptions) { getShallowDependencies(
entryPath: string,
transformOptions: TransformOptions,
): Promise<Array<Module>> {
return this._moduleCache return this._moduleCache
.getModule(entryPath) .getModule(entryPath)
.getDependencies(transformOptions); .getDependencies(transformOptions);