Bug ArcGIS JS API 3.26 : infinite loop in geometryenginewebworker

363
0
11-16-2018 07:26 AM
NicolasGIS
Occasional Contributor III

Hello,

We noticed a very high CPU utilization of our WebApp built with ESRI JS API 3.26 even when non interacting with it.

Digging into it, it turns out that we included a custom widget which is an iframe application built with React Nativ making "window.parent.postMessage" call to talk to our WebApp in order to send some information.

The problem is that the "esri/geometry/geometryenginewebworker.js" listens to this message as well and do a switch case according to the message sent (case "equals", "disjoint", "within", ...).

Of course, as it is not concerned by this message, it goes to the default case which itself post another message "Unrecognised Action" and there we go, we run into infiinite loop :

Can it be fixed please ? Any worker around that come to your mind ?

Here is a code pen illustrating the problem:

https://codepen.io/anon/pen/zMELJK

If you remove the postMessage section from the codepen ("window.parent.postMessage("Hello",window.location.origin))", you should see your CPU calming down.

Thanks,

Tags (3)
0 Kudos
0 Replies