This repository was archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 477
[DO NOT MERGE] Fix websocket controls on RN 0.68 #4305
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -76,6 +76,7 @@ export async function runMetroDevServerAsync( | |
| server: http.Server; | ||
| middleware: any; | ||
| messageSocket: MessageSocket; | ||
| debuggerProxyEndpoint: MessageSocket; | ||
| }> { | ||
| const Metro = importMetroFromProject(projectRoot); | ||
|
|
||
|
|
@@ -85,7 +86,13 @@ export async function runMetroDevServerAsync( | |
|
|
||
| const metroConfig = await ExpoMetroConfig.loadAsync(projectRoot, { reporter, ...options }); | ||
|
|
||
| const { middleware, attachToServer } = createDevServerMiddleware({ | ||
| const { | ||
| middleware, | ||
| debuggerProxyEndpoint, | ||
| messageSocketEndpoint, | ||
| eventsSocketEndpoint, | ||
| websocketEndpoints, | ||
| } = createDevServerMiddleware({ | ||
|
Comment on lines
+89
to
+95
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We may need to check which features are available based on the version installed and implement the new functionality only when the new features are available. Ultimately we'll drop this in SDK 46 when we drop the unversioned CLI. |
||
| port: metroConfig.server.port, | ||
| watchFolders: metroConfig.watchFolders, | ||
| logger: options.logger, | ||
|
|
@@ -100,15 +107,20 @@ export async function runMetroDevServerAsync( | |
| return middleware.use(metroMiddleware); | ||
| }; | ||
|
|
||
| const server = await Metro.runServer(metroConfig, { hmrEnabled: true }); | ||
| // @ts-ignore | ||
| const server = await Metro.runServer(metroConfig, { hmrEnabled: true, websocketEndpoints }); | ||
|
|
||
| const { messageSocket, eventsSocket } = attachToServer(server); | ||
| reporter.reportEvent = eventsSocket.reportEvent; | ||
| // const { messageSocket, eventsSocket } = attachToServer(server); | ||
| // @ts-ignore | ||
| reporter.reportEvent = eventsSocketEndpoint.reportEvent; | ||
|
|
||
| return { | ||
| server, | ||
| middleware, | ||
| messageSocket, | ||
| // @ts-ignore | ||
| messageSocket: messageSocketEndpoint, | ||
| // @ts-ignore | ||
| debuggerProxyEndpoint, | ||
| }; | ||
| } | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should drop this dependency and import it from the project if available like we do for metro.