-
Notifications
You must be signed in to change notification settings - Fork 24.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved window.postMessage implementation
Summary: Adds a queue to postMessage so that messages sent close together are not lost. Setting location="a";location="b" results in only "b" reaching shouldStartLoadWithRequest. Making the second update asynchronous with setTimeout does not fix the issue unless a delay is added. With this update, postMessage queues "b" until it gets a "message:received" event that confirms "a" has already been processed. The included test sends two messages from a webview and checks that both are received. It fails against the preexisting code with the first message being dropped. Closes #11304 Differential Revision: D5481385 Pulled By: hramos fbshipit-source-id: 9b6af195eeff8f20c820e2fcdac997c90763e840
- Loading branch information
1 parent
bca825e
commit 42f7b9e
Showing
4 changed files
with
91 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/** | ||
* 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. | ||
*/ | ||
'use strict'; | ||
|
||
var React = require('react'); | ||
var ReactNative = require('react-native'); | ||
var { | ||
WebView, | ||
} = ReactNative; | ||
|
||
var { TestModule } = ReactNative.NativeModules; | ||
|
||
class WebViewTest extends React.Component { | ||
|
||
render() { | ||
var firstMessageReceived = false; | ||
var secondMessageReceived = false; | ||
function processMessage(e) { | ||
var message = e.nativeEvent.data; | ||
if (message === 'First') {firstMessageReceived = true;} | ||
if (message === 'Second') {secondMessageReceived = true;} | ||
|
||
// got both messages | ||
if (firstMessageReceived && secondMessageReceived) {TestModule.markTestPassed(true);} | ||
// wait for next message | ||
else if (firstMessageReceived && !secondMessageReceived) {return;} | ||
// first message got lost | ||
else if (!firstMessageReceived && secondMessageReceived) {throw new Error('First message got lost');} | ||
} | ||
var html = 'Hello world' | ||
+ '<script>' | ||
+ "window.setTimeout(function(){window.postMessage('First'); window.postMessage('Second')}, 0)" | ||
+ '</script>'; | ||
|
||
// fail if messages didn't get through; | ||
window.setTimeout(function() { throw new Error(firstMessageReceived ? 'Both messages got lost' : 'Second message got lost');}, 10000); | ||
|
||
var source = { | ||
html: html, | ||
}; | ||
|
||
return ( | ||
<WebView | ||
source={source} | ||
onMessage = {processMessage} | ||
/> | ||
); | ||
} | ||
} | ||
|
||
WebViewTest.displayName = 'WebViewTest'; | ||
|
||
module.exports = WebViewTest; |
This file contains 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 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